前言
今天在开发中使用GD库的内容,绘制文本时,绘制出来的文本颜色总是被当背景颜色使用,文字也不出来,经过反复测试,总算发现问题
解决思路
在绘制文本或图片前,给予背景底色,之后设置文本颜色即可!
案例代码
public function __construct(array $textArray,array $lineArray, $width, $height,$line)
{
$this->textArray = $textArray;
$this->width = $width;
$this->height = $height;
$this->line = $line;
$this->lineArray = $lineArray;
$this->createImageCanvas();
$this->loadBackgroundColor();
$this->createComponent();
}
//底色
private function loadBackgroundColor(){
imagecolorallocate($this->im, 255, 255, 255);
}
private function createTextComponent($array){
foreach($array as $key=> $value){
$text = $value->text;
$color_red = 0;
$color_blue = 0;
$color_green = 0;
$textColor = imagecolorallocate($this->im, $color_red, $color_green, $color_blue);
$x = $value->x;
$y = $value->y;
$fontSize = $value->fontSize;
$fontPath = "";
$align = $value->align;
$this->drawText($text,$textColor,$x,$y,$fontSize,$fontPath,$align);
}
}
结束语
Java踩坑笔记 —— PHP踩坑笔记 —— 关于使用GD库绘制文字颜色不显示的问题
- 如果对你有帮助的话可以给我点赞收藏,十分感谢
- 致力做优、好、细、精学习笔记分享给大家
- 可以转载 需标明 出处 本文链接。
- 笔者一个开源项目:我的世界开服助手 希望大家可以点一下star哦
感谢你的观看。