Antony schrieb:
> On Nov 24, 8:11 am, Antony <anthonir...@[EMAIL PROTECTED]
> wrote:
>> Hi
>> Any one plz give me some idea or sample program about reading pixels
>> from images (like PMB,JPG,TIF,GIF) using C++ without using any toolkit
>> (like CImg, EasyPMB)..
>>
>> Thanks in advance
>
> I am Using Linux (Ubuntu 8.10 operating system) .
>
> GCC 4.3.2 compiler
>
read the specification for the file-format you want.
( e.g.> bmp -> http://de.wikipedia.org/wiki/Windows_Bitmap
)
normaly there are headers and bodys. in the body, there are
the pixel values.
then write code ,which opens the file and reads the pixel values
( according the file specs ) into your memory.


|