2013-06-25 1 views
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; 

도움 아래 나 폴더에 해당 이미지를 저장하는 것을 사용했다.

답변

0

올바른 방법으로 이미지를 저장해야 이미지를 저장할 수 있습니다. 마찬가지로

imagepng($img, $saved_file_path); 

자세한 내용은 imagepng tutorial을 참조하십시오.

+0

매우 감사합니다. kuldeep.kamboj .. 그 좋은 일 ..... –