예제 #1
0
파일: Image.php 프로젝트: Kulkow/mainsite
 public function flip($direction)
 {
     $image = Image::factory($this->_server_path('original'));
     $image->flip($direction);
     $image->save($this->_server_path('original'));
     $this->timestamp = time();
     return $this->resize()->update();
 }