1
0
mirror of https://github.com/python-escpos/python-escpos synced 2025-09-13 09:09:58 +00:00

Merge pull request #181 from mike42/bugfix/fragment-height

Swap default image fragment height to 960
This commit is contained in:
Patrick Kanzler
2016-10-04 11:06:47 +02:00
committed by GitHub

View File

@@ -59,7 +59,7 @@ class Escpos(object):
pass pass
def image(self, img_source, high_density_vertical=True, high_density_horizontal=True, impl="bitImageRaster", def image(self, img_source, high_density_vertical=True, high_density_horizontal=True, impl="bitImageRaster",
fragment_height=1024): fragment_height=960):
""" Print an image """ Print an image
You can select whether the printer should print in high density or not. The default value is high density. You can select whether the printer should print in high density or not. The default value is high density.