Mustergenerator/Form generator 1.1.py

53 lines
932 B
Python
Raw Normal View History

2023-10-24 15:09:53 +00:00
# -*- coding: utf-8 -*-
"""
Created on Tue Oct 24 16:25:05 2023
@author: Lukas
"""
# -*- coding: utf-8 -*-
"""
Created on Tue Oct 24 15:14:56 2023
@author: Lukas
"""
import matplotlib.pyplot as plt
from PIL import Image
#from PIL.ExifTags import TAGS
from PIL import Image, ImageDraw
länge = 1000
höhe = 1000
x1= 25
y1= 25
r= 25
ax= 50
ay= 60
versatz= 25
v=1
g=1
im = Image.new('RGB', (länge, höhe), (128, 128, 128))
draw = ImageDraw.Draw(im)
#x =x1
y =y1
while y <= höhe:
x=x1+((versatz)*v)
while x <= länge:
draw.ellipse((x-r, y-r, x+r, y+r), fill=(255, 0, 0), outline=(0, 0, 0))
x =x+ax
y =y+ay
v= -((1-g)/2)
g=-g
#draw.rectangle((200, 100, 300, 200), fill=(0, 192, 192), outline=(255, 255, 255))
# draw.line((350, 200, 450, 100), fill=(255, 255, 0), width=10)
2023-10-30 21:51:04 +00:00
im.save("F:/MyTrash/Uni/PhantomX/test.png")