imagemagick - Apply and remove color profile with image magick -


i have tiff images embedded specific icc profiles.

i want convert these means of imagemagick jpg-files.

the jpg-files should use colorspace srgb (which default) , no embedded profile. in other words want apply profile image , want save without profile.

when use simple convert command this

convert source.tif target.jpg 

the icc-profile preserved in jpg file. can remove command

convert source.tif +profile * target.jpg 

but not seem apply profile.

a -colorspace rgb (or -colorspace srgb?) should trick. combination have tried far not work.

is there color management guru out there can give me hint? `

some iterations later come this

convert source.tif -profile my_profile_path/srgb.icc +profile * target.jpg 

i used icc profile http://www.color.org/profiles/srgb_appearance.xalter


Comments

Popular posts from this blog

css - SVG using textPath a symbol not rendering in Firefox -

Java 8 + Maven Javadoc plugin: Error fetching URL -

datatable - Matlab struct computations -