PHPサンプル
UPDATE:2017年04月01日
画像を作成して回転させたい
画像の回転
PHPの「GD」拡張モジュールを使用します。詳細説明はこちら
1 2 3 4 5 6 7 8 9 10 | <!-- サンプルコード --> <?php $image = ImageCreate(300,300); $GrayArea = ImageColorAllocate($image,0xAA,0xAA,0xAA); $blackArea = ImageColorAllocate($image,0x00,0x00,0x00); ImageFilledRectangle($image,50,50,250,250,$blackArea); header('Content-Type: image/png'); $imageRotated = imagerotate($image, 45, 1); ImagePNG($imageRotated); ?> |
タグ(=記事関連ワード)
日付
投稿日:2012年3月2日
最終更新日:2017年04月01日
最終更新日:2017年04月01日
このカテゴリの他のページ
この記事へのコメント
トラックバックurl
https://wepicks.net/phpsample-image-roll/trackback/