Enlarge with good results
Posted: 2012-05-06T16:38:34-07:00
Good day everyone
I try to enlarge a picture like this:
The results from those 2 commands look like the same unlike written http://www.imagemagick.org/Usage/resize ... ive-resize.
Originalimage:
http://www.flickr.com/photos/floridapfe ... hotostream
Resized with a online service which results in very good quality. http://www.pixer.us
Resized with imagemagick
if you go eg in the left down corner you can see that the picture consists out of 60 x 60 pixel sized quadres.
Which different way would you suggest without increasing processing power compared to the initial given commands?
Thanks !
I try to enlarge a picture like this:
Code: Select all
$width = $width * 4;
$height = $height * 4;
exec("convert src_images/monkeys.png -adaptive-resize ".$width."x".$height." resized_adaptive.png");
exec("convert src_images/monkeys.png -resize ".$width."x".$height." resized.png");
Originalimage:
http://www.flickr.com/photos/floridapfe ... hotostream
Resized with a online service which results in very good quality. http://www.pixer.us
Resized with imagemagick
if you go eg in the left down corner you can see that the picture consists out of 60 x 60 pixel sized quadres.
Which different way would you suggest without increasing processing power compared to the initial given commands?
Thanks !