php图片流转base64显示

代码语言:php

所属分类:图片处理

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<?php

$img = imagecreatetruecolor(200, 200);
$color1 = imagecolorallocate($img, 50, 50, 50); //给图片上色
imagefill($img, 0, 0, $color1); //区域填充颜色

ob_start();
imagejpeg($img);
imagepng($im);
$fileContent = ob_get_contents();
ob_end_clean();
$img_base64 = &#.........完整代码请登录后点击上方下载按钮下载查看

网友评论0