我有一个新的标签打印机(兄弟QL570),它支持无限的纸张。我的想法是,我可以通过打印所需的纸张来节省纸张-错了!打印机的纸张尺寸有63 or x 100 or和63 or x 29 or(以及其他一些),但我需要63 or x 'felxible‘或类似63 or x 40 or的纸张。
我如何才能改变这一点?我将从OpenOffice打印。
谢谢!
(驱动程序为CUPS,使用Mint 17.1)
发布于 2016-01-19 21:37:51
打印机附带的CUPS驱动程序包括用于添加自定义纸张大小的实用程序。
打开终端并键入:
brpapertoollpr_ql570您将看到添加和删除自定义大小的使用示例:
===========================
LPRng Paper Size Tool (v 0.1) Copyright by 2005
Usage: brpapertoollpr_xxxx -P QL-xxxx Printer Name [-n add a Lable Format Name (<=32 bytes) -w Media Width(unit:mm) -h Media Height(unit:mm)]/[-d delete Lable Format Name]
For example:
1. Add a new Label Format with "New Label Format" name and 29mm width and 70mm length:
"brpapertoollpr_ql570 -P QL-570 -n New\ Label\ Format -w 29 -h 70" [enter]
2. Remove the Label Format with "New Label Format" name:
"brpapertoollpr_ql570 -P QL-570 -d New\ Label\ Format" [enter]
===========================举个例子,我这样做了
brpapertoollpr_ql570 -P QL-570 -n long_label -w 62 -h 200设置名为"long_label“的自定义纸张大小,它在62 on的连续卷筒上打印,200 on长的标签
https://stackoverflow.com/questions/29899335
复制相似问题