• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

What programming language to use.

tank171

Member
I want to know which programming language for editing 2d images. I need to be able to make a program which looks at the individual pixels of an image and change some pixels according to certain perameters. It would be good if it could look at frames in a video clip too.

Any help would be greatly appreciated.
 
Are you going for speed or ease of programming (or both)? Actually, depending on what you want to do, you could probably pick just about any language that has an interface to gd or other similar image libraries. Frames in video clips is probably harder. Focus your search on a library that can do what you want and then pick a language depending on that.
 
I would definately prefer ease of use, as I am new to programming. I really dont know which libraries to pick from, there are so many of them.
 
Python and PIL are pretty easy as far as 2d images go. There's also python bindings for gd and other stuff. Dunno about video though.

But maybe a better question is: what languages are you familiar with and what sort of an environment will you be running the code in?
 
I am really new to programming in general, my OP was to pick which language that I want to start learning in. I have some experience in C++ and python. I will be running this on windows xp probably as a DOS file, just whatever kind of file that works.
 
Back
Top