Re: Adobe Photoshop Bounds of a layer?
Re: Adobe Photoshop Bounds of a layer?
- Subject: Re: Adobe Photoshop Bounds of a layer?
- From: Stan Cleveland <email@hidden>
- Date: Tue, 02 Sep 2014 15:16:23 -0700
On Sep 2, 2014, at 12:05 AM, Dave wrote:
> I’m wring a Script for Photoshop and have a question about the bounds of a layer.
>
> It seems that bounds is specified to be Top, Left, Bottom,Right (old pre MacOS X style Rects), my question is, to correctly calculate the Width and Height, should the code be:
>
>
> width = bounds[2] - bounds[0];
> height = bounds[3] - bounds[1];
>
> or
>
> width = (bounds[2] - bounds[0]) + 1;
> height = (bounds[3] - bounds[1]) + 1;
Hi Dave,
Compare your script results with what's reported in the UI. That should provide the definitive answer.
Stan C.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden