Print Cost Calculator
Work out what your printer really costs — ink or toner cost per page, paper cost per page, and the total cost of a print job, a month of printing, and a year of printing, in your own currency.
Input
Price of one black ink or toner cartridge.
How many pages one black cartridge is rated to print. Check the box or the manufacturer's spec.
Price of one ream of paper.
Size of a typical single print job.
Output
| Component | Cost / Page |
|---|---|
| No data yet | |
| Period | Pages | Cost |
|---|---|---|
| No data yet | ||
Guides
What does this calculator do?
The Print Cost Calculator turns your cartridge price, its page yield, and your paper price into the real cost of printing — a cost per page, the cost of a typical print job, and your monthly and yearly printing spend. It also tells you how many pages you can print for a single dollar (or euro, or whatever currency you print in).
How the numbers are worked out:
- Ink (or toner) cost per page:
cartridgePrice ÷ pageYield— using the black cartridge for black & white, the color cartridge for color. - Paper cost per page:
paperPrice ÷ sheetsPerReam. - Total cost per page: ink cost + paper cost.
- A print job's cost:
totalCostPerPage × pagesPerJob. - Monthly cost:
totalCostPerPage × pagesPerMonth; yearly cost is monthly× 12. - Pages per currency unit:
1 ÷ totalCostPerPage.
Worked example: a $24.99 black cartridge rated for 250 pages costs 24.99 ÷ 250 = $0.10 per page in ink. Paper at $6.00 per 500-sheet ream adds 6.00 ÷ 500 = $0.01 per page, for a total of $0.11 per page. A 100-page print job then costs about $11.20, printing 200 pages a month runs about $22.39/month, and $268.70/year.
How to use it
- Pick Black & White or Color.
- Enter the matching cartridge's price and page yield (both are on the box or the manufacturer's spec page).
- Enter your paper price (per ream) and sheets per ream — 500 is the standard ream size.
- Enter the pages per print job you want to cost out, and how many pages you print per month.
- Pick your currency.
The tables update as you type. You can copy or download either table as CSV.
Does this include the cost of the printer itself?
No — this is a running-cost calculator for consumables only (ink/toner and paper). It doesn't amortize the printer's purchase price, maintenance, or electricity use.
Why is my real cost higher than this estimate?
Cartridges rarely print exactly their rated yield — page yield ratings (like ISO/IEC 24711) assume a standard 5% ink coverage test page. Photo-heavy or dense documents use more ink per page and will cost more than this estimate; light text-only pages may cost less.
Privacy
This calculator runs entirely in your browser. Your cartridge prices, page yields, and volumes are never sent to a server, logged, or stored — the math happens locally on your device.
Use it from code
From 3 credits per callREST API
curl -X POST https://api.iotools.cloud/v1/tool/print-cost-calculator \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"printType": "bw",
"blackCartridgePrice": "24.99",
"blackPageYield": "250",
"colorCartridgePrice": "32.99",
"colorPageYield": "200",
"paperPrice": "6.00",
"sheetsPerReam": "500",
"pagesPerJob": "100",
"pagesPerMonth": "200",
"currency": "USD"
}'Swap in your own key from your account. The tool's fields are the body — no wrapper.
Ask an AI agent
Use the IOTools `print-cost-calculator` tool (Print Cost Calculator) on this input:
YOUR_INPUT_HEREPaste this at any agent connected to the IOTools MCP server, then add your input.