Масштабирование и поворот изображения вне зависимости от данных EXIF?

2542
Jasmine Lognnes

Существует ли такая вещь, как простой редактор изображений для Linux, который позволяет масштабировать и поворачивать изображение, не используя данные EXIF ​​для масштабирования и вращения?

До сих пор я пробовал EOG, Shotwell и GIMP, и когда я поворачивал изображения, они сохраняли его в заголовке EXIF. Это я не хочу.

Даже если GIMP может это сделать, это занимает слишком много времени, поскольку для работы с файлами JPEG требуются тонны щелчков мыши.

9
Таким образом, в основном, если вы поворачиваете изображение на 90 градусов влево, вы хотите, чтобы само изображение поворачивалось в данных на 90 градусов влево? Не через информацию, хранящуюся в данных EXIF, правильно? JakeGould 9 лет назад 2
Именно так. Мне это нужно, потому что файлы Github README.md не понимают EXIF. Jasmine Lognnes 9 лет назад 0
Бинго! Я написал более полный ответ, но я считаю, что проблема, с которой вы сталкиваетесь, заключается в фундаментальной разнице между * сохранением * изображения в современной программе редактирования изображений и * экспортом * изображения. Мой ответ более детален, но я полагаю, что если вы экспортируете JPEG через GIMP, вы получите точные результаты, которые вам нужны, без необходимости иметь дело с данными EXIF, предпочтительными для таких преобразований, как масштабирование и вращение. JakeGould 9 лет назад 0
При использовании экспорта GIMP в формате EXIF, разделенном на JPEG, добавлен новый. Jasmine Lognnes 9 лет назад 0
Да, возможно, он добавил новые данные EXIF, но были ли изменены фактические данные изображения в соответствии с ориентацией, как задан ваш вопрос? JakeGould 9 лет назад 0

4 ответа на вопрос

15
JakeGould

Is there such a thing as a simple image editor for Linux which allowed for scaling and rotating the image without using EXIF data for the scaling and rotation?

Saving Versus Export

I know you state you don’t really want to do this in GIMP, but in my experience the issue you are running into—software favoring EXIF orientation data over actually transforming pixels in the image—boils down to the difference between exporting an image and saving an image.

In the past, 100% all image editors in the world would actually transform/modify pixels when dealing with simple orientation transforms. It’s only relatively recently that image editing programs defer to using EXIF data to store some physical transformation data.

Why? Easy. Since the JPEG format is a lossy format—even when quality is set at 100%—resaving a JPEG for simple things like image rotation will slowly degrade the data. In contrast by storing that data as EXIF info, the raw JPEG image is left untouched but the transformation data is passed along so you can see the image rotated without degrading the image in the process.

This is where the export concept comes into play. Many image editing programs such as GIMP allow one to export an image which would basically mean modify the image data itself and optimize it for use in non-image editing software.

So while there might be other software tools that explicitly modify image data for tasks like rotation out there, it might be overkill to install and use them. Instead I would recommend simply experimenting with export functionality in whatever image editing software you are using; whether it be GIMP, Photoshop or something else.

Batch Processing

All that said, you do mention how GIMP might be too time consuming for your needs. Unclear what your exact workflow is, but if you have a folder/directory filled with JPEGs you might need to process, I would recommend investigating the tools mentioned in this other answer:

  • exiftran: A tool used to transform digital camera JPEG images which can do the following:

It can do lossless rotations like jpegtran, but unlike jpegtran it cares about the EXIF data: It can rotate images automatically by checking the exif orientation tag, it updates the exif informaton if needed (image dimension, orientation), it also rotates the exif thumbnail. It can process multiple images at once.

  • JHead: Specifically using jhead with the -autorot option which is described as:

Using the 'Orientation' tag of the Exif header, rotate the image so that it is upright. The program 'jpegtran' is used to perform the rotation. This program is present in most Linux distributions. For windows, you need to get a copy of it. After rotation, the orientation tag of the Exif header is set to '1' (normal orientation). The Exif thumbnail is also rotated. Other fields of the Exif header, including dimensions are untouched, but the JPEG height/width are adjusted.

This feature is especially useful with newer digital cameras, which set the orientation field in the Exif header automatically using a built in orientation sensor in the camera.

Here is another tool mentioned in this other thread:

  • NConvert: NConvert is the multi-format commandline image converter for Win32, Linux, DOS, OS/2, and other platforms. Quick-start details seem to be here. And it appears that if you use nconvert with the -jpegtrans option that is exactly what you are looking for. But I wonder if that just uses the same library/core functionality of jpegtran as this other answer on this question recommends?

Finally, perhaps using the ImageMagick convert tool with the -auto-orient option would work for you?

-auto-orient

adjusts an image so that its orientation is suitable for viewing (i.e. top-left orientation).

This operator reads and resets the EXIF image profile setting 'Orientation' and then performs the appropriate 90 degree rotation on the image to orient the image, for correct viewing.

This EXIF profile setting is usually set using a gravity sensor in digital camera, however photos taken directly downward or upward may not have an appropriate value. Also images that have been orientation 'corrected' without reseting this setting, may be 'corrected' again resulting in a incorrect result. If the EXIF profile was previously stripped, the -auto-orient operator will do nothing.

Было бы идеально, если бы инструмент командной строки мог выполнять фактическое вращение пикселя на основе EXIF, а затем очищать информацию EXIF ​​впоследствии. Это возможно? Jasmine Lognnes 9 лет назад 0
@JasmineLognnes На самом деле я сам не использовал ни один из этих инструментов, но этот вопрос является хорошим справочным материалом для инструментов, которые я должен исследовать, но мне кажется, что exiftran и jpegtran могут быть тем, что вы ищете. Я бы поэкспериментировал с вариантами обоих этих инструментов и посмотрел, что произойдет. Лучшее, что я могу сделать. Удачи! JakeGould 9 лет назад 1
Может показаться смешным, что система выбрала этот ответ в качестве контрольного теста в очереди просмотра LQ Post. Я проголосовал, чтобы не удалить его, кстати, и, видимо, это был правильный ответ. :-) fixer1234 9 лет назад 1
@ fixer1234 Да, я видел это сам, когда проверял сообщения низкого качества ранее. Веселое! Это могло быть вызвано количеством различных ссылок на различные пакеты, которые я рекомендую. Но эй! Я счастлив, что есть некоторый автоматизированный механизм контроля, который по крайней мере имеет компонент фильтрации человека. JakeGould 9 лет назад 0
2
choroba

I usually use jpegtran to rotate photographs:

jpegtran -copy all -rotate 90 -outfile newimg.jpg oldimg.jpg 

90 rotates right, use 270 for left (and 180 for flip).

2
d2xdt2

When Exporting in GIMP you can click Advanced in the popup just before saving where you can disable EXIF and XMP.

The overall algorithm to script it

  • for each file
  • save value from exiftool * | grep Orientation
  • remove exif with exiftran -ai *
  • use convert -rotate with value from step 2
Это именно то, что я искал. Способ, который определяет, повернуто ли изображение, и затем способ поворота, основанный на этом. Спасибо! Carlos Alberto Martínez Gadea 6 лет назад 0
0
SPRBRN

You can use Exiftool to remove EXIF data from JPEG images.

Да, это здорово, но когда я потом редактирую изображения, добавляются новые заголовки EXIF. Jasmine Lognnes 9 лет назад 0
EXIFTool может удалить данные, но он не будет изменять, вращать или масштабировать изображение. Он просто сотрет эти данные, и JPEG будет отображаться в том формате, в котором он изначально существовал. Это полезно в некоторых случаях, но не в таком случае. JakeGould 9 лет назад 0

Похожие вопросы