任意图片转Python Turtle绘图代码

Posted 没头发的米糊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了任意图片转Python Turtle绘图代码相关的知识,希望对你有一定的参考价值。

from PIL import Image

f = open('test.py', 'w')

im = Image.open("1.jpg")
x, y = im.size
print(x, y)

f.write("import turtle\\n")
f.write("canvasX = {}\\n".format(x))
f.write("canvasY = {}\\n".format(y))

f.write(
'''
def D(x, y):
    return x - canvasX // 2, - y + canvasY // 2

turtle.screensize(canvasX,canvasY, "white")
turtle.penup()
turtle.goto(D(0,0))
turtle.pendown()
turtle.pensize(1)
turtle.speed(0)
turtle.colormode(255)
turtle.delay(0)
turtle.tracer({},0)
turtle.hideturtle()
'''.format(x))

for y in range(im.size[1]):
    f.write("turtle.penup()\\n")
    f.write("turtle.goto(D(0,{}))\\n".format(y))
    f.write("turtle.pendown()\\n")
    for x in range(im.size[0]):
        pix = im.getpixel((x, y))
        f.write("turtle.pencolor" + str(pix) + "\\n")
        f.write("turtle.forward(1)\\n")

f.write("turtle.done()\\n")

具体使用到了pillow这个库,生成的py文件可以直接运行,能够把图片以像素点的精度绘制出来(大图片会有些慢)

以上是关于任意图片转Python Turtle绘图代码的主要内容,如果未能解决你的问题,请参考以下文章

草莓熊python turtle绘图代码(玫瑰花版)附源代码

python 的一个绘图代码

python_海龟绘图_坐标系问题_画笔各种方法-python工作笔记013

草莓熊python turtle绘图代码

为啥用python turtle库画蟒蛇会出现这个错误?

Python海龟围绕8字走的代码?