how square an image?
Posted: 2007-05-29T07:07:05-07:00
How can I share an image?
with image.scale ?
thank
with image.scale ?
thank
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://imagemagick.com/discourse-server/
https://imagemagick.com/discourse-server/viewtopic.php?t=8886
Code: Select all
image.read( "pippo.jpg" );
Geometry geom(64,64,0,0);
geom.aspect(true);
image.sample(geom);
image.write( "antonio.jpg" );