- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 HP LJ P1005 打印机,它是非 PCL(基于主机)打印机。它有一个专用的驱动程序link to the driver .支持 PCL5 的 HP 通用打印驱动程序 (HP-UPD) 不支持它。 A list of supported UPD printers
我的问题是如何在这台打印机上使用 PCL5 转义序列,或者甚至可能吗?这是否意味着如果它是基于主机的,则通过打印机驱动程序的主机 PC 必须解释 PCL5 命令或根本不能使用 PCL5?如何知道驱动程序是否兼容 PCL?如果主机 PC 必须解释 PCL5,打印处理器设置应该是什么样的:RAW、IMF、EMF、winprint TEXT?
最佳答案
好吧,现在我知道我可以创建一个带有 PCL 转义序列的文本文件并解释它并在基于非 PCL 主机的打印机上打印它。
首先,我找到了here如何从 txt
文件创建 pcl
文件的方法。在 Windows 中从 Python 创建 PCL 打印机后,我使用了外部程序 GhostPCL,它是编译的 Ghostscript 解释器,用于从该 pcl 文件创建 PDF 文件 here像这样:
gpcl6win32.exe -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=print.pdf print.pcl
dNOPAUSE
和 dBATCH
用于静默和无交互转换。最后,我安装了gsviewer并从 Python 静默将该 pdf 打印到我默认的基于非 PCL 主机的打印机。我所有的 PCL 代码都被解释并打印到我的廉价打印机上。它在打印时不会打开任何窗口,因此对于客户来说似乎一切正常。
我不是程序员,所以代码不是你见过的最好的,但它可以工作:
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Autor: hrvooje
Last edit: June 2017
'pip install pypiwin32 --> for installing win32api'
In python 2: 'python -m pip install pypiwin32'
io module for io.open in Python2, the same as 'open' in Python3
First command line argument is for file name which we want to print:
'python print_rawpcl.py my_pcl_text_file.txt'
"""
import os, sys, io, win32print, win32api, subprocess
def remove_silently(file1):
"""Removing silently files from last time if there are any left"""
try:
os.remove(file1)
except OSError:
pass
# Asign your printers and variables
first_default_printer = win32print.GetDefaultPrinter()
tmp_printer = "local_pcl"
my_pcl_file = "print.pcl"
my_output_pdf = "print.pdf"
# Remove files if they already exist
remove_silently(my_output_pdf)
remove_silently(my_pcl_file)
# If there is command line argument, the first one is our file_to_print
if len(sys.argv) > 1:
file_to_print = sys.argv[1]
else:
file_to_print = "RACUN.TXT"
# Searching for supported PCL printers as default printer
pcl_supported = False
supported_printers = ["2035", "1320", "KONICA", "DIREKT"]
for item in supported_printers:
if item.lower() in first_default_printer.lower():
pcl_supported = True
break
else:
is_supported = False
if pcl_supported == False:
win32print.SetDefaultPrinter(tmp_printer)
# Printing RAW data to the virtual 'local_pcl' printer or to the 'HP LJ P2035'
try:
# rb --> 'read, bytes', string is 'bytes' type, not unicode (Python3)
with io.open(file_to_print, 'rb') as f:
raw_data = f.read()
hPrinter = win32print.OpenPrinter(win32print.GetDefaultPrinter())
try:
hJob = win32print.StartDocPrinter(hPrinter, 1, (
"print_rawpcl.py data", None, "RAW"))
try:
win32print.StartPagePrinter(hPrinter)
win32print.WritePrinter(hPrinter, raw_data)
win32print.EndPagePrinter(hPrinter)
finally:
win32print.EndDocPrinter(hPrinter)
finally:
win32print.ClosePrinter(hPrinter)
except OSError as e:
print("Failed: {}".format(e))
# Convert a pcl file to pdf with GhostPCL (Ghostscript)
# if the default printer is local_pcl
converter_app = 'C:/Python34/ghostpcl-9.21-win32/gpcl6win32.exe'
if win32print.GetDefaultPrinter() == "local_pcl":
subprocess.call(
[converter_app, '-dNOPAUSE', '-dBATCH', '-sDEVICE=pdfwrite',
'-sOutputFile=print.pdf', 'print.pcl'])
# return default printer to the printer that was default at the start
win32print.SetDefaultPrinter(first_default_printer)
# Finally, print that print.pdf to your first default printer silently
gsprint_app = "C:\\Program Files\\Ghostgum\\gsview\\gsprint.exe"
p = subprocess.Popen(
[gsprint_app, my_output_pdf], stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
# Waits for the gs process to end
stdout, stderr = p.communicate()
# Remove print.pcl and print.pdf file
remove_silently(my_output_pdf)
remove_silently(my_pcl_file)
# Removes that first txt file
remove_silently(file_to_print)
关于printer-control-language - 我可以将 PCL5 转义序列打印到基于非 PCL 主机的打印机吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44623389/
我有一个 javascript 从用户输入中读取的 URL。这是 JavaScript 代码的一部分: document.getElementById("Snd_Cont_AddrLnk_BG").v
我将如何在 javascript 中转义斜杠// var j = /^(ht|f)tp(s?)://([\w-]+\.)+[\w-]+(/[\w-./?%&=]*)?$;/ 最佳答案 使用 \ 进行转
在解析到这样的对象之前,我要转义 & 和 =: var obb = parseJSON('{"' + text.replace(/&/g, "\",\"").replace(/=/g,"\":\"")
我正在使用 freemarker 生成一个 freemarker 模板。但我需要一些方法来转义 freemarker 标签。 我将如何逃脱 标签或 ${expression} ? 最佳答案 您也可以使
我正在尝试匹配方括号,即 excel 中正则表达式 VBA 中的 []。我正在尝试使用以下代码,但它不起作用。 Public Function IsSpecial(s As String) As L
我通过设置将 PowerShell 添加到我的上下文菜单中: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\she
我需要转义 $,因此我需要将所有出现的 $ 替换为 \$ 所以我写了这个方法: // String#replaceAll(String regex, String replacement) publi
我正在格式化我的问题。非常遗憾。这是我的问题的摘要 在 JSP 中我有一个字段 我输入的值类似于“cQN==ujyRMdr+Qi8dO9Xm*eRun+ner==aLTyt?aKmGI” 实际行动
我有一个文本文件,其内容是C:\temp 我想要值 C:\temp替换为从变量定义的不同值 此外,将从批处理文件(windows .cmd)中调用 perl oneliner set CMDDIR=C
有没有办法使用 jTemplates 来转义 {$,这样我就可以在 onBlur 中使用内联 javascript,例如 telegraaf 在 processTemplate 之后得到这个: 谢谢
我正在尝试将 wget 与包含“#”符号的 url 一起使用。无论我做什么来逃避这个角色,它都不起作用。我用过\、' 和 "。但它们都不起作用。有人有什么建议吗? 谢谢! 最佳答案 如果您真的想让它有
我想知道如何从数据库中回显带有 $ 符号的字符串。此时,数据库中的值“Buy one for $5.00”将转换为“Buy one for .00”。 假设该字段的名称为 title,值为 Buy o
我在 mySQL 中有一个查询,旨在返回我们网站上使用的搜索词。是的,这是一个标签云,是的,我知道它是一条鲻鱼 :) 我们有一个管理页面,管理员可以在其中查看搜索词并选择将它们排除在云端之外。这些词进
我有一个文本区域。在其点击事件上。我将其插入数据库中,然后将其显示为元素列表中的第一个元素。问题是。如果我输入""在textarea中,jquery无法正确显示。它显示为空。代码是 var note
我想知道是否有某种字符串前缀,这样 cstring 就可以按原样使用,而不需要我转义所有字符。我不是 100% 确定。我记得一些关于在字符串前加上 @ 符号( char str[] = @"some\
这个问题在这里已经有了答案: How do I escape curly-brace ({}) characters in a string while using .format (or an f
C/C++编译器如何操作源代码中的转义字符["\"]?如何编写用于处理该字符的编译器语法?遇到那个字符后,编译器会做什么? 最佳答案 大多数编译器分为几个部分:编译器前端称为 lexical anal
我计划接受用户输入,并将其插入到一个 div 中 user_content 一个用户提供内容,另一个用户接收内容。 我认为我会遵循的建议来自 https://www.owasp.org/index.p
我有一个这种形式的 url - http:\\/\\/en.wikipedia.org\\/wiki\\/The_Truman_Show。我怎样才能使它成为正常的网址。我试过使用 urllib.unq
我有一个带有转义数据的字符串 escaped_data = '\\x50\\x51' print escaped_data # gives '\x50\x51' 什么 Python 函数会对其进行反转
我是一名优秀的程序员,十分优秀!