2011-01-01 3 views

답변

0

내가 "IPTC"https://github.com/agutoli/Image_Iptc

require 'Iptc.php'; 

$iptc = new Iptc('logo_php.jpg'); 
$iptc->set(Iptc::KEYWORDS,array(
    'keyword1','keyword2' 
)); 
$iptc->write(); 

포옹을 처리하기 위해 만든이 클래스를 다음! 여기

0

이 클래스는, 이미지의 IPTC을 처리 도움이된다면 살펴보고 매우 효율적입니다 ...

https://github.com/agutoli/Image_Iptc

$this->_iptc = new Iptc('../logo_php.jpg'); 
$this->_iptc->set(Iptc::OBJECT_NAME, 'test'); 
$this->_iptc->write(); 
관련 문제