vote up 2 vote down star
2

As in title, i need a 2d graphics library that is cross-platform, and provides simple functions, like in Basic; essentially, i only need to paint a pixel a certain color-I do not need hardware acceleration, or any kind of 3d support. I've found a couple ones, but they're not cross-platform.

Anyone knows a solution for me?

flag

7 Answers

vote up 11 vote down check

What about SDL?

Perhaps it's a bit too complex for your needs, but it's certainly cross-platform.

link|flag
SDL is indeed more than Agasa needs, but it should be straightforward enough to use. – Matt Olenik Mar 22 at 20:45
It worked with minimal effort. The fact that sdl-config exist and that debian had all the stuff preinstalled helped a lot. I agree it's overkill but it's simple enough for what i need. Thanks a lot for everything! – Agasa Mar 23 at 20:46
vote up 0 vote down

One neat engine I came across is Angel-Engine. Info from the project site:

  • Cross-Platform functionality (Windows and Mac)
  • Actors (game objects with color, shape, responses, attributes, etc.)
  • Texturing with Transparency
  • "Animations" (texture swapping at defined intervals)
  • Rigid-Body Physics
    • A clever programmer can do soft-body physics with it
  • Sound
  • Text Rendering with multiple fonts
  • Particle Systems
  • Some basic AI (state machine and pathfinding)
  • Config File Processing
  • Logging
  • Input from a mouse, keyboard, or Xbox 360 controller
    • Binding inputs from a config file
  • Python Scripting
    • In-Game Console

Some users (including me) have succesfully (without any major problems) compiled it under linux.

link|flag
vote up 0 vote down

Am I missing something to wonder why noone suggests OpenGL? To use it for 2d would be very simple. The OP only wants to color a pixel. It doesn't get simpler than glBegin/glColor/glVertex/glEnd.

link|flag
OpenGL doesn't guarantee identical pixel output across implementations. – Blank Xavier Apr 5 at 11:41
If the guy is using it for 2d pixel coloring, meaning lighting/texturing/etc. is turned off, it should absolutely have identical output. – Jim Buck Apr 5 at 14:56
vote up 1 vote down

GTK, QT, WxWidgets - heavy-weight; FLTK, Fox, Tk, Lua IUP, Ultimate++, dlib - lightweight; SDL, Cairo - drawing frameworks without GUI widgets

link|flag
vote up 2 vote down

I would recommend DISLIN. It's cross platform, has support for many languages, and has very intuitive naming of routines.

Also, just noticed that nobody mentioned PLPLOT, also cross platform, multi lingual ...

link|flag
While DISLIN seems pretty cool, it is worth noting that it cost $180 pr developer for non-commercial use. – dagw Mar 22 at 20:16
@dagw - you mean for commercial use. It is free for non commercial use. – ldigas Mar 22 at 22:01
vote up 5 vote down

[In no particular order.] However, if you have any other requirements, let us know. BTW: I am not just posting results of a Google query here, I have used all of these (and SDL -- wrote my first few games in SDL :) and I'd say without a set of requirements, it's very difficult to choose among the ones listed.

link|flag
why qt 4.2? the latest version of qt is also good i reckon :) – ejac Mar 22 at 18:35
I had the doc links for 4.2 handy -- so mentioned it in the post. – dirkgently Mar 22 at 18:40
Agreed, Qt (4.5) is also an excellent choice. – Lucas Cardoso Mar 22 at 18:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.