iptcembed() นั้นจะเป็นฟังก์ชันที่จะการเพิ่ม IPCT ของรูปภาพ ของเราซึ่งฟังก์ชันนี้จะมีความสามารถค้ายกับฟังก์ชันiptcparse() ที่จะมีความสามารถแสดง IPCT ของรูปภาพออกมานั้นเองวิธีการใช้งาน iptcembed() มีดังนี้

<?php

// iptc_make_tag() function by Thies C. Arntzen
function iptc_make_tag($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;
}

// Path to jpeg file
$path = '1.jpg';

// Set the IPTC tags
$iptc = array(
    '2#120' => 'Test image',
    '2#116' => 'Copyright 2008-2009, The PHP Group'
);

// Convert the IPTC tags into binary code
$data = '';

foreach($iptc as $tag => $string)
{
    $tag = substr($tag, 2);
    $data .= iptc_make_tag(2, $tag, $string);
}

// Embed the IPTC data
$content = iptcembed($data, $path);

// Write the new image data out to the file.
$fp = fopen($path, "wb");
fwrite($fp, $content);
fclose($fp);
?>

 

รูปภาพก็จะมีค่า IPCT แล้ว

กระทู้ล่าสุดจากเว็บบอร์ด
หัวข้อกระทู้
ตอบ
เปิดดู
ล่าสุด
Check Box รบกวนช่วยดูโค๊ดให้ทีค่ะ
โดย Mbenjarat ศ 16 ก.ค. 2010 1:03 pm บอร์ด Programming - PHP
2
1510
ศ 16 ก.ค. 2010 10:16 pm โดย mindphp View Topic Check Box รบกวนช่วยดูโค๊ดให้ทีค่ะ
treemenu กับ frame
โดย rawat2006 ศ 16 ก.ค. 2010 2:55 pm บอร์ด JavaScript & jQuery Ajax & Node.JS
1
3970
ศ 16 ก.ค. 2010 10:15 pm โดย mindphp View Topic treemenu กับ frame
แก้ไขยังไงดีครับ หน้าเวปผมมีคำเตือนนี้มา...
โดย aneknoy พฤ 15 ก.ค. 2010 9:34 pm บอร์ด สอบถามปัญหาการใช้ phpBB3, SMF, Joomla, Wordpress, CMS, CRM
19
3399
พ 21 ก.ค. 2010 10:49 pm โดย mindphp View Topic แก้ไขยังไงดีครับ หน้าเวปผมมีคำเตือนนี้มา...
แจก โปรแกรมคุยโทรศัพท์ผ่านอินเตอร์เน็ต ซ้ำขออภัย
โดย dingdong ศ 16 ก.ค. 2010 11:07 am บอร์ด พูดคุยเรื่องทั่วไป จับฉ่าย
0
2926
ศ 16 ก.ค. 2010 11:07 am โดย dingdong View Topic แจก โปรแกรมคุยโทรศัพท์ผ่านอินเตอร์เน็ต ซ้ำขออภัย
อยากได้ตัวอย่าง การเขียนโปรแกรมภาษาซี โดยใช้ฟังค์ชั่งสุ่มอะค่ะ ส่งอาจารย์
โดย myfon11 พฤ 15 ก.ค. 2010 11:40 am บอร์ด Web Hosting Review - Free Host Share Host VPS
1
4992
ศ 16 ก.ค. 2010 1:42 am โดย imsn View Topic อยากได้ตัวอย่าง การเขียนโปรแกรมภาษาซี โดยใช้ฟังค์ชั่งสุ่มอะค่ะ ส่งอาจารย์
จดโดเมน 299 บาทต่อปี!! Hosting Unlimited Package 2000 บาทต่อปี (แบ่งได้ 4 โดเมน)
โดย aomiez พฤ 15 ก.ค. 2010 2:05 am บอร์ด Web Hosting Review - Free Host Share Host VPS
0
1488
พฤ 15 ก.ค. 2010 2:05 am โดย aomiez View Topic จดโดเมน 299 บาทต่อปี!! Hosting Unlimited Package 2000 บาทต่อปี (แบ่งได้ 4 โดเมน)
login แบบไหนดี session cookie เทพมาตอบทีครับ
โดย Anonymous พ 14 ก.ค. 2010 6:50 pm บอร์ด Programming - PHP
3
2634
พ 03 พ.ย. 2010 4:34 pm โดย บุคคลทั่วไป View Topic login แบบไหนดี session cookie เทพมาตอบทีครับ
ขอความช่วยเหลือครับjoomla 1.5.15 สร้าง section กับ catogory ภาษไทยเป็น ???
โดย Slarom พ 14 ก.ค. 2010 5:05 pm บอร์ด สอบถามปัญหาการใช้ phpBB3, SMF, Joomla, Wordpress, CMS, CRM
1
1035
พ 14 ก.ค. 2010 5:08 pm โดย mindphp View Topic ขอความช่วยเหลือครับjoomla 1.5.15 สร้าง section กับ catogory ภาษไทยเป็น ???