我在 kohana 2.3 中使用 php 生成了条形码。
我只能查看条形码图像。
我无法将该图像存储到一个文件夹中。
我用下面的代码
$coupon_code = text::random($type = 'alnum', $length = 6); $img = $this->code128BarCode($coupon_code);
ob_start();
imagepng($img);
//Get the image from the output buffer
$output_img = ob_get_clean();
echo '<img type="file" name="barcode" style="height:30px;width:100px;" src="data:image/png;base64,' . base64_encode($output_img) . '" />'; exit;
帮我将该图像存储到文件夹中。