Tagged Questions

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 ...
2
votes
1answer
744 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
2k 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
263 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
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
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
322 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
500 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
728 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
2answers
413 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
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?
0
votes
1answer
106 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
1answer
67 views

change specific pixel in jpeglib

We have extracted the jpeg image in the variable char *raw_image. How can we, before writing a new picture, change specific pixels in the raw data? We are programming in c. This is our functions to ...
0
votes
2answers
52 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
1answer
104 views

libjpeg output scaling

Does libjpeg allows/have routines to scale the output image? I have an image which needs to be resized when saving to and loading from, Providing width1, height1 on input and getting width2, height2 ...
0
votes
4answers
702 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 ...
-4
votes
1answer
107 views

Which is slower, jpeg or png?

Is was wondering, if exists a significant difference in the decompression process of these two types of image, which is slower, JPEG or PNG?