Please, strip away copyrighted ICC profiles
Posted: Mon May 12, 2014 2:42 am
				
				While searching for embedded non-free ICC profiles:
The following four files showed up:
flash16.png, flash32.png, somelight16.png and somelight32.png, inside skin/classic/noscript from chrome/noscript.jar.
The proposed alternative is to simply remove the embedded non-free and anyway useless ICC profiles:
It removes the 3144 B binary ICC profile from each file, making them a lot smaller in the process.
Thanks in advance for considering.
			Code: Select all
	find . -regextype posix-extended -iregex '.*\.(jpg|png)' \
		-exec sh -c 'identify -verbose "$0" \
		| grep -i copyright && echo "$0"' {} \;
flash16.png, flash32.png, somelight16.png and somelight32.png, inside skin/classic/noscript from chrome/noscript.jar.
The proposed alternative is to simply remove the embedded non-free and anyway useless ICC profiles:
Code: Select all
	exiftool -icc_profile"-<=" $files
Thanks in advance for considering.