Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
5
votes
5answers
556 views

Is there a quality, file-size, or other benefit to JPEG sizes being multiples of 8px or 16px?

The JPEG compression encoding process splits a given image into blocks of 8x8 pixels, working with these blocks in future lossy and lossless compressions. [source] It is also mentioned that if the ...
4
votes
7answers
606 views

Is there a faster lossy compression than JPEG?

Is there a compression algorithm that is faster than JPEG yet well supported? I know about jpeg2000 but from what I've heard it's not really that much faster. Edit: for compressing. Edit2: It should ...
3
votes
1answer
516 views

Reducing video size with same format and reducing frame size

This question might be very basic Is there a way to reduce the frame size/rate of Lossy compressed (WMV, MPEG) format, to get a smaller video, of lesser size, with same format. Are there any open ...
2
votes
2answers
2k views

How to save a JPEG image on Android with a custom quality level

On Android, how do I save an image file as a JPEG at 30% quality? In standard Java, I would use ImageIO to read the image as a BufferedImage, then save it as a JPEG file using an IIOImage instance: ...
2
votes
3answers
874 views

.NET Multipage Tiff with Lossy Compression

I need a way to take several jpgs and convert them into a single multi page Tiff. I have that working using GDI+ however it only works with the compression LZW which is lossless. This means that my ...
0
votes
0answers
91 views

Lossless and lossy Compression examples

I'm interested in the theory behind lossless and lossy compression rather than its applications. Would someone be able to give me and example of both using say, bit strings (so I don't care if its ...
-1
votes
2answers
214 views

Image processing with lossy compression

If we compare image procesing of the losslessly compressed images with the image processing of the lossy compressed images, does the latter provide the results comparable to the former one. I am ...