PHPサンプル
UPDATE:2017年04月01日
画像を作成したい
画像の描写
PHPの「GD」拡張モジュールを使用します。詳細説明はこちら
1 2 3 4 5 6 7 8 9 | <!-- サンプルコード --> <?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'); ImagePNG($image); ?> |
タグ(=記事関連ワード)
日付
投稿日:2012年3月2日
最終更新日:2017年04月01日
最終更新日:2017年04月01日
このカテゴリの他のページ
この記事へのコメント
トラックバックurl
https://wepicks.net/phpsample-image-create/trackback/