0

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

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

4

1 回答 1

0

您必须以正确的方式使用 imagepng 将图像保存在某个位置。喜欢

imagepng($img, $saved_file_path);

有关更多信息,请参见imagepng 教程

于 2013-06-25T07:57:42.523 回答