php function_exists判斷函數可用代碼

來源:互聯網
上載者:User
內容說明:本函數用來建立一張 gif 格式圖形,參數 im 為使用 imagecreate() 所建立的圖片代碼,參數 filename 可省略,若無本參數 filename,則會將圖片指接送到瀏覽器端,記得在送出圖片之前要先送出使用 content-type: image/gif 的標題字串 (header) 到瀏覽器端,以順利傳輸圖片。若要使用透明背景的 gif 圖,也就是 gif89a 的格式,需要先使用 imagecolortransparent() 配置透明背景.

$values=array(

40,50, //第一個頂點的座標

20,240, //第一個頂點的座標

60,60, //第一個頂點的座標

240,20, //第一個頂點的座標

50,40, //第一個頂點的座標

10,10 //第一個頂點的座標

);

$im=imagecreatetruecolor(250,250); //建立映像

$bg=imagecolorallocate($im,200,200,200); //定義灰色背景

$yellow=imagecolorallocate($im,255,255,0); //定義黃色前景

imagefilledpolygon($im,$values,6,$yellow); //畫出多邊形

header('content-type: image/png');

//判斷gif函數是否存在

if(function_exists("imagegif"))

{

//如果存在,以gif格式輸出

header("content-type: image/gif");

imagegif($im);

}

//判斷jpeg函數是否存在

elseif(function_exists("imagejpeg"))

{

//如果存在,以jpg格式輸出

header("content-type: image/jpeg");

imagejpeg($im, "", 0.5);

}

//判斷png函數是否存在

elseif (function_exists("imagepng"))

{

//如果存在,以png格式輸出

header("content-type: image/png");

imagepng($im);

}

//判斷wbmp函數是否存在

elseif (function_exists("imagewbmp"))

{//開原始碼phpfensi.com

//如果存在,以bmp格式輸出

header("content-type: image/vnd.wap.wbmp");

/*

header() 函數向用戶端發送原始的 http 前序,認識到一點很重要,即必須在任何實際的輸出被發送之前調用 header() 函數(在 php 4 以及更高的版本中,您可以使用輸出緩衝來解決此問題):

*/

imagewbmp($im);

}

else

{

//如果都不支援,輸出內容

die("no image support in this php server");

}

/*

該代碼執行結果與代碼22-25類似,所不同的是,該代碼判斷多種映像支援,然後用相應的格式輸出映像.

文法:int imagegif(int im, string [filename]);

傳回值:整數,函數種類:圖形處理

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.