Search found 3 matches

by Morty
2011-02-05T03:57:31-07:00
Forum: Users
Topic: Magick++ Resize Image
Replies: 3
Views: 8440

Re: Magick++ Resize Image

I found the following works as well:

Code: Select all

Geometry newSize = Geometry(720, 480);
// Resize without preserving Aspect Ratio
newSize.aspect(true);
background.resize(newSize);
Hope this helps someone else.
by Morty
2011-02-05T02:23:24-07:00
Forum: Users
Topic: Magick++ Resize Image
Replies: 3
Views: 8440

Re: Magick++ Resize Image

Thanks,

It's so obvious, now. Your help is much appreciated.

All the best,

Jim
by Morty
2011-02-04T18:14:13-07:00
Forum: Users
Topic: Magick++ Resize Image
Replies: 3
Views: 8440

Magick++ Resize Image

Hi there, I hope someone can help me. I am using the Magick++ API and want to resize a 1920x1080 image to 720x480. I can do this with the command line no problem, but can't find a way to achieve this with Magick++. My images keep coming out as 720 x 405. I have tried : Geometry newSize = Geometry ...