wrote:
> Ink/toner consumption is usually described by printer vendors as the
> number
> of A4 pages with 5% filling (normal text), which can be printed using
> one
> cartridge. Is there any recognized way to help to measure the ink/toner
>
> coverage density of the page before printing...^^ I want to know, Thank
> you
>
I understand.
Ink is normally used in a CMYK fashion.
These are normally described in percentages
(100% K is pure black ink).
So to calculate ink coverage for your photo,
convert RGB -> CMYK.
This is easily done (roughly) by:
C = 1 - ( R / 255 )
M = 1 - ( G / 255 )
Y = 1 - ( B / 255 )
Then
K = min(C,Y,M)
and
C -= K
M -= K
Y -= K
These are all in the 0-255 range, so divide by 100 to get percentages
FOR EACH INK,
and then add them together for total ink.
This gives you coverage for a pixel.
Then average all the pixels, and you have your answer.
If you can get an average for your image in RGB first
(possibly from a histogram or something) that might help.
BugBear