Tagged Questions
2
votes
1answer
116 views
How to improve image quality using im4java?
I'm using im4java library for image processing operations with ImageMagick.
The code I'm using looks like:
ImageCommand imageCommand = new ConvertCmd();
...
0
votes
1answer
159 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 ...
1
vote
2answers
607 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 ?
1
vote
1answer
904 views
set image quality in Imagemagick [closed]
I to set the quality of the img but it dosent work.
$image = 'the path to the img';
/*** a new imagick object ***/
$im = new Imagick();
/*** ping the image ***/
...
0
votes
1answer
1k views
resize png image using rmagick without losing quality
I need to resize an 200*200 image to 60*60 in rmagick without losing image quality. Currently I am doing following for a png image
img = Magick::Image.from_blob(params[:file].read)[0]
...
2
votes
1answer
2k views
Setting quality with imagemagick?
I use the following code to create a thumbnail on the site:
$small_image = new Imagick($large_path."/".$pic['image']);
$small_image->thumbnailImage(100, 0);
...