you can show all the exif of a image in mini_magick, like this:
image = MiniMagick::Image.open('example.jpg')
pp image.exif
but I can't delete the exif, like image.exif={}, it shows the error:
mogrify: unrecognized option `-exif=' @ error/mogrify.c/MogrifyImageCommand/4833.
so, how can I delete all the exif information of a image use mini_magick?
well, finally, I found a solution: use mogrify, batch process all the images
the argument strip delete all the exif information, set the quality to 75%!