Initial commit

This commit is contained in:
2024-04-15 10:44:59 +01:00
commit f2700565c2
55 changed files with 598132 additions and 0 deletions

Binary file not shown.

BIN
qclk/scripts/pattern.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 572 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 757 KiB

View File

@@ -0,0 +1,17 @@
#!/usr/bin/env python3
import pixie
# This script is a hacky piece of shit...
size = 2048
font = pixie.read_font('NotoSansMono-Bold.ttf')
font.size = size // 16
font.paint.color = pixie.Color(1, 1, 1, 1)
image = pixie.Image(size, size)
for i in range(32):
image.fill_text(font, 'qCLK rev 0.1 '*12, transform=pixie.translate(-i*3*font.size, i*1.1*font.size))
image.write_file('pattern.png')