# Create an image to sketch the pasta shape "Conchiglie d’Onda" img_size = (600, 400) img = Image.new("RGB", img_size, color="white") draw = ImageDraw.Draw(img) # Draw a shell-like base (oval shape) shell_base = [(220, 150), (380, 250)] draw.ellipse(shell_base, outline="black", width=3) # Add ridges (lines) to mimic shell lines and wave ridges for i in range(5): x_offset = 10 + i * 20 draw.arc([(220 + x_offset, 150), (380 - x_offset, 250)], start=0, end=180, fill="black", width=2) # Add wave swirl on one side draw.arc([(360, 200), (440, 280)], start=45, end=270, fill="black", width=3) # Label the pasta shape draw.text((220, 270), "Conchiglie d’Onda", fill="black") # Show and save img.show() img.save("conchiglie_d_onda_sketch.png") See more