欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

用PHP代碼在網(wǎng)頁(yè)上生成圖片

 更新時(shí)間:2015年07月01日 11:37:26   投稿:hebedich  
這篇文章主要介紹了用PHP代碼在網(wǎng)頁(yè)上生成圖片的方法和實(shí)例,十分的簡(jiǎn)單實(shí)用,有需要的小伙伴可以參考下。

代碼很簡(jiǎn)單,這里就不多廢話了,

<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2015/6/29
 * Time: 21:25
 */
header('Content-type:image/png');//設(shè)置mime type
$img = imagecreate(400,300);//設(shè)置圖片像素
imagecolorallocate($img,255,255,255);//給圖片上色
imageellipse($img,200,200,50,50,imagecolorallocate($img,255,0,0));//在圖片上繪制圖形,中心點(diǎn)200,200;寬高50,50
imagepng($img);//設(shè)置圖片格式為PNG

效果如下:

以上所述就是本文的全部?jī)?nèi)容了,希望大家能夠喜歡。

相關(guān)文章

最新評(píng)論