edit folder and image

main
chae 1 month ago
parent c4320863b1
commit a153d38272

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

@ -3,13 +3,13 @@ import glob
import random
from escpos.printer import Usb
p = Usb(0x4b8, 0x0e15)
p = Usb(0x4b8, 0x0e03)
new_image = Image.new('RGBA',(288*2, 288*19), (255,255,255))
for uu in range(0,10):
images = glob.glob("./*.png",recursive=False)
for uu in range(0,1):
images = glob.glob("images/*.png",recursive=False)
random.shuffle(images)
print(images)
while images:

@ -0,0 +1,19 @@
from PIL import Image
from escpos.printer import Usb
p = Usb(0x4b8, 0x0e03) #in_ep=0x82, out_ep=0x01)
p.textln("hello world")
p.text("hello ")
p.text("line!")
p.qr("https://chae0.org", size=16, center=True)
#always put p.ln() before printing an image like, p.image("")
p.ln()
p.image("images/final.png")
p.cut()
Loading…
Cancel
Save