Lately I have been doing some numerical method programming in C. For the bug fixing and throubleshooting it's nice to have some visual representation of what is happening. So far I have been outputting areas of array to the standard output, but that doesn't give that much information. I have also been playing around a bit with gnuplot, but I can't get it too save only image, not the coordinate system and all the other stuff.

So I am looking for a tutorial or maybe a library to show me how to save array from c into an image, it would be especially nice to be possible to save to color images. The transformation from numerical value to a color is not a problem, I can calculate that. It would just be nice of someone to point me in the direction of some useful libraries in this field.

best regards

link|improve this question

75% accept rate
feedback

2 Answers

up vote 4 down vote accepted

You could use the .ppm file format... it's so simple that no library is necessary...

FILE *f = fopen("out.ppm", "wb");
fprintf(f, "P6\n%i %i 255\n", width, height);
for (int y=0; y<height; y++)
  for (int x=0; x<width; x++)
  {
    fputc(red_value, f);   // 0 .. 255
    fputc(green_value, f); // 0 .. 255
    fputc(blue_value, f);  // 0 .. 255
  }
fclose(f);
link|improve this answer
Or, if you are masochist, try BMP: en.wikipedia.org/wiki/BMP_file_format or msdn.microsoft.com/en-us/library/ms969901.aspx – ruslik Dec 3 '10 at 15:19
I've found TGA really easy to read and write as well. – Skurmedel Dec 3 '10 at 15:27
Well, actually OP asked for a library, and it should hide all the ugly thing of the binary format. – ruslik Dec 3 '10 at 15:30
1  
Most libraries would require actually more code than shown above just to be used, let alone dealing with the licensing, portability, dependencies and build problems they may introduce. Of course they're going to give you much more (e.g. image compression) but if you just need generating an image from a C program i think that ppm (or pgm for grayscale) is just wonderful. The image format is supported by many programs and viewers or you can just use imagemagick later to convert. – 6502 Dec 3 '10 at 17:44
Thanks for this, it's really useful! I'll be using this and later conversion to some other format with imagemagick's 'convert' tool. – Rok Dec 3 '10 at 19:08
feedback

I have an image library written in C or C++ (I forget which) somewhere. It saves as BMP, PNG, or JPG, but for the last two you need the corresponding library installed. You can optionally compile without them though and just do BMP.

Can we send private messages on here? If you send me a private message with your email address I'll try and remember to email it to you.

It's a nice idea. On my old Archimedes machine I once wrote a program that executed in the screen memory so you could actually see it working and variables changing etc. etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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