해결됨
List of missing fonts in Photoshop (.psd images)
Hi All,
I am trying to find the "missing font list" from the *.psd file (Photoshop) using the javascript. Please help me to find the missing font list.
Thanks,
Magesh
Hi All,
I am trying to find the "missing font list" from the *.psd file (Photoshop) using the javascript. Please help me to find the missing font list.
Thanks,
Magesh
missing fonts in the stylesheet are marked with fontAvailable == false
#target photoshop
var s2t = stringIDToTypeID,
missingFontList = {};
(r = new ActionReference()).putProperty(s2t('property'), p = s2t('numberOfLayers'));
r.putEnumerated(s2t('document'), s2t('ordinal'), s2t('targetEnum'));
var len = executeActionGet(r).getInteger(p);
for (var i = 1; i <= len; i++) {
(r = new ActionReference()).putProperty(s2t('property'), p = s2t('textKey'));
r.putIndex(s2t('layer'), i);
if (executeActionGet(r).hasKey(p)) {
var sList = executeActionGet(r).getObjectValue(p).getList(s2t('textStyleRange'));
for (var x = 0; x < sList.count; x++) {
var k = sList.getObjectValue(x).getObjectValue(s2t('textStyle'))
if (k.hasKey(s2t('fontAvailable'))) {
if (!k.getBoolean(s2t('fontAvailable'))) {
missingFontList[k.getString(s2t('fontPostScriptName'))] = false
}
}
}
}
}
alert(missingFontList.toSource())
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.