this post was submitted on 17 Feb 2026
35 points (97.3% liked)
Programming
25652 readers
98 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I haven't used it myself, but you might want to check out Processing.
I've fooled around with Processing a lot, and have used it and later (iirc) a C++ or C# library many years ago to do "programmatic" edits to images and photos I had taken.
Stuff like:
I'd come up with different ways to select portions of the image, different ways to place that back in, and different ways to combine the "pasted" section with original. I tossed together something like 30 different "formulas", then would do like 10 runs of each one that had random elements, spit out the results into a folder of what ultimately was something like 300 "result" images, and then decide the five or so I liked the best.
Add in the fact that I really don't have any clue how color math works so I wasn't basing my ideas off anything but whimsy, and some occasional pre and post processing with both paint.net plugins and audacity (you can sometimes open images as raw binary, avoid the file header, apply audio effects, and save it as raw binary to still have an image but it often just makes a corrupt file).
Had a decent "glitch art" hobby going to keep me occupied in my free time.
I desperately need to find that old code again. I miss tinkering with it.
Yep I used that in university for generative art. It was a lot of fun and actually got me into coding unlike many failed attempts before that.