如何将随机生成器代码图像保存到文件夹

时间:2013-06-25 07:48:16

标签: php kohana barcode

我在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;

帮我将该图片存储到文件夹中。

1 个答案:

答案 0 :(得分:0)

您必须以正确的方式使用imagepng将图像保存在某处。像

imagepng($img, $saved_file_path);

有关详情,请参阅imagepng tutorial