0
votes
0answers
20 views

Compressing a multipage TIFF document in CCITT4 C#

I have a multipage TIFF document and when tried to compress that (CCITT4) I am getting only the last page compressed. Is there anyway that i can compress all the pages of a file directly. Currently I ...
0
votes
3answers
37 views

Is there an algorithm to compress multiple images that are not much different apart?

I have a set of 100+ images that only differ a few pixels. They also don't have many different colors. Is there a way to compress them together by taking advantage of that?
-1
votes
1answer
53 views

PHP Resize Images and Save to Server [duplicate]

I'm resizing and saving multiple images from a URL and was wondering how I can compress these images more as the images that are saving in the 640x320 folder are 400kb which is too big and was ...
0
votes
0answers
25 views

Do compressed images improve canvas performance

I was wondering, does compressing an image (jpg, png) improve the performance of an web application based on html5 canvas, or does it only improve user experience becasue the load time it less.
-2
votes
0answers
61 views

Fractal Image Compression and C - Not Able to View Image

I have two source files enc.c and dec.c which in theory is supposed to take an image file, encode it and then decode it back into an image file with a fractal image compression applied. In this book ...
0
votes
2answers
28 views

Similar images compression

I have bunch of similar images. Those images contains different noise, but edges and histograms are very similar. I need to compress this images loselessly. Is there any algorithm, that can use ...
0
votes
0answers
52 views

Better approaches to shrinking and compressing photographs in .NET? [closed]

There's a LOT of different ways to leverage .NET Bitmap and Metafile classes... and the documentation is sooo terse (and broken out to other things like Graphics), it is easy to miss better options. ...
0
votes
1answer
36 views

Flash imported images have incorrect file sizes

I've just exported a JPG image from Photoshop using the "Save for Web" feature. I got the image down to 58kb. When I import it into Flash and go into it's Properties to change the compression, the ...
0
votes
1answer
85 views

Resolution from Size and pixels of an image

Is there any formula to calculate image resolution, if provided with image size and image height and width. I googled for an answer, but didnt get much of a help. Got one formula, but if i calculate ...
0
votes
1answer
169 views

Compress Image Size without affecting its dimensions asp vb

I am retrieving an image from the database through ashx, the webpage could only be viewed through our intranet, but on some users, the image loading takes really long. So I was thinking maybe ...
0
votes
1answer
75 views

Will imagedestroy() delete from disc

function png2jpg($originalFile, $outputFile, $quality) { $image = imagecreatefrompng($originalFile); imagejpeg($image, $outputFile.'.jpg', $quality); imagedestroy($image); } I'm using ...
0
votes
2answers
252 views

How to compress an image via Javascript in the browser?

TL;DR; Is there a way to compress an image (mostly jpeg, png and gif) directly browser-side, before uploading it ? I'm pretty sure JavaScript can do this, but I can't find a way to achieve it. ...
0
votes
2answers
245 views

How to decompress a string in javascript, compressed in C#? [duplicate]

Possible Duplicate: ZLIB Decompression - Client Side I'll try to be clear and I'm sorry for my bad english. This is the question: In my web application i received a string that represent an ...
1
vote
1answer
339 views

upload compressed image in android

I have to make an android application, in which user can browse image from gallery or from camera.. the image is then conerted to string and then uploaded to the local server. At the server the ...
10
votes
7answers
257 views

Depth Image compression up to a maximum permitted error

Articles on image compression often focus on generating the best possible image quality (PSNR) given a fixed compression ratio. I'm curious about getting the best possible compression ratio given a ...
0
votes
0answers
34 views

Compressing Images GUI

Is there an open source GUI for compressing images? All I've found are CLI's so I'd like to build a simple online UI for compressing images. What programming language do I have to use for this? I ...
0
votes
0answers
36 views

Image compression with iOS

I am building an iOS that got lots of animation in it (made of hundreds of frames). I am just wondering if there's any object or technique that manage image compression without lowering their ...
1
vote
1answer
44 views

Pattern image compression / generation

What is best way to compress losslessly image with certain pattern. I want the smallest possible size, ideal would be something, that can generate pattern like in image (or very close one and then ...
0
votes
1answer
94 views

Why does image compression sometimes reduce the size, and sometimes increase the size?

I'm using Imagick to compress images (JPEG mostly), but the results are quite random. For example, check out these results (aproximate numbers, and all JPEG): 1600kb -> 600kb (saved 1000kb) 1000kb -> ...
0
votes
0answers
79 views

removing jpegs metadata in android

I have to compress an image (jpeg) in android application. While the compressing an image, does it strips out the metadata automatically? If not is there a way remove the metadata? Also is there any ...
2
votes
1answer
56 views

Noise image compression

I have "noise" image... what is the best way to compress this image ? It can be little lossy. Techniques based on DCT and Wavelet are bad for this sort of problem. My idea was to generate some ...
0
votes
1answer
147 views

Losslessly compress image as much as Google's PageSpeed Insights

I'm optimizing my webpage using Google's PageSpeed Insights. It recommends: Losslessly compressing http://mysite.com/.../image.jpg?... could save 33.6KiB (23% reduction). However, when I upload ...
0
votes
1answer
170 views

Compress image, using imageScalr

I am using imagescalr for resizing images, but i also want to compress the images so that the size stays below 32kb(as ie 8 supports base64 strings upto 32kb). I am resizing the image like this Map ...
0
votes
1answer
36 views

Statistical Compression Algorithms of Indexed Images

When we apply statistical compression algorithms such HUFFMAN on indexed images we know that pixels in such images contain index numbers that point to the RGB value in the color lookup table what are ...
1
vote
0answers
105 views

Compress pictures but getting “unknown compression method”

I running a java chatgame client and it's loads the picture before showing it in the chat. I did compress all pictures we've using on our chatgame via Yahoo Smush.it, but after it gets this error in ...
0
votes
2answers
179 views

How do I reduce the quality of an image in byte format on Android?

Using resources from StackOverflow and other helpful websites, I was successful in creating an application that can upload an image taken by the camera application on an Android phone. The only ...
0
votes
0answers
49 views

Inconsistent image rendering/quality iphone

I've recently been doing some tests on image compression with @1x and @2x images for retina device (iphone4) with very inconsistent results. So far I haven't found anyone addressing quite the same ...
2
votes
4answers
373 views

PHP Reducing all image types quality

I am looking for a library that can reduce all image types quality (PNG, GIF and JPEG). I know that I can reduce JPEG using imagejpeg() I also know that I can reduce PNG using imagepng() although this ...
2
votes
1answer
132 views

JPEG Compression Implementation Questions

I'm trying to implement JPEG Compression (or as close to it as I can), but there are some points that I need clarity on with the actual implementation. I will explain what I currently know and where I ...
1
vote
1answer
428 views

PNG file size increase in LSB steganography

I am working on image steganography problem in which i have to hide some text information inside the png image file. After successful steganograpy operation, the resultant image which is generated is ...
0
votes
1answer
109 views

Pseudocode (or code) for main compression algorithms

I'm really interested in image and video compression, but its hard for me to find a main source to start implementing the major algorithms. What I want is just a source of information to begin the ...
2
votes
2answers
302 views

Python image library, how to compress image into desired file size?

I got a requirement to compress any uploaded images less than 500kb in file size, I have searched on google and all I can see is: >>> foo = foo.resize((160,300),Image.ANTIALIAS) ...
0
votes
2answers
156 views

Does compressing an image make the image use less memory? [closed]

This is sort of an architectural/conceptual question regarding how a system (specifically a web browser) handles compressed images. We're dealing with an "image gallery" web app at work that has ...
0
votes
1answer
92 views

Open Source Image Compressor [closed]

I'm looking for an open source image compressor that I can use on a project I'm working on. I want to make it so you can just drag and drop the images onto a target area and it'll start compressing, ...
0
votes
2answers
391 views

Python Compression Run Length encoding

I am trying to learn about run length encoding and I found this challenge online that I cant do. It requires you to write a compression function called compression(strg) that takes a binary string ...
-1
votes
2answers
396 views

How do I compress an image with Run-Length Encoding using C#?

How do I compress an image with Run-Length Encoding using C#? Are there any available libraries to support this? Does Run-Length Encoding only work on bitmapped images? If so, How will I convert ...
0
votes
1answer
107 views

iOS get compressed image from web

So, i have tableview in my iOS app. i need to fill it with some images from web. At first to get those images from web i use: NSData *data = [NSData dataWithContentsOfURL:[NSURL ...
-2
votes
1answer
295 views

Compression image without very high quality image in c#

I do not need a very high quality image. I will sent this image with socket so I need this image small as possible I need a method to compression image private void button1_Click_1(object sender, ...
-1
votes
2answers
956 views

asp.net mvc 4 display many images

I am writing an application to display many pictures (50-60). pls, advise to me how best to implement it. 50-60 queries do not very well for one . At first I did following method: 1. convert pictures ...
-2
votes
3answers
94 views

For best results, should you re-size an image and then compress it or should you compress it and then re-size it?

I'm trying to cut down on a picture size and I was wondering: Is it better to compress the original image first, then re-size it or should I re-size it and then compress the smaller version of it? ...
0
votes
0answers
187 views

Android image upload slow, means of compression?

I am uploading images to a server but the process is awfully slow. What are the things I can do besides compressing images? Can you give me a few pointers as to how to reduce the size and quality of ...
0
votes
2answers
82 views

Bulk optimization of images

My client uploaded about 500 images to the server, none of which are optimized. Most are only 800x600 or so yet are weighing in as 700 KB - 1.5 MB files. Obviously there is a lot of room for ...
0
votes
1answer
328 views

decrease size of pictures in php

I need a php class or API that can decrease size of a picture without decreasing the scale or quality of the picture, like the “fileminimizer suite” software.
0
votes
0answers
52 views

Trouble serializing multiple images in Java

im developing this software in which i have a serializable class that contains an array of ImageIcons that i need to save into a single file, the serializing does work but the size of the file is like ...
2
votes
3answers
800 views

Which is the best PHP method to reduce the image size without losing quality

I am trying to develop an image based web site. I am really confused about the image type and compression techniques. Please advice me the best way to compress image sizes.
0
votes
2answers
805 views

Compress Images in Python (No Archive)

I'm writing a Python script that deals with images. Is there a module that can compress an image without putting it into an archive, and decompress it back? (e.g. A 1MB image is now 0.8MB after ...
2
votes
2answers
177 views

Why do image compression algorithms process the image by sub-blocks?

For instance, consider the DFT or DCT. Precisely, what would be the differences between an image transformed by sub-blocks, and an image transformed whole? Is the resulting file size smaller? Is the ...
0
votes
2answers
484 views

How to Compress the IMAGE size in Titanium Appcelerator

i am using titanium 2.0.1, i need to compress the size of a image taken by camera and then upload it. Right now the image size is 800kb+, which takes a lot of time to upload. i need to compress the ...
1
vote
0answers
52 views

How to compress sequential images eg from 5 second video?

I have 50 images from a 5 seconds video (10 fps). How can I compress these images using spatial as well as temporal motion compensation into a single binary file? And later I want to recreate all the ...
4
votes
2answers
149 views

Saveable image library with compression?

this may be impossible, or rather, not very popular, but I was wondering how I'd go about creating a data file for images, that would actually compress them? Say I had 200MB total of image files, is ...

1 2 3