Compare commits

...

2 Commits

Author SHA1 Message Date
jimmy c996650414 What happens when you don't have a pen 2022-09-21 00:51:44 +12:00
jimmy 653257b787 Production version 2022-09-21 00:50:57 +12:00
2 changed files with 34 additions and 6 deletions

28
printer/press.py Normal file
View File

@ -0,0 +1,28 @@
import StarTSPImage
from PIL import Image, ImageDraw, ImageFont, ImageOps
import textwrap
import random
im = Image.new('RGB', (500, 1600), color = 'white')
# f = ImageFont.load_default()
f = ImageFont.truetype("printer/SilkRemington-Regular.otf", 100)
txt=Image.new('L', (1600,500))
d = ImageDraw.Draw(txt)
d.text((50, 50), "(When flashing)", font=f, fill=255)
w=txt.rotate(-90, expand=1)
im.paste( ImageOps.colorize(w, (0,0,0), (0,0,0)), (-100, 60), w)
im.show()
# im.save("image_tmp.jpg")
raster = StarTSPImage.imageToRaster(im, cut=True)
printer = open('/dev/usb/lp0', "wb")
printer.write(raster)

View File

@ -46,7 +46,7 @@ def on_message(client, userdata, msg):
lines = textwrap.wrap(text, width=23)
if len(lines) > 2:
if random.randint(0,1) == 0:
im=Image.open("printer/image.jpg")
else:
im=Image.open("printer/image2.jpg")
@ -62,23 +62,23 @@ def on_message(client, userdata, msg):
print(n)
im.paste( ImageOps.colorize(w, (0,0,0), (0,0,0)), ( (n-5)*20 + 127, 5), w)
im.show()
im.save("image_tmp.jpg")
# im.show()
# im.save("image_tmp.jpg")
raster = StarTSPImage.imageToRaster(im, cut=True)
printer = open('/dev/usb/lp0', "wb")
#printer.write(raster)
printer.write(raster)
client = mqtt.Client()
client.on_connect = on_connect
client.on_message = on_message
client.connect("", 1883, 60)
client.connect("192.168.240.231", 1883, 60)
# Blocking call that processes network traffic, dispatches callbacks and
# handles reconnecting.
# Other loop*() functions are available that give a threaded interface and a
# manual interface.
client.loop_forever()
client.loop_forever()