Re: Trying to get image dimensions
Re: Trying to get image dimensions
- Subject: Re: Trying to get image dimensions
- From: Shane Stanley via AppleScript-Users <email@hidden>
- Date: Wed, 3 Jun 2020 12:05:34 +1000
On 3 Jun 2020, at 11:19 am, Jenni via AppleScript-Users
<email@hidden> wrote:
>
>> I take that as a pretty good hint to look for a different approach.
>
> I found sips for the command line, but that returns 3 lines of
> information that I’d need to parse, so I was hoping for an easier solution.
I meant my comment in terms of avoiding the use of aliases, however it's
probably worth mentioning that using sips -- or AppleScriptObjC -- means one
fewer application authorization dialogs when you edit and run the script.
The ASObjC version would be:
use AppleScript version "2.5" -- macOS 10.11 or later
use framework "Foundation"
use scripting additions
set k to "Macintosh SSD:Users:shane:Desktop:Fjords.tiff"
set imagePosixPath to POSIX path of k
set theImageRep to current application's NSBitmapImageRep's
imageRepWithContentsOfFile:imagePosixPath
set fileHeight to theImageRep's pixelsHigh()
set fileWidth to theImageRep's pixelsWide()
--
Shane Stanley <email@hidden>
<www.macosxautomation.com/applescript/apps/>, <latenightsw.com>
_______________________________________________
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