我想使用以下代码将 img 的大小调整为 90x90,但 img 已上传但未调整大小..
$image = 'the path to the img';
/*** a new imagick object ***/
$im = new Imagick();
/*** ping the image ***/
$im->pingImage($image);
/*** read the image into the object ***/
$im->readImage( $image );
$im->thumbnailImage( 90, null );
$im->setImageFormat( "png" );
/*** write image to disk ***/
$im->writeImage( "tmp/spork.png" );
$im->destroy();
我将代码更改为$im->cropThumbnailImage(90,90);
但仍然有效。