QImage Non-Standard Format Probem
I'm working on a project that needs a rasterized image in a very odd format.
Project Required Format - RRGGBB00
QImage::Format_RGB888 - 00RRGGBB
So the RGB888 format is "almost" what I need. Does anyone know if QT has a way to convert to the format this project is looking for from a standard fromat?
Re: QImage Non-Standard Format Probem
Re: QImage Non-Standard Format Probem
Quote:
Originally Posted by
high_flyer
It just inverts in image color. It does not do any byte swaping. Also looked at swap and that only swaps the red and blue channels.
Re: QImage Non-Standard Format Probem
EDIT:
It does change each channel, but inverts it, not swaps it, so this indeed wont help you...