Imagickで画像を丸く切り取るには、以下のコードを実行します。 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja" dir="ltr"> <head> <title>sample380</title> </head> <body> <?php $im = new Imagick('sf.jpg'); $width = $im->getImageWidth(); /* 読み込んだイメージと同じ大きさのマスク用画像を作成 */ $height = $im->getImageHeight();