The color is much better, THANK YOU! Next question
I'm creating 7 derivatives from each .tif (1200w, 800w, 600w,400w, 300w, 200w, 100w) File size of the 1200 is 101kb, file size of the 100 w is 80kb – I expect the 100w to be <10kb. Any ideas? Files are here (don't mind the .pngs in the same folder)
https://app.box.com/s/db2e2j4wmhfbjxdhp4o87hm0n6po8lhl
code from my developer
convert -profile /Users/Nirav/Work/newport551/hybris/bin/ext-platform-optional/mediaconversion/resources/mediaconversion/imagemagick/config/sRGB.icc -background white -flatten -resize 1200 -unsharp 0x0.2 -depth 8 -quality 85 -compress JPEG /Users/Nirav/Desktop/assets/TIF/newport123.tif /Users/Nirav/Desktop/assets/temp3/1200W.jpg
convert -profile /Users/Nirav/Work/newport551/hybris/bin/ext-platform-optional/mediaconversion/resources/mediaconversion/imagemagick/config/sRGB.icc -background white -flatten -resize 800 -unsharp 0x0.2 -depth 8 -quality 85 -compress JPEG /Users/Nirav/Desktop/assets/TIF/newport123.tif /Users/Nirav/Desktop/assets/temp3/800W.jpg
convert -profile /Users/Nirav/Work/newport551/hybris/bin/ext-platform-optional/mediaconversion/resources/mediaconversion/imagemagick/config/sRGB.icc -background white -flatten -resize 600 -unsharp 0x0.2 -depth 8 -quality 85 -compress JPEG /Users/Nirav/Desktop/assets/TIF/newport123.tif /Users/Nirav/Desktop/assets/temp3/600W.jpg
convert -profile /Users/Nirav/Work/newport551/hybris/bin/ext-platform-optional/mediaconversion/resources/mediaconversion/imagemagick/config/sRGB.icc -background white -flatten -resize 400 -unsharp 0x0.2 -depth 8 -quality 85 -compress JPEG /Users/Nirav/Desktop/assets/TIF/newport123.tif /Users/Nirav/Desktop/assets/temp3/400W.jpg
convert -profile /Users/Nirav/Work/newport551/hybris/bin/ext-platform-optional/mediaconversion/resources/mediaconversion/imagemagick/config/sRGB.icc -background white -flatten -resize 300 -unsharp 0x0.2 -depth 8 -quality 85 -compress JPEG /Users/Nirav/Desktop/assets/TIF/newport123.tif /Users/Nirav/Desktop/assets/temp3/300W.jpg
convert -profile /Users/Nirav/Work/newport551/hybris/bin/ext-platform-optional/mediaconversion/resources/mediaconversion/imagemagick/config/sRGB.icc -background white -flatten -resize 200 -unsharp 0x0.2 -depth 8 -quality 85 -compress JPEG /Users/Nirav/Desktop/assets/TIF/newport123.tif /Users/Nirav/Desktop/assets/temp3/200W.jpg
convert -profile /Users/Nirav/Work/newport551/hybris/bin/ext-platform-optional/mediaconversion/resources/mediaconversion/imagemagick/config/sRGB.icc -background white -flatten -resize 100 -unsharp 0x0.2 -depth 8 -quality 85 -compress JPEG /Users/Nirav/Desktop/assets/TIF/newport123.tif /Users/Nirav/Desktop/assets/temp3/100W.jpg