我想將 $original 圖像粘貼到 $fondo 圖像的中心,我編寫以下代碼:<?phpheader('Content-Type: image/png');// The file$fondo = imagecreate(1000,1000); // Create 1000x1000 image$color_fondo = imagecolorallocate($fondo,197,237,206); // Set color of background$original = imagecreatefromstring(file_get_contents('test.jpg')); // Load image$wb = imagesx($fondo); // Bakground width$wi = imagesx($original); // Image width$hb = imagesy($fondo);$hi = imagesy($original);//Want to center in the middle of the image, so calc ($wb/2-$wi/2)imagecopy($fondo,$original,($wb/2-$wi/2),($hb/2-$hi/2),0,0,imagesx($original),imagesy($original));imagepng($fondo);我得到的結果是這樣的:正如您所看到的,青色正在影響原始圖像:關于我錯了什么有什么想法嗎?謝謝你!
- 0 回答
- 0 關注
- 130 瀏覽
添加回答
舉報
0/150
提交
取消