Discussion:
converting from 16-bit (RGB565) to jpg/bmp
Prasun Ratn
2005-04-19 00:40:08 UTC
Permalink
I have some data in RGB565 format(16 bits per pixel, with 5,6 & 5 for
r, g & b) which I want to view.
For this I want to convert it to jpg format.

I tried the following :-

V:\a930 [ 9:38:13.39] >convert -size 176x132 -depth 16 dump.rgb dump.jpg
convert: Unexpected end-of-file `dump.rgb': No such file or directory.


What am I doing wrong ??

Thanks
Prasun Ratn
y***@studio.imagemagick.org
2005-04-19 01:13:32 UTC
Permalink
Post by Prasun Ratn
I have some data in RGB565 format(16 bits per pixel, with 5,6 & 5 for
ImageMagick does not support raw RGB565. It does support RGB565 when
encoded in a BMP image format.
Prasun Ratn
2005-04-19 02:09:25 UTC
Permalink
Post by y***@studio.imagemagick.org
Post by Prasun Ratn
I have some data in RGB565 format(16 bits per pixel, with 5,6 & 5 for
ImageMagick does not support raw RGB565. It does support RGB565 when
encoded in a BMP image format.
So, does depth 8 and 16 mean RGB888 and RGB16-16-16 respectively ?
y***@studio.imagemagick.org
2005-04-19 02:47:57 UTC
Permalink
Post by Prasun Ratn
So, does depth 8 and 16 mean RGB888 and RGB16-16-16 respectively ?
Correct.

Loading...