Hi everyone,
I’m a Systems Engineer at a high-volume web offset publication printer. I'm currently building a custom internal estimating dashboard (Angular/TypeScript with a PostgreSQL backend), and I need a sanity check from the estimating veterans here to make sure my ink consumption math is bulletproof before management starts relying on it for financials.
How we are getting the data:
We are scanning our 1-bit Esko TIFF plates (2400 DPI) using ImageMagick to get the mean pixel density (coverage percentage) before they go to press.
Originally, the estimating software was applying that 10% Esko coverage to the actual paper roll width being run for the job (e.g., a 38" web). We quickly realized this broke the math—shrinking the paper width artificially shrank the physical volume of the ink, even though the artwork size hadn't changed.
To fix it, we decoupled the material (paper) area from the ink area. Here is the exact formula we are using to calculate physical pounds of ink per color.
Can anyone confirm if this is the industry-standard way to calculate this?
My main questions for the experts:
I’m a Systems Engineer at a high-volume web offset publication printer. I'm currently building a custom internal estimating dashboard (Angular/TypeScript with a PostgreSQL backend), and I need a sanity check from the estimating veterans here to make sure my ink consumption math is bulletproof before management starts relying on it for financials.
How we are getting the data:
We are scanning our 1-bit Esko TIFF plates (2400 DPI) using ImageMagick to get the mean pixel density (coverage percentage) before they go to press.
- Our press cylinders/plates are a fixed 66" wide x 21" cutoff.
- We evaluate the entire untrimmed 66x21 plate. So if the script returns "10% Cyan," it means 10% of that maximum 66x21 area.
Originally, the estimating software was applying that 10% Esko coverage to the actual paper roll width being run for the job (e.g., a 38" web). We quickly realized this broke the math—shrinking the paper width artificially shrank the physical volume of the ink, even though the artwork size hadn't changed.
To fix it, we decoupled the material (paper) area from the ink area. Here is the exact formula we are using to calculate physical pounds of ink per color.
Can anyone confirm if this is the industry-standard way to calculate this?
- Calculate Fixed Plate Area (Perfecting Web): 66" (Max Plate Width) x 21" (Cutoff) x 2 (Front & Back) = 2,772 sq inches
- Calculate Gross Impressions:(Target Copies + Setup Waste) * (1 + Running Waste %)
- Calculate Total Pounds of Ink (e.g., for Cyan):(Gross Impressions * 2,772 sq inches * 0.10 Esko Coverage) / Ink Mileage Factor
My main questions for the experts:
- Does locking the ink calculation to the maximum plate/cylinder width (rather than the paper roll width) align with how commercial estimating software handles CIP3/Esko data on variable web widths?
- Are there any hidden gotchas in web offset ink consumption that this formula misses?