Tagged Questions

0
votes
0answers
162 views

DevIL segfault, issues with png's, bmp's

I am on mingw (gcc version 4.5.2). I get a segfault when opening certain files, including PNGs and BMPs. It was working fine on a 128x128 PNG but when I started testing with larger files I started ...
0
votes
4answers
525 views

C++, how to load images and count pixels of certain colours

here's my problem: I'm looking for a way to import an image into C++ then traverse its pixels, incrementing a counter every time a pixel of a certain colour is found. I've done some research, but I ...
0
votes
1answer
87 views

Image format question

I'm using an image loader (DevIL) for image loading. Im just wondering if the image format (the uncompressed format in memory) loaded from files (.jpg, .png, .bmp etc) is determined by the image ...