Tagged Questions
10
votes
1answer
227 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
617 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
78 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
707 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, ...
3
votes
2answers
153 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
1answer
806 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.
...
3
votes
5answers
6k 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 ...
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
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
0answers
222 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
3answers
332 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
1answer
406 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
3answers
538 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
4answers
249 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
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
292 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
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:
...
0
votes
1answer
18 views
Image flips, OpenGL output to JPEG using libjpeg
The below code helps me to convert OpenGL output to JPEG image using libjpg but the resultant image is flipped vertical...
The code works perfect but the final image is flipped I dont know why ?!
...
0
votes
0answers
30 views
why is cinfo.dest->free_in_buffer larger than the actual buffer size when using jpeglib?
void writeMipMapJpeg(WriteData *writeData)
{
JSAMPARRAY scanlines = 0; // will be filled later
struct jpeg_compress_struct cinfo;
struct jpeg_error_mgr jerr;
cinfo.err = ...
0
votes
1answer
147 views
libjpeg decompress to RAW not working
I am on a RHEL 6.0 x86_64 box with the following version of libjpeg.
[mehoggan@hogganz400 jpeg_to_raw.c]$ rpm -qa libjpeg
libjpeg-6b-46.el6.x86_64
I have the following code which takes as its input ...
0
votes
2answers
53 views
Getting JPEG Redundant Data
I am doing some project related to image compression and I need a way to save the data lost in JPEG compression (like bits per pixel..). I guess I would need to build a custom libjpeg for that. ...
0
votes
0answers
70 views
jpegtran rotation issue
Not sure this is the correct place where I can ask this question, but I did't find the forum of IJP.
I recently work on jpeg lossless rotation, and I find jpegtran from here can't work correctly. ...
0
votes
4answers
762 views
C: WinAPI CreateDIBitmap() from byte[] problem
I have been working on this problem for a while now.
I am trying to add JPEG support to a program with libjpeg.
For the most part, it is working fairly well, But for some JPEGs, they show up like the ...
0
votes
3answers
198 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!