can anybody explain how to insert a JPEG image with the CImg Graphics library in VC++?

link|improve this question

43% accept rate
What do you mean by 'insert'? Do you mean, load into memory? Or do you want to put one image into another (like a 2D image as a plane into a 3D image, or a smaller image as a region in a bigger one)? – mmr Apr 27 '10 at 5:29
feedback

closed as not a real question by Bill the Lizard Jul 6 '11 at 15:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

Question is too vague, but...

#include "CImg.h"
using namespace cimg_library;

int main()
{
  CImg<float> A("filename.jpg");

  // Do stuff.
}
link|improve this answer
feedback

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