Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
198 views

Do the libjpeg and the .Net jpeg codec really differ significantly on monochrome data?

I work with a lot of monochrome image data and this morning I noticed that there appears to be a significant difference between the way libjpeg and the .Net jpeg codec handle monochrome data. It ...
6
votes
3answers
565 views

Can I use libjpeg to read JPEGs with an alpha channel?

There seems to be some debate about whether JPEGs with alpha channels are valid or not. The answer I had always understood to be correct is that in the JPEG FAQ, which is essentially "No". (This is ...
4
votes
2answers
70 views

Same method that uses mono's gdi+ library giving very different results in different machines

I've been scratching my head on this one, as I hardly know how to begin to understand the problem in my hands. The problem is a static method I use (and which I took from some post here in SO), which ...
4
votes
2answers
330 views

“ERROR: broken data stream when reading image file” (TrueType fonts libjpeg and PIL on OS X)

I'm running OS X 10.6.7, Python 2.6, and writing a small wxPython application that uses PIL to manipulate an image and add some text to it. After quite a bit of configuration woes with attempting to ...
4
votes
2answers
656 views

libjpeg decoding to BGR

I amusing libjpeg to decode a jpeg image from disk to a memory buffer allocated on the heap. I use jpeg_read_scanlines to read and decode each scanline from the file. This is working perfectly, ...
4
votes
3answers
2k views

PIL /JPEG Library / Help!

I tried to use PIL to do some JPEG work in my django app with PIL but I'm getting this IOError.. not sure what to do. ""decoder jpeg not available"" Am I missing the JPEG decoder from my server? If ...
4
votes
2answers
6k 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 ...
3
votes
2answers
129 views

Is it possible to programmatically remove restart markers from JPEG images?

Is it possible to programmatically remove restart markers from JPEG images?
3
votes
2answers
147 views

Fast JPEG scaling to half or a fourth in the transform domain

I'm under the impression that JPEG to JPEG scaling to 1/2 or 1/4th be very fast and high quality and even a smaller memory footprint when done in the transform domain (i.e. never decompressed). ...
3
votes
5answers
5k views

Compressing IplImage to JPEG using libjpeg in OpenCV

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 and did that. And ...
3
votes
3answers
4k views

Problems with Snow Leopard, Django & PIL

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 ...
3
votes
5answers
3k 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 ...
2
votes
1answer
193 views

PIL encoder jpeg not available [closed]

Possible Duplicate: pip install PIL -E TICKETS-1 - No JPEG/PNG support I'm working on a picture cropper, and I'm having trouble with my form validation. The form is validated when uploading ...
2
votes
1answer
125 views

libjpeg jpeg_write_coefficients

I have created my own DCT calculation. How do I use jpeg_write_coefficients to write my 64 DCT values into JPEG file using jpeg_write_coefficients (it needs jvirt_barray_ptr * coef_arrays)? How do I ...
2
votes
1answer
237 views

Android: please advise a fast way to decode JPEG image

I need to decode (unpack into bitmap) pretty small (about 1200 * 1200) JPEG. The problem is I need to do it quickly. I have tried libjpeg, and it's quite slow. I have also tried ...
2
votes
2answers
327 views

Compiling PHP with GD and libjpeg support

I compile my own PHP, partly to learn more about how PHP is put together, and partly because I'm always finding I need modules that aren't available by default, and this way I have control over that. ...
2
votes
1answer
364 views

How to use libjpeg to read a JPEG from a std::istream?

libjpeg can read JPEG data from a FILE* or a buffer. My data is coming from a std::istream. I could read the entire std::istream into a buffer to use with libjpeg, but I'd rather have libjpeg read ...
2
votes
2answers
140 views

Is using zlib (or similar) compression worth/recommended when transmitting JPEG-compressed screen tiles over network (remote screencasting app)?

I'm starting to implement some sort of remote screencasting (VNC-alike) client/server software in C++ (Windows platform), which just transmits the screen updates (image tiles) over the network. The ...
2
votes
1answer
737 views

compiling/using libjpeg for iPhone (iOS 3.0+)?

I want to use the libjpeg (http://www.ijg.org/) library in an iPhone iOS 3.0 or greater project. I have tried a few different approaches, but being a bit naive, I'm not really sure how to begin. ...
2
votes
2answers
1k views

Write to memory buffer instead of file with libjpeg?

I have found this function which uses libjpeg to write to a file: int write_jpeg_file( char *filename ) { struct jpeg_compress_struct cinfo; struct jpeg_error_mgr jerr; /* this is a ...
2
votes
1answer
963 views

Django ImageField issue with JPEG's

I am having a major issue with PIL (Python Image Library) in Django and have jumpped through a lot of hoops and have thus far not been able to figure out what the root of the issue is. The problem ...
2
votes
2answers
75 views

How to attach large info to a JPEG file?

The APP0 to APP15 markers only support 65535 bytes each (I read this from libjpeg.doc). What if there's a bigger chunk of data to save in the jpeg file?
2
votes
1answer
262 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
3answers
1k 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
2k views

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

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 of ...
1
vote
1answer
50 views

c++ compile error after upgrading from ubuntu 10.10 to 11.10

I have a program in c++ that was working and compiling on ubuntu 10.10. However, when i upgraded to 11.10 i started to get this error message: g++ -rdynamic -o ../../../bin/camera Camera.o main.o ...
1
vote
2answers
214 views

Installing PIL with JPEG support on Mac OS X

I posted a question before regarding this subject, and read other ones posted before, but none has successfully solved my problem. I am trying to install PIL on Mac OS X Lion, as I need it for a ...
1
vote
1answer
137 views

How to solve IOError:broken data stream when reading image file?

Im working under Ubuntu 11.04. I'm trying to work with PIL in my Django project. Sadly PIL cannot load my image. Here is the PIL setup summary: PIL 1.1.7 SETUP SUMMARY ...
1
vote
1answer
101 views

Fast loading and display of images in python (Utilizing Libjpeg Turbo in Python?)

I am currently creating an image viewer in python using Tkinter and PIL, but I want the image loading to be quicker. Therefore I would like to know how I could install and utilize Libjpeg Turbo with ...
1
vote
1answer
212 views

Manipulating JPEG images pixel-per-pixel using Mini Jpeg Decoder

I want to manipulate JPEG images with C++ using the decoder Mini Jpeg Decoder. The problem is: I want to read pixel per pixel, but the decoder only returns an imageData-array, similar as libjpeg ...
1
vote
2answers
566 views

_imaging C module error in python PIL

I have read the other posts about the notorious _imaging C module error when installing PIL on Mac OS X and none of the solutions provided anywhere, including the PIL FAQ, have proven helpful. I have ...
1
vote
0answers
207 views

Using pypm to install Python Image Library and getting the standard IOError: decoder jpeg not available

I have a very specific, common problem while installing the Python Image Library (PIL) and that is that PIL doesn't support jpegs natively (what kind of image library does not come pre-packaged with a ...
1
vote
2answers
158 views

How to check if my Linux Box installation installation has SSE instructions capabilities?

How to check if my Linux Box installation installation has SSE instructions capabilities? I am trying to install libjpeg-turbo and I want to make sure that it fully utilizes the capabilities of my ...
1
vote
1answer
95 views

Seg Fault With libjpeg

I can't make any sense of the segmentation fault I'm getting out of the following code: #include <stdio.h> #include <jpeglib.h> #include <stdlib.h> int main(int argc, char** ...
1
vote
3answers
316 views

libjpeg/CreateDIBSection problem

I'm writing a Win32-based application that displays jpeg images from a database. I picked libjpeg as the decoder, but most images display incorrectly. It can be fixed by increasing or decreasing the ...
1
vote
2answers
2k views

Snow Leopard, Homebrew python 2.7, virtualenv, libjpeg and PIL = import error

There are a ton of permutations of this question on StackOverflow and the web in general. I've tried a lot of things and nothing works for me. Here's my setup. I'm running OS X 10.6. I've used ...
1
vote
2answers
667 views

Problem linking libjpeg on Android

I'm having a problem linking to libjpeg from the Android source. I have LOCAL_SHARED_LIBRARIES := libjpeg and LOCAL_C_INCLUDES += $(LOCAL_PATH)/../../../froyo/external/jpeg but I still get ...
1
vote
1answer
387 views

LibJPEG - Get compression ratio of image

I use LibJPEG to read JPEG compressed images. Is there a way to get the current compression ratio of the unchanged image? Thanks for your help!
1
vote
1answer
498 views

write a jpeg with libjpeg (seg fault)

Trying to write a jpeg file from some raw data using libjpeg. It triggers a Segmentation Fault in jpeg_start_compress() Here is the relevant part of the code : void write_sub_image(char *filename, ...
1
vote
3answers
492 views

opengl pixel data to jpeg

Any C++ examples available to convert raw pixel data obtained from glReadPixels to JPEG format and back?
1
vote
3answers
725 views

alternatives to jpeg_read_header libjpeg

So I'm running into an issue using libjpeg on Windows which causes jpeg_read_header() to crash. The problem is (fairly hilariously) described here: ...
1
vote
4answers
245 views

Is there a clever way to compress images to a max filesize instead of a quality level?

Google App Engine gets angry about image files over 1M. http://code.google.com/appengine/docs/python/images/overview.html#Quotas_and_Limits Given an arbitrary user-provided image, and the ability to ...
1
vote
2answers
408 views

Libjpeg error - improper call in state 205

I'm using libjpeg (C/C++ programming on Windows Mobile 6.5), in order to decode images from an IP camera (sent in a MJPEG stream), before pushing them into a DirectShow graph. Until now, I've been ...
1
vote
2answers
162 views

Pointer alignment in libjpeg

From jmorecfg.h: #define PACK_TWO_PIXELS(l,r) ((r<<16) | l) #define PACK_NEED_ALIGNMENT(ptr) (((int)(ptr))&3) #define WRITE_TWO_PIXELS(addr, pixels) do { \ ...
1
vote
2answers
2k views

how to convert 16-bit RGB Frame Buffer to a viewable format?

I'm working with someone else's code on a device which can put an image to /dev/fb/0 and show up on video out or send it over the network to a client application. I don't have access to the old ...
1
vote
1answer
287 views

Can I read a specific image row using libjpeg?

Using libjpeg, if possible, I would like to read a row from the middle of a JPEG image without reading all the preceding rows. Can this be done?
1
vote
3answers
986 views

Installing PIL on Snow Leopard — NOTHING WORKS

I'm trying to install PIL on Snow Leopard, using Python 2.6.1, GCC 4.2.1, PIL 1.1.7, and have tried with both libjpeg6b and libjpeg7 -- nothing works. I've cleared out every trace of libjpeg/pil/zlib ...
1
vote
1answer
848 views

Is it possible to control which libraries apache uses?

Okay, so I had an earlier problem with PIL that is still unresolved. Someone else had this problem and had success by removing the old JPEG library. I can't really do that on my machine, however, as ...
1
vote
2answers
1k 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: ...
1
vote
1answer
2k views

using jpeglib for JPEG compressed byte stream

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 "Image" to ...

1 2