How can i compare pixel formats of 2 images?
i have tried this:
if (img1.PixelFormat > img2.PixelFormat)
but "Format8bppIndexed" got rated as being bigger than "Format24bppRgb"
what am i doing wrong?
|
How can i compare pixel formats of 2 images? i have tried this:
but "Format8bppIndexed" got rated as being bigger than "Format24bppRgb" what am i doing wrong?
| |||
|
show 1 more comment
feedback
|
|
The comparison is valid, but you are just comparing the value of the enumeration so the result will depend on the order the values were defined in. If you need to compare the formats of the images you will have to build up the rules yourself. Which value is "greater than" another will depend on your application. As @Oded suggests in his comment you could create a | |||||||||||
feedback
|
|
If you want to compare the images by their bit depths, try the following, this worked for me:
| |||
|
feedback
|
Format16bppArgb1555,Format16bppGrayScale,Format16bppRgb555andFormat16bppRgb565– Lucero Nov 20 '11 at 22:06Format16bppRgb555is the least quality. ButFormat16bppArgb1555is identical but it does have a one-bit alphy channel, does that quaify as better? If yes, how does that compare toFormat16bppRgb565which has twice as many green shades as the other two, but no alpha channel? OrFormat16bppGrayScale, which has a whopping 65504 distinct gray shades that the others don't have, but no color? – Lucero Nov 22 '11 at 11:47