Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はphpで空の白い画像を作成しようとしています、これは私のコードです
$bg = imagecreatetruecolor(120, 20); imagejpeg($bg,"test/myimg.jpg",100);
しかし、これは黒の画像を作成し、白を作成したいのですが、たとえば白の色などの画像の設定方法を教えてください。
<?php $img = imagecreatetruecolor(120, 20); $bg = imagecolorallocate ( $img, 255, 255, 255 ); imagefilledrectangle($img,0,0,120,20,$bg); imagejpeg($img,"myimg.jpg",100); ?>