JPEGファイル内のメタデータを追加および変更できるWebサイトを作成しようとしています。
かなり簡単な方法でexifデータを書き込むことができる方法はありますか?.
私は1つか2つの例を見てきましたが、それらは私が与えられた時間枠で把握するには複雑すぎます。
私はIPTCを知っており、メタデータをJPEGファイルに追加できることを知っています。しかし、これを行う正しい方法は何でしょうか?
EXIFやIPTC、その他のライブラリやPHP)の機能を使用して、メタデータをJPEGに追加する方法について誰かが助けてくれるとしたら、私は非常に感謝しています。
更新:
まず、 dbers による返信に感謝します。
コードを確認しました。 JPGにデフォルトのタグを追加することができました。
コードのごく一部が何を意味するのか、私はまだ少し混乱しています。
たとえば、php関数でexifデータを書き込む:
function iptc_make_tag($rec, $data, $value)
{
$length = strlen($value);
$retval = chr(0x1C) . chr($rec) . chr($data);
...
}
関数変数に出くわしたことがありません。$rec
、$data
、および$value
が定義されていない場合、それらはどのように参照されますか。それともiptc_make_tag
から取得したのですか?
$rec
と$value
をエコーアウトしましたが、画面に値が表示されません。
if(isset($info['APP13']))
APP13の意味がわかりません。$info
をエコーアウトしようとすると、テーブルで$info
をエコーアウトすると次のようになります。
'2#120' => 'テストイメージ'、 '2#116' => 'Copyright 2008-2009、The PHP Group'
私はあなたが解決策を見つけたことを知っています、しかしこれは同じことを探している他の誰かを助けるかもしれません!
見つけたクラスを変更しました ここ (ありがとう debers )。
そして、IPTCタグへのすべての参照はこれから読み取ることができます [〜#〜] pdf [〜#〜]
そして今、コード(PHP> = 5.4):
<?
define("IPTC_OBJECT_NAME", "005");
define("IPTC_EDIT_STATUS", "007");
define("IPTC_PRIORITY", "010");
define("IPTC_CATEGORY", "015");
define("IPTC_SUPPLEMENTAL_CATEGORY", "020");
define("IPTC_FIXTURE_IDENTIFIER", "022");
define("IPTC_KEYWORDS", "025");
define("IPTC_RELEASE_DATE", "030");
define("IPTC_RELEASE_TIME", "035");
define("IPTC_SPECIAL_INSTRUCTIONS", "040");
define("IPTC_REFERENCE_SERVICE", "045");
define("IPTC_REFERENCE_DATE", "047");
define("IPTC_REFERENCE_NUMBER", "050");
define("IPTC_CREATED_DATE", "055");
define("IPTC_CREATED_TIME", "060");
define("IPTC_ORIGINATING_PROGRAM", "065");
define("IPTC_PROGRAM_VERSION", "070");
define("IPTC_OBJECT_CYCLE", "075");
define("IPTC_BYLINE", "080");
define("IPTC_BYLINE_TITLE", "085");
define("IPTC_CITY", "090");
define("IPTC_PROVINCE_STATE", "095");
define("IPTC_COUNTRY_CODE", "100");
define("IPTC_COUNTRY", "101");
define("IPTC_ORIGINAL_TRANSMISSION_REFERENCE", "103");
define("IPTC_HEADLINE", "105");
define("IPTC_CREDIT", "110");
define("IPTC_SOURCE", "115");
define("IPTC_COPYRIGHT_STRING", "116");
define("IPTC_CAPTION", "120");
define("IPTC_LOCAL_CAPTION", "121");
class IPTC
{
var $meta = [];
var $file = null;
function __construct($filename)
{
$info = null;
$size = getimagesize($filename, $info);
if(isset($info["APP13"])) $this->meta = iptcparse($info["APP13"]);
$this->file = $filename;
}
function getValue($tag)
{
return isset($this->meta["2#$tag"]) ? $this->meta["2#$tag"][0] : "";
}
function setValue($tag, $data)
{
$this->meta["2#$tag"] = [$data];
$this->write();
}
private function write()
{
$mode = 0;
$content = iptcembed($this->binary(), $this->file, $mode);
$filename = $this->file;
if(file_exists($this->file)) unlink($this->file);
$fp = fopen($this->file, "w");
fwrite($fp, $content);
fclose($fp);
}
private function binary()
{
$data = "";
foreach(array_keys($this->meta) as $key)
{
$tag = str_replace("2#", "", $key);
$data .= $this->iptc_maketag(2, $tag, $this->meta[$key][0]);
}
return $data;
}
function iptc_maketag($rec, $data, $value)
{
$length = strlen($value);
$retval = chr(0x1C) . chr($rec) . chr($data);
if($length < 0x8000)
{
$retval .= chr($length >> 8) . chr($length & 0xFF);
}
else
{
$retval .= chr(0x80) .
chr(0x04) .
chr(($length >> 24) & 0xFF) .
chr(($length >> 16) & 0xFF) .
chr(($length >> 8) & 0xFF) .
chr($length & 0xFF);
}
return $retval . $value;
}
function dump()
{
echo "<pre>";
print_r($this->meta);
echo "</pre>";
}
#requires Gd library installed
function removeAllTags()
{
$this->meta = [];
$img = imagecreatefromstring(implode(file($this->file)));
if(file_exists($this->file)) unlink($this->file);
imagejpeg($img, $this->file, 100);
}
}
$file = "photo.jpg";
$objIPTC = new IPTC($file);
//set title
$objIPTC->setValue(IPTC_HEADLINE, "A title for this picture");
//set description
$objIPTC->setValue(IPTC_CAPTION, "Some words describing what can be seen in this picture.");
echo $objIPTC->getValue(IPTC_HEADLINE);
?>
多分あなたは試すことができます:
私自身はこれについての経験はありませんが、phpのWebサイトには、あなたが探しているもののようなものがあります。
http://php.net/manual/en/function.iptcembed.php
「1つか2つの例を見たことがありますが、それらは複雑すぎて、与えられた時間枠では把握できません」と言ったときの意味です。
その後、あなたは頭上にいるかもしれません。
しかし、そのページの例は、まったく理解しにくいようには見えません。
ImagickではEXIFデータを設定できますが、メモリ内のオブジェクトにのみ設定できます。ファイルをディスクに書き込む場合、これらのデータは単に無視されます。最も一般的な解決策は、exiftoolsにシェルアウトするか、PHPライブラリを使用することです [〜#〜] pel [〜#〜] 。 PELのドキュメントはまばらであり、APIも実際には自明ではありません。
Facebookに360°画像としてアップロードされる画像に正しいEXIFデータを追加しようとしたときに、この問題に遭遇しました。これには、特定のカメラのメーカーとモデルをEXIFとして指定する必要があります。以下のコードは、画像ファイルを開き、そのメーカーとモデルを設定して、ディスクに保存します。他のEXIFデータの設定を検討している場合は、サポートされているすべてのPelTag定数の完全なリストがあります ここではPELドキュメントにあります 。
$data = new PelDataWindow(file_get_contents('IMAGE PATH'));
$tiff = null;
$file = null;
// If it is a JPEG-image, check if EXIF-headers exists
if (PelJpeg::isValid($data)) {
$jpeg = $file = new PelJpeg();
$jpeg->load($data);
$exif = $jpeg->getExif();
// If no EXIF in image, create it
if($exif == null) {
$exif = new PelExif();
$jpeg->setExif($exif);
$tiff = new PelTiff();
$exif->setTiff($tiff);
}
else {
$tiff = $exif->getTiff();
}
}
// If it is a TIFF EXIF-headers will always be set
elseif (PelTiff::isValid($data)) {
$tiff = $file = new PelTiff();
$tiff->load($data);
}
else {
throw new \Exception('Invalid image format');
}
// Get the first Ifd, where most common EXIF-tags reside
$ifd0 = $tiff->getIfd();
// If no Ifd info found, create it
if($ifd0 == null) {
$ifd0 = new PelIfd(PelIfd::IFD0);
$tiff->setIfd($ifd0);
}
// See if the MAKE-tag already exists in Ifd
$make = $ifd0->getEntry(PelTag::MAKE);
// Create MAKE-tag if not found, otherwise just change the value
if($make == null) {
$make = new PelEntryAscii(PelTag::MAKE, 'RICOH');
$ifd0->addEntry($make);
}
else {
$make->setValue('RICOH');
}
// See if the MODEL-tag already exists in Ifd
$model = $ifd0->getEntry(PelTag::MODEL);
// Create MODEL-tag if not found, otherwise just change the value
if($model == null) {
$model = new PelEntryAscii(PelTag::MODEL, 'RICOH THETA S');
$ifd0->addEntry($model);
}
else {
$model->setValue('RICOH THETA S');
}
// Save to disk
$file->saveFile('IMAGE.jpg');