本文整理汇总了Python中Adafruit_Thermal.feedRows方法的典型用法代码示例。如果您正苦于以下问题:Python Adafruit_Thermal.feedRows方法的具体用法?Python Adafruit_Thermal.feedRows怎么用?Python Adafruit_Thermal.feedRows使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Adafruit_Thermal
的用法示例。
在下文中一共展示了Adafruit_Thermal.feedRows方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: print
# 需要导入模块: import Adafruit_Thermal [as 别名]
# 或者: from Adafruit_Thermal import feedRows [as 别名]
# print all of the images!
for i in sys.argv[1:]:
if i[0] == '-':
if i[1] == 'n':
no_print = 1
elif i[1] == 'u':
upscale = 1
continue
im = Image.open(i)
#im = im.transpose(Image.ROTATE_90)#.transpose(Image.FLIP_TOP_BOTTOM)
print("OLDSIZE", im.size)
if im.size[0] > max_width or (upscale and im.size[0] < max_width):
newsize = (max_width, int(float(im.size[1]) / (float(im.size[0]) / max_width)))
print("NEWSIZE", newsize)
im = im.resize(newsize, Image.ANTIALIAS)
# PIL algorithm: convert to greyscale then convert to mono with dithering
im = im.convert('1')
im.save("p.jpg", "jpeg")
if not no_print:
printer = Adafruit_Thermal(timeout=5)
printer.printImage(im, False)
printer.feedRows(50)