这几天也是年底.忙着各种项目的收尾阶段.自己也是吧项目进行了一个收尾工作.
上午遇到了一个需求.就是将小程序生成的码拼接个文字.小程序生成二维码也好.小程序码也罢.这些之前都有接触过.三下五除二就生成了.接下来的工作也是需要进行文字的拼接.
/**
* @param $background 图片路径
* @param $text 文字
* @param $filename 保存的路径
* 二维码加文字
*/
public function mark_photo($background, $text, $filename)
{
$image = imagecreatefrompng($background);
$font = "fonts/PingFangBold_0.ttf";
$color = imagecolorallocate($image, 0, 0, 0); // 文字颜色
imagettftext($image, 14, 0, 30, 15, $color, $font, 'NO.'.$text); // 创建文字
header("Content-Type:image/png");
imagepng($image, $filename);//保存新生成的
}
之前用Qrcode类库生成的二维码.将图片传入也是成功拼接.这次也是轻车熟路.谁知半路翻车.说我生成的图片不是png格式的图片.(小程序生成的二维码小程序码)
? 看着后缀名png格式的我落下了眼泪.难道是一个披着羊皮的狼?利用函数getimagesize获取一下图片的信息.这张图片是个jpng格式的图片.所以这里也是需要将jpng格式的图片转换为png格式的图片才行了.
调用写好的函数 这个函数需要去开启拓展 gd
和 exif
/**
* 图片格式转换
* @param string $image_path 文件路径或url
* @param string $to_ext 待转格式,支持png,gif,jpeg,wbmp,webp,xbm
* @param null|string $save_path 存储路径,null则返回二进制内容,string则返回true|false
* @return boolean|string $save_path是null则返回二进制内容,是string则返回true|false
* @throws Exception
*/
function transform_image($image_path, $to_ext = 'png', $save_path = null)
{
if (! in_array($to_ext, ['png', 'gif', 'jpeg', 'wbmp', 'webp', 'xbm'])) {
throw new \Exception('unsupport transform image to ' . $to_ext);
}
switch (exif_imagetype($image_path)) {
case IMAGETYPE_GIF :
$img = imagecreatefromgif($image_path);
break;
case IMAGETYPE_JPEG :
case IMAGETYPE_JPEG2000:
$img = imagecreatefromjpeg($image_path);
break;
case IMAGETYPE_PNG:
$img = imagecreatefrompng($image_path);
break;
case IMAGETYPE_BMP:
case IMAGETYPE_WBMP:
$img = imagecreatefromwbmp($image_path);
break;
case IMAGETYPE_XBM:
$img = imagecreatefromxbm($image_path);
break;
case IMAGETYPE_WEBP: //(从 PHP 7.1.0 开始支持)
$img = imagecreatefromwebp($image_path);
break;
default :
throw new \Exception('Invalid image type');
}
$function = 'image'.$to_ext;
if ($save_path) {
return $function($img, $save_path);
} else {
$tmp = __DIR__.'/'.uniqid().'.'.$to_ext;
if ($function($img, $tmp)) {
$content = file_get_contents($tmp);
unlink($tmp);
return $content;
} else {
unlink($tmp);
throw new \Exception('the file '.$tmp.' can not write');
}
}
}
这样也是将jpng格式的图片转换为了png格式的图片.在调用上面的拼接函数.就可以了. ?