JacobDev1 / xl-converter

Easy-to-use image converter for modern formats. Supports multithreading, drag 'n drop, and downscaling.
https://codepoems.eu/xl-converter
Other
167 stars 5 forks source link

Using ExifTool - Safe Wipe produces faded image output. #25

Closed Lark8037 closed 4 months ago

Lark8037 commented 4 months ago

Using ExifTool - Safe Wipe produces faded image output.

JacobDev1 commented 4 months ago

Use Encoder metadata modes to ensure the color profile gets handled properly. In this case, use Encoder - Wipe.

By using ExifTool, you handle metadata more thoroughly, but you also run the risk of unexpected behavior.

The ExifTool command used by ExifTool - Safe Wipe mode is

exiftool -all= -tagsFromFile @ --icc_profile:all --ColorSpace:all -overwrite_original <dst>

For more details, refer to this page in the docs

If you think a newer version of ExifTool will handle your images better, feel free to replace it in xl-converter/_internal/bin/win.

Lark8037 commented 4 months ago

I think you should change this description of docs. Safe Wipe - deletes all metadata except the one affecting the final image.

JacobDev1 commented 4 months ago

The commands used by ExifTool - Preserve and ExifTool - Safe Wipe are set to preserve all color-related information. Unfortunately, this doesn't work 100% of the time.

I'll try to reword some sections of the docs to reflect this better.