GRB RAW image support?
Posted: 2011-08-26T02:02:31-07:00
Hi!
I have files in GRB (line-interlaced) format. Running
I use ImageMagick 6.6.9-7 from Debian Wheezy.
I'm able to swap the channels and view image using rgb format after:
I have files in GRB (line-interlaced) format. Running
results in:display -size <width>x<height> -depth 8 -interlace line grb:image.raw
Addingdisplay: no decode delegate for this image format `image.raw' @ error/constitute.c/ReadImage/532.
to coder.xml (to codermap section) does not help. (Anyway, is it that clever to get proper channel sequence from name?)<coder magick="GRB" name="RGB"/>
I use ImageMagick 6.6.9-7 from Debian Wheezy.
I'm able to swap the channels and view image using rgb format after:
but I want to know how to omit conversion step and use 'display' directly.convert -respect-parenthesis -size <width>x<height> -depth 8 -interlace line rgb:image.raw -separate -swap 2,1 -channel rgb -combine fixed_image.raw