libjpeg is a widely-used free software library written in C which implements JPEG decoding and encoding functions alongside various utilities for handling JPEG images. This library is maintained by the Independent JPEG Group (IJG), an informal organization which is not affiliated with the JPEG ISO ...
0
votes
0answers
9 views
coders/jpeg.c:1254:33: warning: comparison between 'boolean' and 'enum <anonymous>'
While installing Imagemagick I get this warning.
But Main issue is due to this warning I am not able to use my rmagick for captcha as
/usr/local/bin/convert logo: logo.jpeg
is giving error:
...
0
votes
0answers
19 views
Decoding by libjpeg -> Encoding by x264, strange artefacts on frames
I have a collection of jpeg, which must be decoded by lib jpeg, and after it, encoded by x264 (after it encoded packets are streamed via rtmp).
Code I used for decoding:
struct my_error_mgr
{
...
0
votes
2answers
42 views
How to fix homebrew permissions?
i have uninstalled and installed Homebrew 3 times now because it seems to never allow me to install anything as it denies me permissions at the end of most installations.
As an example i wil post ...
0
votes
0answers
42 views
How to save YUYV raw data to JPEG using LibJpeg
I'm looking for an example, how to save YUYV frame to the JPEG file using LIBJPEG library.
Tried this example but the saved frame is distorted.
Maybe anybody have a working sample?
0
votes
1answer
33 views
What is the different between Android JPEG and libjpeg?
I came up with this question because now I am working on sending JPEG from Andorid to C++ Server. I found that when I encode YUV data(retrieve from android camera) -> BMP -> JPEG and then send to over ...
0
votes
1answer
43 views
How to get Image matrix of an image using libjpeg
Does any function in libjpeg outputs an image matrix just like imread does in matlab?
0
votes
1answer
53 views
Changing DCT coefficients
I decided to use libjpeg as the main library working with jpeg files.
I've read libjpg.txt file. And I was pleased that library allows DCT coefficients reading/writing in a convenient way. Since ...
1
vote
2answers
57 views
Extract decompression part from jpeglib
I am trying to extract the part of decompression in the libjpeg to add it to embedded project so i should take the minimum size of code , but i think the code is very complex, do you have any idea how ...
-3
votes
1answer
67 views
Decode image sent to Arduino using TTL camera? [closed]
I'm new to embedded systems, working on a project. The project description is: "TTL camera over Arduino UNO must capture an image and send it compressed to a board as bytes". I need to decompress it ...
2
votes
1answer
40 views
Compiling libjpeg on Windows using cygwin?
Which is the best way to compile libjpeg on a Windows machine? Should I use Microsoft Visual Studio or can I use something else like Cygwin?
Note: when I use Cygwin and copy makefile.vc to Makefile, ...
0
votes
0answers
19 views
Distributing Cocoa wrappers of command-line scripts
Basically I'm writing a Cocoa wrapper for jpegoptim. I installed jpegoptim with homebrew, then copied the executable from /usr/local/bin to the cocoa project bundle. Then I use NSTask to run the ...
0
votes
1answer
29 views
Read image and determine if its corrupt with the FileReader API
Is there any way to determine if a JPEG file is corrupt after reading it via the FileReader API in JavaScript?
I'm thinking about something like what "libjpeg" does. It provides warning messages if ...
0
votes
0answers
48 views
jpegtran whole directory
I want to optimize the hole test map with jpg images with a commandline.
I found this but it doesnt work:
cd /home/site/html/update/test/
find . -exec jpegtran -optimize "{}" "{}.opti.jpg" "{}" \;
...
1
vote
1answer
132 views
Can't get Python Imaging Library to find JPEG support
This is on Mountain Lion (OSX 10.8.3). So I downloaded, built, and installed the assorted required libraries. I modified setup.py to refer to the right places...
TCL_ROOT = libinclude("/usr")
...
0
votes
3answers
126 views
JPEG compression
I'm trying to understand the JPEG compression process and performed the following steps to verify a few things.
I take an input image img1.jpg and compress it by using IrfanView, say quality=50 ...
0
votes
0answers
81 views
libjpeg turbo : compressed image too large
i have an issue with my libjpeg wrapper class.
I load a jpeg of 2.6mo, I update some of its pixel colors and save it. The file size becomes 5.2mo, the double in size...I don't really understand how i ...
0
votes
1answer
74 views
Cannot get jpeg support with PIL on OSX
I'm trying to run Google App Engine with the PIL library & jpeg support in order to make use of the images module in GAE.
Here is what I have done so far:
I downloaded the tarball for PIL 1.1.7 ...
1
vote
1answer
58 views
libjpeg with image_optim gem on Heroku Cedar Stack (Ruby buildpack)
I'm trying to get the image_optim gem to work with a Rails 4 app on Heroku's Cedar stack to optimize png/gif/jpeg images.
I threw the required binaries (advpng, gifsicle, jpegoptim, jpegtran, ...
0
votes
0answers
57 views
jpeg library is not working in arm-elf-gcc
I am attempting to compile a jpeg to bmp converter which reads jpeg image using jpeg library....
When I am compiling with gcc it is working fine:
gcc -o jpeg2bmp jpeg2bmp.c -ljpeg
it is working ...
1
vote
0answers
58 views
node-canvas and jpeg build dependencies on OSX
I'm using node canvas to generate PNG images of HTML5 generated canvas (using fabric.js). I installed it using:
$ PKG_CONFIG_PATH=/usr/X11/lib/pkgconfig npm install canvas
When the canvas contains ...
0
votes
0answers
147 views
Confused about libjpeg: jpeg_read_scanlines
I'm confused about the way libjpeg jpeg_read_scanlines works. It's my understanding that it decompresses a JPEG, row by row, and creates a decompressed pixel buffer.
Typical usage is something like:
...
0
votes
2answers
146 views
libjpeg API and Reference
I am having trouble finding an API that details functions calls and return values... The headers aren't exactly very clean either...
I have found tons of examples, but I'm interested in error ...
0
votes
1answer
147 views
Building ImageMagick for Android
I am using https://github.com/lilac/Android-ImageMagick to build an ImageMagick library for Android. When trying to ndk-build ImageMagick I end up with the below errors.
...
0
votes
0answers
118 views
libjpeg - jpeg_read_header wrong value
I'm trying to read a JPEG for the first time:
The output_width, output_height and output_components in the struct jpeg_decompress_struct are always zero.
Grayscale :: Grayscale(const ...
3
votes
1answer
78 views
How many bytes are needed for a complete thumbnail of a progressive JPEG?
I am trying to build an uploader which uploads progressive files in two steps:
Upload the minimal number of bytes to create a thumbnail (0-10%)
Upload the rest of the bytes for the thumbnail. ...
1
vote
1answer
117 views
How to get JPEG file orientation using libjpeg
I need to know what orientation has the JPEG file which i read.
jpeg_create_decompress(&cinfo);
jpeg_stdio_src(&cinfo, file);
jpeg_read_header(&cinfo, TRUE);
What shall i do after ...
0
votes
0answers
71 views
jpegoptim launch troubles
I've installed jpegoptim and got error on launch:
$ jpegoptim
Wrong JPEG library version: library is 62, caller expects 80
I found this solution:
...
1
vote
1answer
168 views
how to install libjpeg for pil on windows
I'm converting images formats on windows using python 2.7 and PIL.
Trying to convert an image to JPG raises this exception:
KeyError('JPG',)
Traceback:
...\PIL\Image.py", line 1429, in save
...
1
vote
0answers
106 views
configure script not enabling make to generate shared library
This is in regards to compiling libjpeg v6b if that is relevant.
I run ./configure --prefix=/c/tmp/jpeg-6b-build --enable-shared --enable-static like the install doc says but libtool isn't having it.
...
0
votes
1answer
174 views
Need help compiling jpegtran.c code from libjpeg
See bottom for updates
I am running into a number of odd problems. For starters, I'm using the latest Eclipse CDT and before implementing do_rot_180, the compiler linked the folder ...
0
votes
1answer
99 views
jpegtran.exe not correctly rotating image
I have a freshly compiled libjpeg version 9 and tried running jpegtran.exe in command line with the arguments:
.\jpegtran.exe -rotate 180 -outfile test_output1.jpg testimg.jpg
testimg.jpg: ...
0
votes
1answer
136 views
Compiling/using libjpeg in Windows for Eclipse
This question/answer will eventually serve as complete answer for this question: How can I manipulate/rotate a JPEG image in C++? Since the answers given to that question are only useful if you have ...
-3
votes
2answers
199 views
How can I manipulate/rotate a JPEG image in C++?
I'd like to use the compiled libjpeg-9 example.c and transupp.c code and libraries to rotate a .jpg image in an Eclipse project.
Working progress on achieving this from the start: Compiling/using ...
1
vote
2answers
166 views
Load jpeg image texture with libjpeg from QByteArray
Hi I have a QByteArray of a jpeg image which I obtained from a QNetworkReply. I see everywhere jpeg image read from file and decompressed like this,
FILE * infile;
......
if ((infile = ...
1
vote
2answers
340 views
installing libjpeg for pil and Google app engine on mac Mountain Lion
I'm sure there's a duplicate of this somewhere out there but I looked and am about at the end of my rope. I'm trying get PIL working on my mac OS X 10.8 so that I can use dev_appserver.py to test an ...
2
votes
2answers
335 views
building MATLAB jpeg toolbox with libjpeg8d
This question is related to another question I asked here:
Error reading image using jpeg_read from Matlab's jpeg toolbox
I've been trying to compile the jpeg toolbox under Windows 7 (using the ...
0
votes
0answers
121 views
“File format not recognized” with libjpeg in Dev-C++4.9.9.2
I am compiling the code given here using libjpeg in Dev-C++4.9.9.2. Also I have downloaded all the header and lib file from here. For simplicity, below i am putting the entire source code-
/*
* ...
0
votes
0answers
87 views
libjpeg wrong version error
I am trying to use libjpeg to decompress a jpeg contained in a memory block into its RGB values. I originally had version 6.2 on my system, but I needed the function jpeg_mem_src so I upgraded to 8d. ...
0
votes
1answer
199 views
DCT coefficients changed after JPEG saved to ios photo library
There is a strange change when saving JPEG image to the iOS photo library. I don't know if I am doing something wrong.
I'm using libjpeg-turbo to access JPEG images and then I modify DCT coefficients ...
0
votes
1answer
149 views
Acess DCT coefficients and Quantization values with libJPEG
I am reading a bitmap file and compressing it into a JPEG file using the libJPEG library, simple enough. But now I would like to write each of the intermediate stages, ie DCT and Quantization to a ...
0
votes
1answer
315 views
libjpeg: process all scanlines once
I use jpeg library v8d from Independent JPEG Group and I want to change the way jpeg decompression reads and processes data.
In the djpeg main(), only one scanline/row at a time is read and ...
1
vote
0answers
93 views
SDL compiled version of the libjpeg for iPhone ios [duplicate]
I'm developing a steganography iPhone app where the user can hide a "secret message" within an image. One way to do that is by manipulating the DCT coefficients of jpeg images which, from my readings, ...
1
vote
1answer
178 views
libjpeg decode nv12 or yuv420p
I'm trying to get a YUV420 palanar or semiplanar (NV12) image out of jpeg using libjpeg.
I see that there is a option to specify output format to JCS_YCbCr which would generally be a YUV format, but ...
1
vote
1answer
62 views
Issue launching MATLAB code from JAVA
SI've got some MATLAB scripts which I successfully compiled into a .jar using the MATLAB builder JA. I've imported this jar to a testing project and it works fine, but when I try to import that .jar ...
0
votes
1answer
418 views
include libjpeg in a NDK build
As specified in this answer, I downloaded libjpeg 8d from github and placed it in a folder {ANDROID_APP}/jni/libjpeg. This library has it's own Android.mk, so I tried to include it at the end of my ...
1
vote
1answer
173 views
Saving SurfaceTexture to JPEG
I try to save, through JNI, the output of the camera modified by OpenGL ES 2 on my tablet.
To achieve this, I use the libjpeg library compiled by the NDK-r8b.
I use the following code:
In the ...
0
votes
1answer
601 views
JPEG encoding bitmap (BMP) image from file using libjpeg / C++
We're using version 8d of IJG's libjpeg library to create JPEG images from 24-bit Windows bitmap (.bmp) files.
write_JPEG_file() function from IJG's example.c is being used without any modifications, ...
0
votes
1answer
462 views
How to use jpeglib in xCode
I'm developing an iPhone application and I'm kind of new to everything. I'm working on Mountain Lion OS X 10.8 and using xCode v4.5. I need JPEG handling capabilities in my project and I want to use ...
2
votes
0answers
107 views
How to statically link libjpeg to xCode project
I'm trying to work with libjpeg and I need to statically link it to my xCode project. I'm a complete beginner so I don't know where to start.
I have xCode v4.5, Mac OX 10.8.
Any help??
1
vote
1answer
281 views
Compiling libjpeg for iOS
I am trying to compile a project for iOS 6 in XCode, and I am using the following headers, which include the functionality I need:
#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications ...


