使用PHP或Imagick获取图像ICC配置文件

我一直在努力解决这个问题并且惊讶于找不到任何文档!

我正在将图像上传到网站&想提取每个图像的名称ICC profile&在图像描述中使用它.到目前为止,标准PHP没有产生任何结果.我用Photoshop,Bridge& amp;检查了图像. Exiftool&每个人都已确定嵌入的个人资料

<?PHP 
$info = exif_read_data($image);
echo 'ICC Profile: '.$info['ICC_Profile'].'<br>';
echo 'ICC Profile: '.$info['CurrentICCProfile'].'<br>';
echo 'ICC Profile: '.$info['ColorSpace'].'<br>';
?>

Imagick产生了最好的结果:

$imagick = new Imagick();
$imagick->readImage($image);
print_r ($imagick->getimageProfiles("icc",true));

生成实际提到配置文件但不是可用字符串的数组.任何帮助赞赏.

我正在使用这些版本:

PHP Version 5.2.17 – imagick module version 3.0.1 – ImageMagick version 6.7.6-8

print_r返回(对于’ProPhoto RGB’ICC配置文件):

Array ( [icc] => �KCMSmntrRGB XYZ � :acspMSFTKODAROMM���+KODAcprtHdesc\�wtpt�rTRC�gTRC�bTRC�rXYZgXYZbXYZ,dmnd@ndmdd��mmod�(textcopyright (c) Eastman Kodak Company,1999,all rights reserved.desc ProPhoto RGB��ProPhoto RGB ProPhoto RGBXYZ ���,curv�XYZ �4I�XYZ “��>XYZ �-descKODAK��KODAKKODAKdesc’Reference Output Medium Metric(ROMM) (��Reference Output Medium Metric(ROMM) ‘Reference Output Medium Metric(ROMM) mmod���;� )

全部(来自Exiftool):

Profile CMM Type                : KCMS
Profile Version                 : 2.1.0
Profile Class                   : display Device Profile
Color Space Data                : RGB
Profile Connection Space        : XYZ
Profile Date Time               : 1998:12:01 18:58:21
Profile File Signature          : acsp
Primary Platform                : Microsoft Corporation
CMM Flags                       : Not Embedded,Independent
Device Manufacturer             : KODA
Device Model                    : ROMM
Device Attributes               : Reflective,Glossy,Positive,Color
Rendering Intent                : Perceptual
Connection Space Illuminant     : 0.9642 1 0.82487
Profile Creator                 : KODA
Profile ID                      : 0
Profile copyright               : copyright (c) Eastman Kodak Company,all rights reserved.
Profile Description             : ProPhoto RGB
Media White Point               : 0.9642 1 0.82489
Red Tone Reproduction Curve     : (Binary data 14 bytes,use -b option to extract)
Green Tone Reproduction Curve   : (Binary data 14 bytes,use -b option to extract)
Blue Tone Reproduction Curve    : (Binary data 14 bytes,use -b option to extract)
Red Matrix Column               : 0.79767 0.28804 0
Green Matrix Column             : 0.13519 0.71188 0
Blue Matrix Column              : 0.03134 9e-005 0.82491
Device Mfg Desc                 : KODAK
Device Model Desc               : Reference Output Medium Metric(ROMM)
Make And Model                  : (Binary data 40 bytes,use -b option to extract)
我不太确定,如果所有图像都是如此.至少我拥有的图像在其“属性”中包含此信息.因此,要获得可打印的配置文件名称,它应该像这样工作:
$imagick = new imagick('/some/filename');
$profile = $imagick->getimageProperties('icc:model',true);
/**
 * If the property 'icc:model' is set $profile Now should be:
 * array( 'icc:model' => 'ICC model name')
 */

如果要查看为图像设置的所有属性,可以使用identify -verbose / some / filename手动探测图像.在那里你将不得不寻找“属性:”,ICC名称应该在那里设置.

以上是获取ICC配置文件名称的简便方法.如果您确实需要icc配置文件中的ICC名称,您可能需要查看ICC Profile Format Specification

简而言之:

>前128个字节是标题.然后是一个标记表,其中前4个字节是表的大小.
>每个标签由4个字节的三元组组成.前4个字节是标签名称.接下来的四个字节是icc文件中数据的偏移量.接下来的四个字节定义标签数据的大小.

我们对’desc’标签感兴趣(参见规范中的第63页).

>描述本身再次以’desc’开始,然后保留四个字节.接下来的四个字节定义ICC配置文件名称的大小.

代码中它的工作方式如下:

$image = new imagick('/path/to/img');
try {
    $existingICC = $image->getimageProfile('icc');
} catch (ImagickException $e) {
    // Handle it
    $existingICC = null;
}

if($existingICC) {
    // Search the start of the description tag in the tag table.:
    // We are not looking in the 128 bytes for the header + 4 bytes for the size of the table
    $descTagPos = stripos( $existingICC,'desc',131 );
    if( $descTagPos === false) {
       // There is no description,handle it.
    } else {
        // This is the description Tag ( 'desc'|offset|size each with a size of 4 bytes
        $descTag = substr( $existingICC,$descTagPos,12 );

        // Get the offset out of the description tag,unpack it from binary to hex and then from hex to decimal
        $descTagOffset = substr ( $descTag,4,4 );
        $descTagOffset = unpack( 'H*',$descTagOffset );
        $descTagOffset = hexdec( $descTagOffset[1] );

        // Same for the description size
        $descTagSize = substr ( $existingICC,$descTagPos + 8,4 );
        $descTagSize = unpack('H*',$descTagSize);
        $descTagSize = hexdec( $descTagSize[1] );

        // Here finally is the descripton
        $iccDesc = substr( $existingICC,$descTagOffset,$descTagSize );

        // See page 63 in the standard,here we extract the size of the ICC profile name string
        $iccNameSize = substr( $iccDesc,8,4 );
        $iccNameSize = unpack( 'H*',$iccNameSize);
        $iccNameSize = hexdec( $iccNameSize[1]);

        // Finally got the name.
        $iccName = substr( $iccDesc,12,$iccNameSize );
        echo "ICC name: $iccName\n";
    }
}

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...