DrawBotPython 绘图机器人
DrawBot 是一个强大的、免费的 macOS 应用程序,可以通过编写 Python 脚本来生成二维图形。内置的图形基元支持矩形、椭圆、(贝塞尔曲线)路径、多边形、文本对象、颜色、透明度等等。你可以对多页文件和定格动画进行编程。导出格式支持 PDF、SVG、PNG、JPEG、TIFF、GIF 动画和 MP4 视频。
使用 DrawBot 作为 Python 模块
DrawBot 也可以作为 Python 模块安装,不需要应用程序。
安装
最简单的方法是使用 pip:
$ pip install git+https://github.com/typemytype/drawbot
要手动安装,请按照以下说明操作:
下载:https : //github.com/typemytype/drawbot/archive/master.zip
运行cd <path/where/you/have/downloaded/and/unzipped/drawBot>
运行python setup.py install
使用
import drawBot drawBot.newDrawing() drawBot.newPage(1000, 1000) drawBot.rect(10, 10, 100, 100) drawBot.saveImage("~/Desktop/aRect.png") drawBot.endDrawing()
评论