⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xmp.pm

📁 稀饭伊人相册系统继承了新天堂多用户相册系统的功能
💻 PM
字号:
package TagTables::XMP;use strict;use vars qw($VERSION);$VERSION = '1.00';# XMP tags need only be specified if a conversion or name change is necessary%TagTables::XMP::Main = (    TableType => 'XMP',    # I'll leave these parameters alone since I don't know what the Photoshop values mean    Contrast => { },    Saturation => { },    Sharpness => { },    li => {    # what's up with this name?  I'm guessing this is ISO - PH        Name => 'ISO',    },    WhiteBalance => { }, # already converted to ASCII    ExposureBiasValue => {        Name => 'ExposureCompensation',        PrintConv => 'TagTables::Exif::ConvertFraction($val)',    },);# fill out XMP table with entries from main table if they don't existforeach (keys %TagTables::Exif::Main) {    my $tagInfo = $TagTables::Exif::Main{$_};    # just take first entry in table info array    my $name;    if (ref $tagInfo) {        ref($tagInfo) eq 'ARRAY' and $tagInfo = $$tagInfo[0];        $name = $$tagInfo{'Name'};    } else {        $name = $tagInfo;    }    next if $TagTables::XMP::Main{$name};    $TagTables::XMP::Main{$name} = $tagInfo;}1;  #end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -