圖像我剛纔寫的代碼來生成一個圖像生成並保存與PHP
<?php
$canvas = imagecreatetruecolor(800, 350);
$pink = imagecolorallocate($canvas, 255, 105, 180);
$white = imagecolorallocate($canvas, 255, 255, 255);
$green = imagecolorallocate($canvas, 132, 135, 28);
imagefill($canvas, 0, 0, $white); // BACKGROUND
function drawlinebox($x1, $y1, $x2, $y2, $height, $color){
global $canvas;
imagesetthickness ($canvas, 1);
for ($i=1; $i < $height; $i++){
imageline($canvas, $x1, $y1, $x2, $y2, $color);
$y1++; $y2++;
}
}
drawlinebox(20, 20, 780, 300, 30, $green);
drawlinebox(20, 300, 780, 20, 30, $pink);
// Output and free from memory
header('Content-Type: image/png');
imagepng($canvas, NULL, 9);
imagedestroy($canvas);
?>
但我也希望此圖片在服務器上自動保存。 認爲它是一個cron工作。創建圖像,然後將圖像保存在服務器上供以後使用,並將保存的圖像位置插入到數據庫中。
「皇冠工作」是什麼意思? – bejonbee
對不起,我的意思是寫cron工作。 – Ameer