Tagged Questions
0
votes
1answer
170 views
Css: display a larger image (better quality) on hover from a seperate file
So im toying with the idea of displaying a larger (better quality image) when a user hovers over my thumbnails.
Not the fullsize version it links to upon click but still a size that shows a bit more ...
1
vote
1answer
115 views
bad quality after rescaling/resizing bitmap
i'm having Quality issue after rescaling bitmap
i load The images from assets so decoding them have to done by Stream
here is my method
InputStream is = getAssets().open(lol.get(zpositions));
...
0
votes
1answer
172 views
RMagick quality does not work for to_blob
I am trying to resize an image and reduce the quality of an image pulled from a database and be able to save it back into the database at the reduced size.
So far, I am trying the following RMagick ...
0
votes
1answer
146 views
How to avoid resized images being blurred in Coldfusion?
I'm resizing and saving some images using Coldfusion8. However, all images, no matter what size are blurred and I don't know how to turn it off.
This is what I'm doing:
<cfimage action="read" ...
1
vote
2answers
682 views
Imagemagick scale and image quality
I'm scaling an image down to 50% of its ratio with the convert command and -scale parameter. The generated image quality is pretty bad. Is there any extra option i can use to get a better result ?
0
votes
1answer
191 views
View tif file using PIL, poor quality when resized
I wish to view tif files in python. I tried using PIL and resizing the image to fit the screen but the quality was poor.
im = image.resize((600, 950), Image.ANTIALIAS)
I converted the tif to jpg ...
1
vote
2answers
1k views
Android - Resizing and adding watermark to photo delivers poor quality image
This is an Android question:
I am taking a jpeg picture taken with the camera and resizing it to 640 x 480 resolution after which I add a watermark to the image. This bitmap is then compressed to a ...
1
vote
3answers
735 views
Image Quality problems using Canvas and canvas.scale(Scale, Scale);
I am having Image Quality problems using Canvas and canvas.scale(Scale, Scale); they look exactly like the following:
android: quality of the images resized in runtime
I believe I have read all the ...
4
votes
3answers
4k views
Resize image in java lose quality
I made this code to resize images with two factors. It works, but the quality of image is very bad after it is resized! Can you help me?
This is the code
public class ImageTest {
private static ...
0
votes
1answer
816 views
Resizing UIImage and saving
I am trying to figure out how I can shrink and save a UIImage, read it back in later, and then convert back to the original size without losing quality. I have managed to do the resizing and saving, ...
12
votes
6answers
11k views
Quality problems when resizing an image at runtime
I have a image file on the disk and I am resizing the file and saving it back to disk as a new image file. For the sake of this question, I am not bringing them into memory in order to display them ...
2
votes
1answer
3k views
Resizing image using as3
I am building a portfolio site which dynamically loads large hi-res images when the user clicks on a thumnail. However I'm having problems maintaining the original image's quality when resizing it to ...