File: image_from_storage.py

package info (click to toggle)
python-pgmagick 0.7.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,132 kB
  • sloc: cpp: 3,672; python: 2,082; makefile: 160; sh: 40
file content (5 lines) | stat: -rw-r--r-- 157 bytes parent folder | download | duplicates (3)
1
2
3
4
5
from pgmagick import Image, StorageType

data = ["000" for i in range(100)]
img = Image(100, 100, "RGB", StorageType.CharPixel, "".join(data))
img.display()