我打印图片 X。然后我尝试打印图片 Y,但它再次打印图片 X,然后是 Y。请问,如何从 Python 列表中删除图片 X?
Posted
技术标签:
【中文标题】我打印图片 X。然后我尝试打印图片 Y,但它再次打印图片 X,然后是 Y。请问,如何从 Python 列表中删除图片 X?【英文标题】:I print Picture X. I then try to print Picture Y but it prints Picture X again followed by Y. Please, how can I delete Picture X from a Python list? 【发布时间】:2020-09-05 23:52:16 【问题描述】:此代码用于在 Brother QL-800 打印机上打印用于 COVID-19 筛查的徽章。
我正在使用有人在这里创建的惊人代码 https://github.com/pklaus/brother_ql/tree/142cf744d89a912df729bbf15d35468d780559df/brother_ql
显然,每次我调用 convert() 或 send() 函数时,python 代码都会将我正在打印的徽章保存在一个列表中。
所以每次我尝试打印新徽章时,它都会先打印所有旧徽章。
在我执行 convert() 和 send() 命令打印后,谁能看到如何从列表中删除徽章图像?
代码如下:
import pygame
import time
from PIL import Image
from brother_ql.conversion import convert
from brother_ql.backends.helpers import send
from brother_ql.raster import BrotherQLRaster
from brother_ql.backends import backend_factory, guess_backend
#####################################################################################################
### Test QR-800 Printer
#####################################################################################################
# Here I just get two images each of size 1044x696
image1 = Image.open('RedBlack1_1044x696.png')
image2 = Image.open('RedBlack2_1044x696.png')
backend = 'linux_kernel' # 'pyusb', 'linux_kernel', 'network'
model = 'QL-800' # your printer model.
printer = '/dev/usb/lp0'
qlr = BrotherQLRaster(model)
qlr.exception_on_warning = True
badge = convert(
qlr=qlr,
images=[image1], # Takes a list of file names or PIL objects.
label='62red',
rotate='90', # 'Auto', '0', '90', '270'
threshold=70.0, # Black and white threshold in percent.
dither=False,
compress=False,
red=True, # Only True if using Red/Black 62 mm label tape.
dpi_600=False,
lq=False, # True for low quality.
no_cut=False
)
send(instructions=badge, printer_identifier=printer, backend_identifier=backend, blocking=True)
# THE ABOVE COMMAND PRINTS MY FIRST IMAGE (image1)
badge = convert(
qlr=qlr,
images=[image2], # Takes a list of file names or PIL objects.
label='62red',
rotate='90', # 'Auto', '0', '90', '270'
threshold=70.0, # Black and white threshold in percent.
dither=False,
compress=False,
red=True, # Only True if using Red/Black 62 mm label tape.
dpi_600=False,
lq=False, # True for low quality.
no_cut=False
)
send(instructions=badge, printer_identifier=printer, backend_identifier=backend, blocking=True)
# THE ABOVE COMMAND PRINTS BOTH IMAGES (image1 and image2). Why is it printing image1 this time????
# QUESTION - HOW DO I PREVENT IT FROM PRINTING THE FIRST IMAGE TWICE?
【问题讨论】:
也许尝试在第一次打印后删除badge
,然后再转换第二次以确保它重新开始......只是猜测。
【参考方案1】:
阅读文档here 表明,convert 将当前图像的光栅化指令添加到发送到打印机的数据中。很可能,您需要在第二个send()
之前重置要发送的数据
一种方法是在第二个convert()
之前使用qlr = BrotherQLRaster(model)
,但由于我没有Brother 打印机,因此我无法对此进行测试以确定。
【讨论】:
迈克 - 谢谢!你做到了。它是固定的!上帝保佑你和 Stack Overflow 的每一个人! @BobGaines 很高兴为您提供帮助。欢迎来到堆栈溢出。请将答案标记为已接受的解决方案。以上是关于我打印图片 X。然后我尝试打印图片 Y,但它再次打印图片 X,然后是 Y。请问,如何从 Python 列表中删除图片 X?的主要内容,如果未能解决你的问题,请参考以下文章