網(wǎng)站的布局用到了類似慕課網(wǎng)課程列表的風(fēng)格,每一個(gè)課程是一個(gè)banner圖,圖下面是標(biāo)題加簡(jiǎn)介。因?yàn)檎n程的數(shù)量較大沒(méi)有為所有的課程設(shè)計(jì)專門的banner,所以需要按照一定的規(guī)則,來(lái)自己生成圖片(本打算用div布局來(lái)解決,但div+img在響應(yīng)式布局中不是很好控制)。
class GenerateRandomImage
{
/** @var integer 圖片寬度 */
public $imgWidth = 272;
/** @var integer 圖片高度 */
public $imgHeight = 162;
/** @var 根據(jù)type不同來(lái)生成不同的背景顏色,目前留個(gè)type分別為藍(lán)色、紫色、黃色、綠色、灰色、土黃色 */
public $type = '';
/** @var 圖片上要顯示的文字 */
public $text = '';
/** @var integer 圖片上文字的字體大小 */
public $fontSize = 16;
public function __construct($type, $text)
{
$this->type = $type;
$this->text = $text;
}
/**
* 創(chuàng)建生成隨機(jī)圖片
* @author bignerd
* @since 2017-03-21T14:49:41+0800
*/
public function createImg()
{
/** @var 創(chuàng)建一個(gè)指定圖片大小的空調(diào)色板
$image = imagecreate($this->imgWidth, $this->imgHeight);
$rgb = $this->getBackground($this->type);
/** @var 為圖片創(chuàng)建一個(gè)背景色 */
$backgroundColor = imagecolorallocate($image, $rgb['r'], $rgb['g'], $rgb['b']);
/** @var 創(chuàng)建文字白色字體 */
$textColor = imagecolorallocate($image, 255, 255, 255);
/** @var 字體文件路徑 */
$font = $_SERVER['DOCUMENT_ROOT'].'/public/font/simhei.ttf';
$x = 18;//文字起始位置x坐標(biāo)
$y = 50;//文字起始位置y坐標(biāo)
/** 文字寫入圖片 */
$angle = 0;//角度0
imagettftext($image, $this->fontSize, $angle, $x, $y, $textColor, $font, $this->text);
/** @var 水印圖片路徑 **/
$waterImgPath = $this->randWaterImage();
/** @var 獲取圖片信息,返回值$waterInfo[2] 為圖片類型常量 */
$waterInfo = getimagesize($waterImgPath);
/** @var 將圖片類型常量轉(zhuǎn)換為真正的類型,如png */
$waterType = image_type_to_extension($waterInfo[2], false);//獲取文件類型
$createImageFunc = 'imagecreatefrom'.$waterType;
/** @var 創(chuàng)建一個(gè)水印圖片的副本 $createImageFunc 為根據(jù)圖片類型來(lái)動(dòng)態(tài)生成預(yù)調(diào)用的創(chuàng)建圖片函數(shù)*/
$mask = $createImageFunc($waterImgPath);
$posX = $this->imgWidth - $waterInfo[0];//水印圖片,在目標(biāo)圖片中的位置的x坐標(biāo)
$posY = $this->imgHeight - $waterInfo[1];//水印圖片,在目標(biāo)圖片中的位置的y坐標(biāo)
/** http請(qǐng)求響應(yīng)類型設(shè)置為 image/png 以便直接顯示為圖片 */
header("Content-Type:image/png");
/** 水印圖片復(fù)制到創(chuàng)建的image */
imagecopy($image, $mask, $posX, $posY, 0, 0, $waterInfo[0], $waterInfo[1]);
imagepng($image);//輸入圖片到瀏覽器或者文件
imagedestroy($image);//銷毀圖片
}
/**
* 圖片背景顏色的rgb值
* @author bignerd
* @since 2017-03-21T14:50:16+0800
*/
public function getBackground()
{
$background = [
'1'=>['r'=>0, 'g'=>160,'b'=>233],
'2'=>['r'=>198,'g'=>0, 'b'=>110],
'3'=>['r'=>237,'g'=>109,'b'=>0],
'4'=>['r'=>33, 'g'=>148,'b'=>75],
'5'=>['r'=>63, 'g'=>58, 'b'=>57],
'6'=>['r'=>202,'g'=>162,'b'=>101],
];
return $background[$this->type];
}
/**
* 隨機(jī)水印圖片路徑
* @author bignerd
* @since 2017-03-21T14:51:00+0800
* @return 路徑
*/
public function randWaterImage()
{
$folder = [
'1'=>'product','2'=>'team','3'=>'architecture','4'=>'developer','5'=>'test','6'=>'engineer'
];
$targetFolder = $_SERVER['DOCUMENT_ROOT'].'/public/images/role/'.$folder[$this->type].'/'.rand(1,38).'.png';
return $targetFolder;
}
}
$image = new GenerateRandomImage(1,"扛得住的MySql數(shù)據(jù)架構(gòu)");
$image->createImg();
這樣我們就可以直接在頁(yè)面中使用 img src="http://xxx.com/GenerateRandomImage.php" />來(lái)直接顯示圖片。
注意:過(guò)程中遇到過(guò)一個(gè)問(wèn)題:如果水印圖片是透明的png圖片,那將水印圖片復(fù)制到image中時(shí),會(huì)顯示為白色背景,與我們?cè)O(shè)定 的image背景無(wú)法透明融合,所以對(duì)隨機(jī)的水印圖片也需要做同樣的顏色處理。
這個(gè)小示例用簡(jiǎn)單的步驟來(lái)生成一張圖片,直接顯示在瀏覽器,也可以給imagepng加第二參數(shù),也就是路徑,以保存圖片。所以學(xué)會(huì)示例中的幾個(gè)GD庫(kù)中的方法,就可以實(shí)現(xiàn)創(chuàng)建圖片、為圖片添加文字水印、或圖片水印。