php 畫圖片

<?php
    
    // 使用php操做gd庫作圖
    // 1. 建立一個畫布資源
    $im = imagecreatetruecolor(80, 40);

    // 2. 畫內容
    // 2.1 先位畫布準備顏色
    $string_color = imagecolorallocate($im, 255, 255, 255);
    // 2.2 往畫布上寫入字符串
    imagestring($im, 5, 15, 14, 'hello', $string_color);

    // 3. 設置響應頭
    header('Content-type:image/png');

    // 4. 輸出圖片
    //imagepng($im);
    imagepng($im, 'test.png');

    // 5. 釋放資源
    imagedestroy($im);

?php>
相關文章
相關標籤/搜索