Search found 2 matches

by davemilter
2018-01-22T15:10:45-07:00
Forum: Users
Topic: how to display raw rgb32 image?
Replies: 2
Views: 5336

Re: how to display raw rgb32 image?

Thank you, snibgo.

This one works as expected:

Code: Select all

convert -size 600x600 -depth 8 BGRA:image.data -channel BGRA -separate -delete 3 -combine out2.bmp
by davemilter
2018-01-22T14:15:09-07:00
Forum: Users
Topic: how to display raw rgb32 image?
Replies: 2
Views: 5336

how to display raw rgb32 image?

I want display image with such format: >The image is stored using a 32-bit RGB format (0xffRRGGBB). 4 bytes per pixel 600 pixel per row, 600 rows. I tried this: display -size 600x600 -depth 8 RGBO:/tmp/image.data display -size 600x600 -depth 32 RGBO:/tmp/image.data But didn't see suitable picture.