码迷,mamicode.com
首页 > 其他好文 > 详细

Tinyrender-Lesson 0 画一个点

时间:2020-06-23 21:06:46      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:raw   import   mamicode   point   start   lib   imp   plt   position   

Tinyrender-Lesson 0 画一个点

原文链接: https://github.com/ssloy/tinyrenderer/wiki/Lesson-0-getting-started

import matplotlib.pyplot as plt
from PIL import Image
def draw_point(image, position=(0,0), color=(255,255,255)):
    image.putpixel(position, color)
    return image
image = Image.new("RGB",(100, 100),(0,0,0))
draw_point(image, (52,41), (255,0,0))
plt.imshow(image)

技术图片

Tinyrender-Lesson 0 画一个点

标签:raw   import   mamicode   point   start   lib   imp   plt   position   

原文地址:https://www.cnblogs.com/grass-and-moon/p/13184244.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!