ExifTool Forum

General => Metadata => Topic started by: mindeater on December 07, 2017, 09:43:08 PM

Title: File Format Corruption in newer Adobe generated jpg
Post by: mindeater on December 07, 2017, 09:43:08 PM
Hi,
I'm very lost,

My Node Windows Application downloads images and caches them locally for display, it's usually fine but recent Adobe produced jpg's are corrupted when being written to the file system.  Investigations have lead me to some kind of EXIF tag being a problem

If I use imageMagik 7.0.7-11 on OS X via Node gm to remove the Profile data it will not be corrupted by my system, if I use Exiftool 10.65 on OS X to strip the EXIF using exiftool -all = image.jpg The data appears Stripped but the file is still corrupted by my system.

So the question is, which part of the Image data is breaking my Node application file write and how do I remove it?
Title: Re: File Format Corruption in newer Adobe generated jpg
Post by: Phil Harvey on December 08, 2017, 07:11:21 AM
Try adding -adobe:all to your stripping command to also remove the APP14 color information.

- Phil
Title: Re: File Format Corruption in newer Adobe generated jpg
Post by: mindeater on December 11, 2017, 09:11:13 PM
Great thanks.