Browse Source

Unconditionally re-encode locally-uploaded images to strip metadata (#8714)

This strips metadata on file upload by re-encoding the files, at the cost
of possible slight image quality decrease and processing resources.
pull/4/head
ThibG 5 years ago
committed by Eugen Rochko
parent
commit
9b32898e3c
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      lib/paperclip/lazy_thumbnail.rb

+ 5
- 1
lib/paperclip/lazy_thumbnail.rb View File

@ -20,7 +20,7 @@ module Paperclip
private
def needs_convert?
needs_different_geometry? || needs_different_format?
needs_different_geometry? || needs_different_format? || needs_metadata_stripping?
end
def needs_different_geometry?
@ -31,5 +31,9 @@ module Paperclip
def needs_different_format?
@format.present? && @current_format != @format
end
def needs_metadata_stripping?
@attachment.instance.respond_to?(:local?) && @attachment.instance.local?
end
end
end

Loading…
Cancel
Save