1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <?php //程式名稱:gdpngtext.php header( "Content-type: image/png" ); $im = imagecreatefrompng( "test.png" ); //圖片檔案 $fontsize = 14; //文字大小 $angle = 0; //文字角度 $x = 25; //文字X座標 $y = 80; //文字Y座標 $color = imagecolorallocate( $im , 255, 255, 255); //文字顏色 $font = "fireflysung.ttf" ; //文字TTF字型 $string = "國立虎尾科技大學" ; //文字 ImageTTFText( $im , $fontsize , $angle , $x , $y , $color , $font , $string ); //輸出文字 ImagePng( $im ); //輸出圖形 ImageDestroy( $im ); //結束圖形編輯 ?> |
2010年5月6日 星期四
GDpng程式
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言