Tagged Questions
The objective of image compression is to reduce irrelevance and redundancy of the image data in order to be able to store or transmit data in an efficient form. Image compression may be lossy or lossless.
25
votes
16answers
2k views
Code Golf: 1x1 black pixel
Recently, I used my favorite image editor to make a 1x1 black pixel (which can come in handy when you want to draw solid boxes in HTML cheaply). Even though I made it a monochrome PNG, it came out to ...
15
votes
10answers
797 views
How to save an image with a specific filesize?
I am building a PHP system whereby users can create a visually complex image that has the final requirement of being 50kB or less.
The user can select to have text printed onto one of 37 template ...
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 ...
3
votes
1answer
336 views
Image Compression in C#.Net
I am working on creating an Image Manipulation library using C# with MVC3. There is an option where users would be uploading multiple files. These files need to be compressed during transfer to server ...
3
votes
6answers
608 views
On-the-fly lossless image compression
I have an embedded application where an image scanner sends out a stream of 16-bit pixels that are later assembled to a grayscale image. As I need to both save this data locally and forward it to a ...
2
votes
1answer
303 views
Compress JPG make the image turn green
When I try to compress the a jpg image, most of the time it work perfectly, however some jpg image turn green after the compression. Here is my code
public void compressImage(String filename, String ...
2
votes
4answers
253 views
PNG optimization - can a PNG be further optimized
I created a design for my website in Photoshop and exported all images as 24-bit PNG images. Later, running a PageSpeed test on the website showed that the images can be further reduced upto 50% in ...
2
votes
3answers
105 views
What is the cause/use/reason for the blocks that show up in high compression videos?
Be patient since I haven't worked with compression algorithms much so this may be obvious to some of you. Something I've always noticed when some streaming video starts to lag. I only realized I was ...
1
vote
0answers
46 views
How to reduce the apk memory size?
I have created one simple Android app, which has got some 3o images, and it consuming 8MB when installed. Each image on average has around 220kb..And dimension is 780*431. I just copy pasted those ...
1
vote
1answer
42 views
iOS Image Compression Algorithm - how would I go about creating one?
I am working on a portion of an app that has uses an ImagePickerViewController to take pictures/use existing pictures for a profile page. I am reducing the size of the resolution of the pictures (all ...
1
vote
0answers
120 views
How to add B&W images as JBIG2DECODE streams into a PDF via iText
I am working on a utility to replace images in a PDF with smaller, monochrome (2-color B&W) versions for the purpose of shrinking scanned PDFs. The program below (which is the whole thing) ...
1
vote
2answers
277 views
PNG Compression in .net
i want to compress bitmaps to png with different compression levels as these levels are available in jpreg compression in c#. i have 20 to 30 images of different sizes to process in 1 sec. is there ...
1
vote
1answer
94 views
Optimizing JPEG quantization table for grayscale text document images
Signal Processing: Image Compression:
I want to store full-color text images in JPEG or TIFF-JPEG format. These images contain text documents with some color graphics. Even with very high JPEG ...
1
vote
2answers
257 views
Opera Turbo and background-repeat doesn't work
For example I have such a code:
<style>
body {
background: url('back.png') repeat-y center;
}
</style>
<body>
</body>
It works fine in all browsers, include Opera. Looks ...
1
vote
1answer
155 views
Best image format for images with color gradients?
This is not totally a programming question, but I think this is best place to ask.
The front page of my website has a nice banner, where more than half the image is a "gradient" of a color, and there ...
0
votes
1answer
12 views
How do I add support for a proprietary image format in Windows Photo Viewer / Picasa Viewer
I am working on developing a lossless compression algorithm using MATLAB.
I would like to see some of my compressed images on windows photo viewer. Could anyone direct me on how to go about doing ...
0
votes
1answer
83 views
Blackfin. 2D DCT/IDCT (image compression) with BF537 EZ-KIT, HOW TO WRITE TO FILE (on disk) reconstructed image (Raw pixel data) from BF537 memory?
I tried this experiment with Digital Image Processing - 2D DCT/IDCT (image compression) with BF537 EZ-KIT implemented by AnalogDevices.
To mention a "resume":
I build the project;
Load an ...
0
votes
1answer
15 views
WSQ file - Compression
I received a sample with 1.000 fingerprints (WSQ files - 100 people with 10 fingerprints each) in WSQ format.
I know that WSQ is a compressed format. My question is: Is there a way to compress this ...
0
votes
1answer
110 views
Tiff Jpeg image viewer control - free / opensource
I have like zillions of tiff files with jpeg compression.
I am working with this library called Lib.tif .net version
it is very great and it can read/tag/save tiff with JPEG compression (6/7).
i have ...
0
votes
0answers
38 views
How to represent an image as length of Gif compressed file?
I need to measure visual complexity of some images. For quantification of visual complexity Donderi has suggested the use of compression techniques such as Gif.
Donderi argues that when a picture is ...
0
votes
0answers
31 views
Utility to extract compression signature
We are looking for open source code to extract compression signature from JPEG file some thing like JPEGsnoop [http://jpegsnoop.en.softonic.com/][1]
However jpeg snoop is in VC++ we require something ...
0
votes
0answers
84 views
How to create a PNG image with the smallest size and good enough for web?
I have a png image of 172kb. Opening it on an image editor and saving as png-8 it becomes 39.3kb and if I set as gif it becomes 42.06kb.
In c# I tried to save as png and the size doesn't change at ...
0
votes
2answers
80 views
how to check whether the image is compressed or not after applying SVD on that image(regarding size of compressed image on disk)
I=imread('cameraman.tif');
figure(1),imshow(I)
I1=im2double(I);
[U,S,V]=svd(I1);
figure(2),imshow(I1)
for j=1:90
I2=U(:,1:j)*S(1:j,1:j)*V(:,1:j)';
end
figure(3),imshow(I2)
I3=U*S*V';
...
0
votes
1answer
115 views
Should I use png or jpg for my image and thumbnail?
I'm taking images from the camera or the camera roll and I'm saving them to core data using an ImageToDataTransformer class. I need to use these saved images in two different places in my app: 250x250 ...
0
votes
3answers
467 views
Compress Image in android
I am making an application which takes image from the camera and then email it.
Friends since you know that images from camera may be of too much resolution and in size as well e.g. 2.0MB and more ...
0
votes
0answers
53 views
obtain same amount of compression using ffmpeg and mpeg2enc
I am using ffmpeg and mpeg2enc libraries on the same benchmark composed of set of images to be converted to a video. Can someone please tell me the command line arguments that ffmpeg and mpeg2enc will ...
0
votes
1answer
62 views
Reversible Karhunen-Loeve Transform
I have a problem with implementing RKLT. I've read through papers by Pengwei Hao and Qingyun Shi but i still have some questions. Has anybody seen an implementation of this transform?
I don't know how ...
0
votes
1answer
103 views
Yii framework dealing with compressed requests
I am pretty new to the Yii framework, and I needs some help with dealing with compression. I followed this link http://www.yiiframework.com/wiki/39/, which works like a charm! Now my server is ...
0
votes
1answer
123 views
Compressing and Serializing QImage over the Network and knowing compressed size in advance
I am sending Several MessagePacket and ScreenPacket over the network. but all this packets are followed by a CommonHeaderPacket which Tells the type, size, id, time, and checksum of the upcoming ...
0
votes
2answers
347 views
How to get image compression quality from IIOMetadata?
When saving a new image with ImageIO generic ImageWriteParam supports explicit setting of compressionQuality parameter from range 0.0f (high compression) to 1.0f (high quality) regardless of image ...
0
votes
2answers
217 views
how to reduce the size of file…in java [closed]
Possible Duplicate:
Resize an image in Java - Any Open Source Library ?
InputStream is = new FileInputStream(file);
long length = file.length();
// if (length > ...
0
votes
0answers
468 views
Preventing/Reducing Facebook's Image Compression and Colour Alteration
Facebook is compressing my images and altering the colour of them. I have tried uploading images as pngs and jpegs, non-compressed and compressed, all end up looking the same once uploaded. Any ...
0
votes
2answers
39 views
image and video compression
What are similar compressors to the RAR algorithm?
I'm interested in compressing videos (for example, avi) and images (for example, jpg)
Winrar reduced an avi video (1 frame/sec) to .88% of it's ...
0
votes
1answer
75 views
Tell GraphicsMagick to keep tRNS chunk for alpha values when writing out a file
I am using GraphicsMagick to reduce the file size of PNG images. Some PNG files have their alpha values conveyed in a tRNS chunk to optimize their file size. The problem is GM is writing these files ...
0
votes
1answer
483 views
Java: Lossy Image Compression Algorithm
My web application allow the user to upload their image to view, and I want to compress the image before display them. What are good lossy image compression algorithm out there. I research around and ...
0
votes
1answer
198 views
Imageloader.save to ByteArrayOutputStream is painfully slow
Is there anyway to speed up SWT's imageLoader.save()-method? I have to compress raw imagedata into JPEG. It takes 130 - 250 ms to compress a 1680 x 1050 pixel large image.
I'm only benchmarking ...
0
votes
1answer
227 views
speed up image creation / writing to byte array (SWT)
I use SWT to compress a RAW Bitmap Image to JPEG. I'm writing the image to a BufferedOutputStream to send the bytes over a socket. The problem is, that the compression takes a lot of time (arround 150 ...