Re: Photoscripter open EPS Generic
Re: Photoscripter open EPS Generic
- Subject: Re: Photoscripter open EPS Generic
- From: Cal <email@hidden>
- Date: Fri, 9 Mar 2001 18:33:07 -0500
"David Fekke" <email@hidden> wrote:
>>tell app "Adobe Photoshop 5.5"
>> open (i as alias) EPS generic {width:324}
end tell
when I try to run this i get an error that it "can not make dist for 324
pixels"
>>Does anybody know how to make this work?
Michelle Steiner <email@hidden> wrote:
>I don't have Photoshop, but I would hazard a guess tha tyou need to do
this:
>open (i as alias) EPS generic with properties {width:324}
"David Fekke" <email@hidden> wrote:
the "with properties" is not necessary with photoscripter.
Some open specifications work like {constrain proportions:true,
antialiasing:true}
But others do not work, like {width:324,height:200,color space:Grayscale
mode}
These are all in the Photoscripter dictionary. Some work, some do not.
It's finicky about the combinations of properties it requires.
Here's a working example for EPS Generic:
open alias "Macintosh HD:My Images:image" as ,
EPS Generic {width:2 as inches, height:2.32 as inches ,
, resolution:72 as density, color space:CMYK mode ,
, antialiasing:true, constraining proportions:false}
You could try leaving out the height and making constrating
proportions true, but I'm not sure that will work with a generic EPS.
Cal