Answers for "python create png image"

1

py create image

from PIL import Image, ImageDraw
img = Image.new(mode, size, color)
img.save(filename)
Posted by: Guest on April-12-2021
0

python how to make a png

import png
s = ['110010010011',
     '101011010100',
     '110010110101',
     '100010010011']
s = [[int(c) for c in row] for row in s]

w = png.Writer(len(s[0]), len(s), greyscale=True, bitdepth=1)
f = open('png.png', 'wb')
w.write(f, s)
f.close()

# https://pypng.readthedocs.io/en/latest/ex.html
Posted by: Guest on June-28-2021

Browse Popular Code Answers by Language