Search found 4 matches

by bjon
2013-02-12T06:37:29-07:00
Forum: Users
Topic: PNG with embedded sRGB
Replies: 7
Views: 8568

Re: PNG with embedded sRGB

The docs say (somewhere; I forget where) that if IM is writing a PNG with sRGB profile, it just sets a PNG flag that says it is sRGB. That's correct. The PNG spec defines the "sRGB" chunk that carries only one byte: the "intent". We write that instead of the full sRGB profile. Any application that ...
by bjon
2013-02-12T06:35:47-07:00
Forum: Users
Topic: PNG with embedded sRGB
Replies: 7
Views: 8568

Re: PNG with embedded sRGB

snibgo wrote:I don't understand. The input has no profile, and you are not adding one, but expect the output to contain a profile?

Can you provide the exact command you are using, and the input file?

Code: Select all

convert input.png -profile srgb.icc output.png
by bjon
2013-02-12T05:53:36-07:00
Forum: Users
Topic: PNG with embedded sRGB
Replies: 7
Views: 8568

Re: PNG with embedded sRGB

Im my case the input png does not have a srgb profile (but got colorspace=sRGB)
by bjon
2013-02-12T04:18:19-07:00
Forum: Users
Topic: PNG with embedded sRGB
Replies: 7
Views: 8568

PNG with embedded sRGB

Hi I want to embedd a srgb profile to a png image. Doing that on a jpg everything works fine (i got a "Profiles" section when running identify on output image) When doing the same thing on a png image everything seems to work (no errors) but "Profiles" section is missing when using identify. Im i ...