当前位置: 首页>>代码示例>>Python>>正文


Python Adafruit_Thermal.feedRows方法代码示例

本文整理汇总了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)

开发者ID:nalajcie,项目名称:Python-Thermal-Printer,代码行数:30,代码来源:print_img.py


注:本文中的Adafruit_Thermal.feedRows方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。