Ask HN: Image compositing language?
1–7 of 7 posts
Re: Ask HN: Image compositing language?
#2Also, you can use the image library of Racket. You can mix bitmaps and vectorial images. See for example the https://docs.racket-lang.org/quick/index.html
Re: Ask HN: Image compositing language?
#3If you're looking for something to run headless on a server, Imagemagick is a good choice.
Re: Ask HN: Image compositing language?
#4Re: Ask HN: Image compositing language?
#5Depends on your use case, but the more common paradigm for reusable and procedural image compositing is the idea of a node graph. Prople prefer to work this way for the interactive visualization. This kind of functionality is found in Natron and Blender (free software) as well as Nuke, Fusion and Houdini (paid.) All of these programs can be scripted with Python. If you're looking for something to run headless on a se…
I’ve been using ImageMagick but the CLI invocations are pretty awkward. Maybe I’m just looking for a DSL on top of ImageMagick
Re: Ask HN: Image compositing language?
#6The language and IDE are designed for beginners but it is not limited by it, and in fact many professional designers use it still. The documentation is great, with simple live examples of virtually every function. Here's save() for writing out an image file: https://www.processing.org/reference/save_.html
More recently, they've opened it up to make it easy to get third-party libraries for making web requests, running physics simulations, or augmenting the IDE itself.