継承関係(Inheritance)

item
└metadata tag

属性(Properties)

itemクラスから継承された属性
name ユニコード[r/o]
名前(解説参照)
description ユニコード[r/o]
説明
value 様々な値[r/o]
内容

解説(Note)

 画像が持っている様々なメタデータを持ったオブジェクト。

 nameには、次のようなものがある。imageオブジェクトの属性と同じものもある。
"formatOptions", "hasAlpha", "space", "pixelHeight", "typeIdentifier", "bitsPerSample", "path", "profile", "dpiWidth", "pixelWidth", "samplesPerPixel", "dpiHeight", "format"

 descriptionは大抵missing valueで、使えないもののようだ。

用例(Example)

  1. set theFile to choose file
    tell application "Image Events"
    	launch
    	set theImg to open theFile
    	set theHeight to value of metadata tag "pixelHeight" of theImg
    	close theImg
    end tell
    theHeight