10 bit dpx log to srgb conversion

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
User avatar
danielHeen
Posts: 28
Joined: 2010-03-18T06:34:34-07:00
Authentication code: 8675308
Location: Oslo, Norway

10 bit dpx log to srgb conversion

Post by danielHeen »

Hello again!

I'm now having trouble converting a 10 bit log dpx to an sRGB jpg.
The following comand results in a "solarized" image:

Code: Select all

convert input.dpx -colorspace srgb output.jpg
I'm using 6.6.0-8 and the log to lin conversion works great, but to sRGB space doesn't seem to be behaving. I've tried using profiles, but I'm interested in actually applying the sRGB color convertion to the image.

All help greatly appreciated!
-Daniel
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: 10 bit dpx log to srgb conversion

Post by magick »

Let's eliminate EXR for a moment. I need you to define "it acts funny and clips the image." Type
  • convert input.dpx input.pfm
    identify -verbose input.pfm
    convert input.dpx -colorspace srgb input.pfm
    identify -verbose input.pfm
Given the statistical distribution, what exactly is unexpected?
Post Reply