Find dpi Photoshop eps
Hi All,
Is it possible to find dpi for the photoshop eps?
The below code is working fine for the extension of ".tif" only.
var myDoc = app.activeDocument;
var myGraphics = app.activeDocument.allGraphics;
for (var i = 0; i < myGraphics.length; i++) {
if (myGraphics.effectivePpi[0] < 300 || myGraphics.effectivePpi[1] < 300) {
var myPPI = myGraphics.effectivePpi[0] + " dpi\r";
var myLowResImage = myGraphics.itemLink.name;
alert("myLowResImage: " + myLowResImage + "\r" + "myPPI: " + myPPI);
};
};
Please anyone give solution for my request.
Regards
Beginner_X
