I am using dcraw (http://www.cybercom.net/~dcoffin/dcraw/) to handle camera raw files and piping it to imagemagick to convert it to a jpg for web use. I have done a few different test and the jpeg never produces the exact same colours/brightness as I see in Adobe Lightroom 3. Even when I do just strait tiff from dcraw, the tiff doesn't have the same colour. So, i think there are a few things I need to tweak in the draw part of the command.
What is the best way to replicate correct colour and brightness of a raw file on a jpeg. I'm currently doing this:
dcraw -c -w 7_1337801236.orf | convert -compress lzw - 7_1337801236.jpg
Thanks for any suggestions.