Tagged Questions

0
votes
1answer
257 views

Compressing IplImage to JPEG using libjpeg in OpenCV

Hi everybody. So I have this problem. I have an IplImage that i want to compress to JPEG and do something with it. I use libjpeg. I found a lot of answers "read through examples and docs" and such …
0
votes
1answer
474 views

Problems with Snow Leopard, Django & PIL

Hi I am having some trouble getting Django & PIL work properly since upgrading to Snow Leopard. I have installed freetype, libjpeg and then PIL, which tells me: --- TKINTER support ok --- JPEG …
0
votes
1answer
33 views

Is decode-interrupt supported in libjpeg?

I am using libjpeg for decode jpeg file. when decoding a large image, user may switch to another jpeg file, So is decode-interrupt supported by libjpeg? Many thanks!
-1
votes
2answers
548 views

c++ fopen is returning a file * with <bad ptr>’s

I copied this code from the libjpeg example and im passing it standard files; FILE *soureFile; if ((soureFile = fopen(sourceFilename, "rb")) == NULL) { fprintf(stderr, "can't open %s\n", …
2
votes
1answer
100 views

adding text to a jpeg

How can you (in C/C++) add text to a jpeg-file using libjpeg? I do not mean by editing pixels, but by adding text to the meta-data (like the png_set_text() libpng library for png files).
2
votes
4answers
818 views

Python with PIL and Libjpeg on Leopard

I'm having trouble getting pictures supported with PIL - it throws me this: "IOError: decoder jpeg not available" I installed PIL from binary, not realizing I needed libjpeg. I installed libjpeg and …
0
votes
2answers
920 views

Where Can I find a good tutorial for IJG libjpeg

I need to do some work with this library and I'm finding the documentation at http://apodeline.free.fr/DOC/libjpeg/libjpeg.html to be deficient (incomplete function signatures, etc). Does anyone know …
0
votes
2answers
286 views

converting bytestream to RGB using libjpeg

I intercept a packet and extract the payload. This payload is compressed jpeg bytestream data (for example this data is assigned to unsigned char *payload). I know that if I have a FILE pointer, then …
2
votes
3answers
675 views

Jpeglib code gives garbled output, even the bundled example code?

Hey all, I'm on Ubuntu Intrepid and I'm using jpeglib62 6b-14. I was working on some code, which only gave a black screen with some garbled output at the top when I tried to run it. After a few hours …
1
vote
2answers
324 views

Building Python PIL for JPEG looks okay, but fails the selftest

I'm on Fedora Core 6 (64 bit) after "yum install libjpeg-devel" I have downloaded and built PIL. It gives the message: --- JPEG support ok Looks like JPEG built okay, but when running selftest.py: …
0
votes
2answers
477 views

using jpeglib for JPEG compressed byte stream

Hello all, I have JPEG compressed byte stream stored in a variable called "Image" and I want to convert this byte stream to RGB. Eg: unsigned char *Image; My question is: Is there any way to pass …