工具介绍

打印覆盖率计算器(本地运行版)

支持拖拽/点击载入PDF,逐页计算CMYK覆盖率,并进行黑白/彩色计价、纸张成本与利润率测算。完全在本地浏览器内运行,不上传任何数据。

黑白单价 (元/页)
彩色单价 (元/页)
单一计价 (元/页)
80g纸附加费 (元/页)
彩色判定阈值 (CMY之和 > %)
% 自动重分析
墨水定价 (元 / 5% 覆盖率标准页)
/
70g纸成本
/
80g纸成本
/

点击或拖拽 PDF 到此自动分析

完全本地化运行。您的数据不会被上传。请勿选择过大的文件

成本核算

墨水成本

¥{{ inkCost.toFixed(4) }}

总折算标准页: {{ totalStandardPages.toFixed(4) }}

墨水单页成本 : {{ config.inkPrice.toFixed(2) }}元 ÷ {{ config.inkYield }}页 = {{ (config.inkPrice/config.inkYield).toFixed(6) }}元/页

墨水总成本 : {{ totalStandardPages.toFixed(4) }}页 × {{ (config.inkPrice/config.inkYield).toFixed(6) }}元/页 = {{ inkCost.toFixed(4) }}元

纸张成本

¥{{ paperCost.toFixed(4) }}

70g:{{total70gPages}}页 | 80g:{{total80gPages}}页

70g单页成本 : {{ config.paper70gPrice.toFixed(2) }}元 ÷ {{ config.paper70gQty }}页 = {{ (config.paper70gPrice/config.paper70gQty).toFixed(6) }}元/页

80g单页成本 : {{ config.paper80gPrice.toFixed(2) }}元 ÷ {{ config.paper80gQty }}页 = {{ (config.paper80gPrice/config.paper80gQty).toFixed(6) }}元/页

纸张总成本 : ({{ total70gPages }}页 × {{ (config.paper70gPrice/config.paper70gQty).toFixed(6) }}元/页) + ({{ total80gPages }}页 × {{ (config.paper80gPrice/config.paper80gQty).toFixed(6) }}元/页) = {{ paperCost.toFixed(4) }}元

CMYK标准页折算

C {{ (totalCmyk.c / 5).toFixed(4) }}
M {{ (totalCmyk.m / 5).toFixed(4) }}
Y {{ (totalCmyk.y / 5).toFixed(4) }}
K {{ (totalCmyk.k / 5).toFixed(4) }}

总成本

¥{{ (paperCost + inkCost).toFixed(4) }}

总成本 : {{ paperCost.toFixed(4) }}元 + {{ inkCost.toFixed(4) }}元 = {{ (paperCost + inkCost).toFixed(4) }}元

利润率

{{ profitRate.toFixed(2) }}%

利润率 : ({{ finalAmount.toFixed(4) }}元 - {{ (paperCost+inkCost).toFixed(4) }}元) ÷ {{ (paperCost+inkCost).toFixed(4) }}元 × 100% = {{ profitRate.toFixed(2) }}%

售价核算

黑白打印费

¥{{ totalBwCost.toFixed(4) }}

{{ totalBwPages }} × {{ config.bw.toFixed(4) }} =

彩色打印费

¥{{ totalColorCost.toFixed(4) }}

{{ totalColorPages }} × {{ config.color.toFixed(4) }} =

80g纸附加费

¥{{ totalPaperAddCost.toFixed(4) }}

{{ total80gPages }} × {{ config.paperAdd80g.toFixed(4) }} =

折扣后金额

¥{{ discountAmount.toFixed(4) }}

{{ totalStats.cost.toFixed(4) }} × {{ discountRate }}% =

%
当前精度: {{ roundPrecisionLabel }}
原始金额(未调整)

¥{{ formatAmount(totalStats.cost) }}

最终金额(折扣/抹零/调价后)

¥{{ formatAmount(finalAmount) }}

金额计算明细

原始金额 = {{ formatAmount(totalStats.cost) }}元

折扣后金额 : {{ formatAmount(totalStats.cost) }} × {{ (discountRate / 100).toFixed(4) }} = {{ formatAmount(discountAmount) }}元

抹零后金额 = ¥{{ formatAmount(discountAmount) }} → ¥{{ formatAmount(afterRoundAmount) }}元(向下取整)

{{ adjustType === 'add' ? '加价' : '减价' }}后金额 = ¥{{ (isRounded ? afterRoundAmount : discountAmount).toFixed(4) }} {{ adjustType === 'add' ? '+' : '-' }} ¥{{ adjustHistory.toFixed(2) }} = ¥{{ finalAmount.toFixed(4) }}元

打印结算明细清单

{{ fIdx + 1 }}. {{ file.name }} 折算标准页: {{ getFileStdPages(file).toFixed(4) }} 物理页数: {{ file.totalPages }}
C: {{ getFileAvgCmyk(file).c.toFixed(4) }}% M: {{ getFileAvgCmyk(file).m.toFixed(4) }}% Y: {{ getFileAvgCmyk(file).y.toFixed(4) }}% K: {{ getFileAvgCmyk(file).k.toFixed(4) }}% 总覆盖率: {{ getFileTotalCoverage(file).toFixed(4) }}%

¥{{ (calcFileFinalAmount(file) * file.copies).toFixed(4) }}

解析进度: {{ ((file.progress/file.progressTotal)*100).toFixed(0) }}%
打印费: 黑白:{{ file.bwCount }}张×{{ config.bw.toFixed(4) }}元/张={{ (file.bwCount*config.bw).toFixed(4) }}元 + 彩色:{{ file.colCount }}张×{{ config.color.toFixed(4) }}元/张={{ (file.colCount*config.color).toFixed(4) }}元 合计:{{ (file.bwCount*config.bw + file.colCount*config.color).toFixed(4) }}元 {{ file.totalPages }}张×{{ config.single.toFixed(4) }}元/张={{ (file.totalPages*config.single).toFixed(4) }}元
附加费: {{ file.use80gPaper ? (config.paperAdd80g.toFixed(4) + '元/张 × ' + file.totalPages + '张 = ' + (file.totalPages*config.paperAdd80g).toFixed(4) + '元') : '无附加费(使用70g纸)' }}
最终合计(含{{ discountRate }}%折扣): {{ calcFileSubtotal(file).toFixed(4) }}元 × {{ file.copies }}份 × {{ discountRate }}% = {{ (calcFileFinalAmount(file)*file.copies).toFixed(4) }}元
{{page.isColor ? '彩色页' : '黑白页'}} 第 {{pIdx+1}} 页(150ppi)
C: {{page.cmyk.c.toFixed(4)}}% M: {{page.cmyk.m.toFixed(4)}}% Y: {{page.cmyk.y.toFixed(4)}}% K: {{page.cmyk.k.toFixed(4)}}%
总覆盖率:{{ page.total.toFixed(4) }}%
折算标准页:{{ (page.total / 5).toFixed(4) }}

联系与友情链接

广告位招租(欢迎邮件联系)

联系方式:lingyu_04@outlook.com

Copyright © 2023-2026 Light All rights reserved. Powered by https://kewu.cc
计算可能不准确,使用 5%覆盖的文件 来验证 | 以MIT协议开源