JPEG is a commonly used method of lossy compression for digital photography (image).
25
votes
10answers
17k views
Efficient JPEG Image Resizing in PHP
What's the most efficient way to resize large images in PHP?
I'm currently using the GD function imagecopyresampled to take high resolution images, and cleanly resize them down to a size for web ...
20
votes
9answers
3k views
Tools for JPEG optimization?
Do you know of any tools (preferrably command-line) to automatically and losslessly optimize JPEGs that I could integrate into our build environment? For PNGs I'm currently using PNGOUT, and it ...
20
votes
4answers
9k views
Why does IE7 specify a mime-type of image/pjpeg rather than just image/jpeg?
When uploading a file (jpeg) via a form in IE7 I am seeing a mime-type of "image/pjpeg" instead of "image/jpeg" (as I see in Firefox or similar). It's easy enough to work around this problem, but I'm ...
17
votes
9answers
1k views
Efficient way to fingerprint an image (jpg, png, etc)?
Is there an efficient way to get a fingerprint of an image for duplicate detection?
That is, given an image file, say a jpg or png, I'd like to be able to quickly calculate a value that identifies ...
16
votes
1answer
455 views
Saving JPEG file coming from Network Camera RTP Stream
I had a RTP Stream socket, receiving a JPEG Stream, from a samsung network camera.
I dont know much about how JPEG format works, but i do know that this incoming JFIF or JPEG stream is giving me the ...
12
votes
9answers
1k views
Can a JPEG compressed image be rotated without a loss in quality?
JPEG is a lossy compression scheme, so decompression-manipulation-recompression normally reduces the image quality further for each step. Is it possible to rotate a JPEG image without incurring ...
12
votes
4answers
5k views
Converting a PDF to a series of images with Python
I'm attempting to use Python to convert a multi-page PDF into a series of JPEGs. I can split the PDF up into individual pages easily enough with available tools, but I haven't been able to find ...
11
votes
7answers
5k views
Convert SVG image to PNG with PHP
I'm working on a web project that involves a dynamically generated map of the US coloring different states based on a set of data.
This SVG file gives me a good blank map of the US and is very easy ...
11
votes
13answers
6k views
C# How can I test a file is a jpeg?
Using C# how can I test a file is a jpeg? Should I check for a .jpg extension?
Thanks
11
votes
7answers
11k views
Converting transparent gif / png to jpeg using java
I'd like to convert gif images to jpeg using Java. It works great for most images, but I have a simple transparent gif image:
[In case the image is missing: it's a blue circle with transparent ...
10
votes
6answers
654 views
Is it possible to tell the quality level of a JPEG?
This is really a two part question, since I don't fully understand how these things work just yet:
My situation: I'm writing a web app which lets the user upload an image. My app then resizes to ...
10
votes
4answers
5k views
How do you create a thumbnail image out of a JPEG in Java?
Can someone please help with some code for creating a thumbnail for a JPEG in Java.
I'm new at this, so a step by step explanation would be appreciated.
9
votes
1answer
199 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 ...
9
votes
4answers
4k views
When to use PNG or JPG in iPhone development?
I have an app that will display a bunch of images in a slideshow. Those images will be part of the bundle, thus distributed with the app.
All the images are photographs or photographic, etc.
I've ...
9
votes
8answers
735 views
How to write a huge JPEG that exceeds the physical RAM using Delphi?
Here is the problem. I have a large set of 512x512 pixels JPEG tiles as regular jpg files.
I have written a piece of software that does a bunch of things and does need to stitch all those files into ...
8
votes
1answer
315 views
Ensuring exported JPEG is less then maximum file size
I currently have an application which takes a screenshot of a presenter's desktop and then broadcasts it via a custom protocol to the viewers. In order for the images to be transfered quick enough to ...
8
votes
7answers
5k views
Fast JPEG encoding library
anyone know of a free open-source jpeg encoding library for C/C++? Currently I'm using ImageMagick, which is easy to use, but it's pretty slow. I compared it to an evaluation of Intel Performance ...
7
votes
4answers
282 views
Converting Jpeg images to Bmp - some images come out blue
There are some Jpg images which Delphi doesn't seem to like. It appears to be specific with the files I'm loading. And the procedure is simple - a) load Jpg image to TJpegImage, b) Assign Jpg object ...
7
votes
8answers
1k views
What is the smallest valid jpeg file size (in bytes)
I'd like to screen some jpegs for validity before I send them across the network for more extensive inspection. It is easy enough to check for a valid header and footer, but what is the smallest size ...
7
votes
3answers
2k views
How to use PIL to resize and apply rotation EXIF information to the file?
I am trying to use Python to resize picture.
With my camera, files are all written is landscape way.
The exif information handle a tag to ask the image viewer to rotate in a way or another.
Since ...
7
votes
4answers
2k views
the size of a jpeg(jfif) image
I need to find the size of a jpeg (jfif) image. The image is not saved as a stand-alone file, so I can't use GetFileSize or any other API such this one (the image is placed in a stream and no other ...
7
votes
3answers
5k views
.NET C# library for lossless Exif rewriting?
I have found various code and libraries for editing Exif.
But they are only lossless when the image width and height is multiple of 16.
I am looking for a library (or even a way to do it myself) to ...
7
votes
3answers
3k views
How can I compress jpeg images in Java without losing any metadata in that image?
I want compress jpeg files using Java. I do it like this:
Read the image as BufferedImage
Write the image to another file with compression rate.
OK, that seems easy, but I find the ICC color ...
7
votes
2answers
13k views
OpenCV cvSaveImage Jpeg Compression Factor
I am using OpenCV and saving as a jpeg using the cvSaveImage function, but I am unable to find the jpeg compression factor used by this.
What's cvSaveImage(...)'s Jpeg Compression factor
How can I ...
7
votes
8answers
1k views
How to join 2 jpegs together losslessly without decoding using a hex editor?
I am trying to write a program (prob in java) to join a number of jpegs together losslessly without decoding them first.
I thought I'd start simple and try and append 2 jpegs of the same size ...
7
votes
2answers
5k views
Write dpi metadata to a jpeg image in Java
I am trying to programatically set the dpi metadata of an jpeg image in Java. The source of the image is a scanner, so I get the horizontal/vertical resolution from TWAIN, along with the image raw ...
7
votes
5answers
3k views
What is the difference between: image/x-citrix-pjpeg and image/pjpeg
Some files are uploaded with a reported MIME type:
image/x-citrix-pjpeg
They are valid jpeg files and I accept them as such.
I was wondering however: why is the MIME type different?
Is there any ...
7
votes
4answers
3k views
Efficiently detect corrupted jpeg file?
Is there an efficient way of detecting if a jpeg file is corrupted?
Background info:
solutions needs to work from within a php script
the jpeg files are on disk
manual checking ...
6
votes
3answers
399 views
Convert raw grayscale binary to JPEG
I have C language source code, for an embedded system, containing arrays of data for an 8-bit per pixel grayscale image. I'm in charge of documenting the software and I'd like to convert this source ...
6
votes
3answers
166 views
jpeg file format question
I'm trying to write a JPEG/JFIF encoder and decoder from scratch using C. I experimented writing a sample JPEG file, but it seems that I cannot open it using MS paint, Firefox. But I can decode it ...
6
votes
3answers
567 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 ...
6
votes
4answers
630 views
100% Java library for JPEG lossless decoding
I'm searching for a library in 100% Java which could decode JPEG images with jpeg-lossless compression.
I know that ImageIO and JAI already could decode this images, but they're needed a native code ...
6
votes
2answers
175 views
Are there any high-quality, programmatic solutions for converting a jpeg with an opaque background to a png with a transparent background?
The common use case here is a user uploading a jpeg logo with a white/color background. It's (fairly) simple to switch the white pixels to transparent ones, but this leaves aliasing artifacts. An ...
6
votes
1answer
654 views
How to specify bitrate for JPEG compression?
Is there a way to encode JPEG at a specific bitrate?
Presently, I'm using imagemagick's convert:
convert Lenna-gray-100.jpeg -quality 1.1111 test.jpeg
Bitrate increases with quality, but it's ...
6
votes
1answer
3k views
Is there a 100% Java alternative to ImageIO for reading JPEG files?
We are using Java2D to resize photos uploaded to our website, but we run into an issue (a seemingly old one, cf.: http://forums.sun.com/thread.jspa?threadID=5425569) - a few particular JPEGs raise a ...
6
votes
1answer
309 views
How to modify EXIF metadata for JPEG images using Coldfusion?
I am using Coldfusion to view images stored in the file system and I can READ the EXIF metadata of JPEGs, but I'd like to know if it is possible to modify this information and re-save the image.
6
votes
3answers
2k views
How to remove EXIF data without recompressing the JPEG?
I want to remove the EXIF information (including thumbnail, metadata, camera info... everything!) from JPEG files, but I don't want to recompress it, as recompressing the JPEG will degrade the ...
6
votes
4answers
3k views
Why Java ImageIO flattens JPEG colors
When I read certain JPG files, colors are flattened. Here is a simple example that reads a jpg and just writes the same image to another file.
import java.awt.image.BufferedImage;
import ...
6
votes
8answers
5k views
How can you hide information inside a jpg or gif photo?
How can I write some information inside a photo file like jpg or gif without destroying the image? and of course without showing it on the photo since the whole idea is to send information in the file ...
6
votes
2answers
2k views
.NET Saving jpeg with the same quality as it was loaded
I have a cannon digital camera and I set it to take pictures with superfine quality and it outputs a .jpg file 3 mega in size.
If I load it like this in ASP.NET(this is useful to change it's dpi ...
6
votes
12answers
2k views
Enabling JPEG support for QImage in py2exe-compiled Python scripts?
I'm trying to use a JPEG image in a QImage object from a Python script, with PyQt4.
The script itself works perfectly, the image loads and can be manipulated and rendered and all. However, when I ...
6
votes
4answers
4k views
Lossless JPEG Rotate (90/180/270 degrees) in Java?
Is there a Java library for rotating JPEG files (90/180/270 degrees) without quality degraded?
5
votes
4answers
285 views
Programatically Reducing JPEG file size
Apologies for any ignorance, but I have never worked with jpeg images (let alone any types of images) in Java before.
Supposing I want to send a jpeg image from a web service to a client. Is there ...
5
votes
1answer
419 views
how to change image file rotation status without loading it into memory
Someone told me some image file like jpg just use some bits to control the rotation status.
Is there any way to change this status without loading the picture file to main memory
5
votes
5answers
427 views
How to identify contents of a byte[] is a jpeg?
I have a small byte array (under 25K) that I receive and decode as part of a larger message envelope. Sometimes this is an image, and when it is and image, sometimes it is a jpg. I have no context ...
5
votes
3answers
951 views
Java library for reading and writing IPTC metadata to JPEG and TIFF
Does anyone know some opensource Java library for reading and writing IPTC metadata to JPEG and TIFF? Now I'm using Apache Sanselan. Unfortunately, it can only read IPTC, not write ...
5
votes
4answers
968 views
convert bitonal TIFF to bitonal PNG in C#
I need to convert bitonal (black and white) TIFF files into another format for display by a web browser, currently we're using JPGs, but the format isn't crucial. From reading around .NET doesn't seem ...
5
votes
3answers
1k views
Java: Reading images and displaying as an ImageIcon
I'm writing an application which reads and displays images as ImageIcons (within a JLabel), the application needs to be able to support jpegs and bitmaps.
For jpegs I find that passing the filename ...
5
votes
3answers
335 views
Resizing JPEG image during decoding
I'm working on a program that creates thumbnails of JPEG images on the fly. Now I was thinking: since a JPEG image is built from 8x8-pixel blocks (Wikipedia has a great explanation), would it be ...
5
votes
4answers
308 views
Security issues in accepting image uploads
What are the major security issues to consider when accepting image uploads, beyond the normal stuff for all HTTP uploads?
I'm accepting image uploads, and then showing those images to other users.
...