有没有办法将版权信息添加到PHP
创建的图片文件中?
为了更清楚,您可以使用photoshop将copyright
信息添加到文件中,因此当您获得properties
时,您会看到类似的内容:
我想在php中添加/编辑文件的详细信息。有可能吗?
编辑:
我从用户输入中获取图像,然后使用此功能调整其大小:
function image_resize($src, $w, $h, $dst, $width, $height, $extension )
{
switch($extension){
case 'bmp': $img = imagecreatefromwbmp($src); break;
case 'gif': $img = imagecreatefromgif($src); break;
case 'jpg': $img = imagecreatefromjpeg($src); break;
case 'png': $img = imagecreatefrompng($src); break;
default : return "Unsupported picture type!";
}
$new = imagecreatetruecolor($width, $height);
// preserve transparency
if($extension == "gif" or $extension == "png"){
imagecolortransparent($new, imagecolorallocatealpha($new, 0, 0, 0, 127));
imagealphablending($new, true);
imagesavealpha($new, false);
}
imagecopyresampled($new, $img, 0, 0, 0, 0, $width, $height, $w, $h);
imageinterlace($new,1);//for progressive jpeg image
switch($extension){
case 'bmp': imagewbmp($new, $dst); break;
case 'gif': imagegif($new, $dst); break;
case 'jpg': imagejpeg($new, $dst); break;
case 'png': imagepng($new, $dst); break;
}
return true;
}
答案 0 :(得分:4)
我不相信PHP本身包含编辑JPEG文件中的EXIF数据的功能,但是有一个PEAR扩展可以读取和写入EXIF数据。
pear channel-discover pearhub.org
pear install pearhub/PEL
该模块的网站位于http://lsolesen.github.io/pel/,设置说明的示例位于https://github.com/lsolesen/pel/blob/master/examples/edit-description.php
更新:
看来pearhub.org网站已经永远失效,但您可以从GitHub下载文件(无需安装/设置,只需包含autoload.php
文件)。
以下是在JPEG文件中设置版权字段的示例。从GitHub下载的文件放在一个名为pel
的子目录中,但您可以将它们放在任何您喜欢的位置(只需更新require_once
行)。
<?php
// Make the PEL functions available
require_once 'pel/autoload.php'; // Update path if your checked out copy of PEL is elsewhere
use lsolesen\pel\PelJpeg;
use lsolesen\pel\PelTag;
use lsolesen\pel\PelEntryCopyright;
/*
* Values for you to set
*/
// Path and name of file you want to edit
$input_file = "/tmp/image.jpg";
// Name of file to write output to
$output_file = "/tmp/altered.jpg";
// Copyright info to add
$copyright = "Eborbob 2015";
/*
* Do the work
*/
// Load the image into PEL
$pel = new PelJpeg($input_file);
// Get the EXIF data (See the PEL docs to understand this)
$ifd = $pel->getExif()->getTiff()->getIfd();
// Get the copyright field
$entry = $ifd->getEntry(PelTag::COPYRIGHT);
if ($entry == null)
{
// No copyright field - make a new one
$entry = new PelEntryCopyright($copyright);
$ifd->addEntry($entry);
}
else
{
// Overwrite existing field
$entry->setValue($copyright);
}
// Save the updated file
$pel->saveFile($output_file);