Closed r00takaspin closed 8 years ago
What type of image are you trying to optimize? under the hood this will use jpegoptim to optimize the files which will remove EXIF information.
@jtescher yes, it is jpeg images. I see that jpegoptim has option to remove all headers from jpeg file via:
jpegoptim –strip-all someimage.jpg
it can be good, if gem had option that removes all headers from image.
I am preparing pull request for gem image_optimizer, that adds this option.
So it looks like that is currently being passed in https://github.com/jtescher/image_optimizer/blob/master/lib/image_optimizer/jpeg_optimizer.rb#L7 are you not seeing that optimization applied?
Ok, I see, thank you. Sorry for worrying.
Hello, I am optimizing uploaded images for good rating at Google PageSpeed Insights Service. This service asks for remove of EXIF information from served images for better site performance.
Is it any opportunity to remove EXIF information from image using gem carrierwave-imageoptimizer?