CI 묻고 답하기

제목 이미지 썸네일 생성과 워터마크 문의 입니다.
글쓴이 경상도곰남 작성시각 2013/12/19 11:26:55
댓글 : 2 추천 : 0 스크랩 : 0 조회수 : 15054   RSS

여러개의 이미지를 첨부할 때 이미지 마다 워터마크를 찍고 썸네일을 생성 할려고 합니다.
첫번째 이미지 경우에는 원본 이미지 파일  썸네일 파일 생성과 워터마크가 찍힌 파일이 제대로 생성이 됩니다.

그런데 두번째 첨부파일 부터는 썸네일 파일 생성이 안되며 원본파일이 리사이징이 되어 썸네일 크기로 수정이 됩니다.
파일명은 원본파일명으로 되어 있구요. 워터마크 파일은 생성은 되나 원본파일 크기가 수정이 되니 의미가 없겠죠..

워터파크 옵션에서 $config_wmark['create_thumb'] = FALSE;을  true로 주면 원하는 되로 파일이 생성이 되는데
파일명(IMG_wmark_thumb.jpg)이 원하는식이 아니라서요

img.jpg라는 이미지를 업로드 하면 원본 - img.jpg, 썸네일 - img_thumb.jpg,  워터마크 - img_wmark.jpg 이렇게 파일이 생성이 되었으면 하거든요..

어떻게 수정을 해야 할지 모르겠습니다.

답변 좀 부탁 드리겠습니다.
   

    //upload 설정
   $this->load->library('upload');
   $this->load->library('image_lib');


   $config = array(
    'upload_path' => FILE_UPLOAD_PATH . 'car/'.$car_no."/",
    'allowed_types' => 'gif|jpg|png',
    'encrypt_name' => TRUE,
    'max_size' => '10240'
   );

   $cnt = 0;
 
   foreach($_FILES as $field => $file)
   { 
    if(!empty($file['name']))
    {
     $this->upload->initialize($config);
     

     if(!$this->upload->do_upload($field))
     { 
      $errors = $this->upload->display_errors();
      echo $errors;
      exit;
     }
     else
     {
      $data = $this->upload->data();

      if($field != "accident_filenm")
      {
       
       if($data["is_image"] == 1 && $data["image_width"] > 170)
       {      
        $config_thumb = array();

        $config_thumb['image_library'] = 'gd2';
        $config_thumb['source_image'] = $data['full_path'];
        $config_thumb['create_thumb'] = TRUE;
        $config_thumb['maintain_ratio'] = TRUE;
        $config_thumb['master_dim'] = 'width';
        $config_thumb['quality'] = 75;
        $config_thumb['width'] = 170;
        $config_thumb['height'] = 130;

        $this->image_lib->initialize($config_thumb);
        
        //$this->load->library('image_lib', $config_thumb);

        $this->image_lib->resize();
        $this->image_lib->clear(); 

        $data['thumb_filenm'] = $data["raw_name"] . "_thumb" . $data["file_ext"];
        $data['ci_cd'] = $ci_cd[$cnt];       
        
       }
       else
       {
        $data['thumb_filenm'] = "";
       }
       
       
       $config_wmark = array();
       $config_wmark['image_library'] = 'gd2';       
       $config_wmark['source_image']  =  $data['full_path'];
       $config_wmark['wm_overlay_path'] = WEB_PUBLIC_PATH .'img/watermark.png';
       $config_wmark['new_image'] = $data["raw_name"] . "_wmark" . $data["file_ext"];
       $config_wmark['wm_type'] = 'overlay';
       $config_wmark['wm_opacity'] = '10';
       $config_wmark['wm_vrt_alignment'] = 'bottom';
       $config_wmark['wm_hor_alignment'] = 'right';
       $config_wmark['create_thumb'] = FALSE;

       $this->image_lib->initialize($config_wmark);        
       $this->image_lib->watermark();
       $this->image_lib->clear(); 

       $data['wmark_filenm'] = $data["raw_name"] . "_wmark" . $data["file_ext"];

       $upload_data[] = $data; 

      }
     }
    } 
    $cnt++;
   }
 다음글 CI에서 mysql 함수사용 (2)
 이전글 컨트롤러에서 컨트롤러 호출 (2)

댓글

taegon / 2013/12/19 17:51:24 / 추천 0
$config_wmark['new_image'] = $data["raw_name"] . "_wmark" $data["file_ext"];

에서 경로를 주시고 생성해 보시죠?

저 소스대로 한다면 워터마크 새겨진 이미지 생성이 index.php 경로에 생성되셨을 것 같은데요?..

경상도곰남 / 2013/12/20 11:22:44 / 추천 0

답변 감사 합니다.