Browse Source

Change max. image dimensions to 1920x1080px (1080p) (#15690)

* Change max. image size to 1920x1080px

* Change it in web UI too
closed-social-v3
Eugen Rochko 3 years ago
committed by GitHub
parent
commit
acf1842896
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      app/javascript/mastodon/utils/resize_image.js
  2. +1
    -1
      app/models/media_attachment.rb

+ 1
- 1
app/javascript/mastodon/utils/resize_image.js View File

@ -1,6 +1,6 @@
import EXIF from 'exif-js';
const MAX_IMAGE_PIXELS = 1638400; // 1280x1280px
const MAX_IMAGE_PIXELS = 2073600; // 1920x1080px
const _browser_quirks = {};

+ 1
- 1
app/models/media_attachment.rb View File

@ -59,7 +59,7 @@ class MediaAttachment < ApplicationRecord
IMAGE_STYLES = {
original: {
pixels: 1_638_400, # 1280x1280px
pixels: 2_073_600, # 1920x1080px
file_geometry_parser: FastGeometryParser,
}.freeze,

Loading…
Cancel
Save