Do you know what's the difference between RGB24 and RGB48? I know a byte is added to the pixel, but what's the real impact on the image?
Solved
RGB24 vs RGB48
Best answer by david_r
RGB24: There are three channels with 8 bits per channel (24/3). This means that each cell (pixel) on each band can have 255 discrete integer values, usually in the range 0..255 or -128..127.
RGB48: There are three channels with 16 bits per channel (48/3). This means that each cell (pixel) on each band can have 65535 discrete integer values, usually in the range 0..65535 or ?32768..32767.
So in short, RGB48 will let you store 256 times as much colour information per pixel as RGB24, and the storage requirements will usually reflect this (depending on actual data contents and compression algorithm).
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.


