TGA 的 Clojure 库

Clojure library for TGA

我想创建一个简单的 TGA 文件,例如画一条线。我没有为此找到 Clojure 库,尽管我为 Common Lisp(cl-tga、targa)找到了类似的库。

是否有创建 TGA 文件的 Clojure 库?

可以用的很好 Quil library, a wrapper around the very good Processing Java library, see for example http://quil.info/api/image/rendering.

另一方面请注意,Quil 和 Processing 一样,都是循环绘制的,因此您必须习惯它。此博客 post https://www.tylerlhobbs.com/writings/using-quil-for-artwork 解释了如何使用 Quil 生成单个图像(而不是动画)。