Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 9.5   10.0   10.1   10.2   10.3   10.4   10.5   11.0   11.1   11.2    Statistic    FMM    Blog  

GMImage.GetAttributesJSON

Queries all attributes as JSON.

Component Version macOS Windows Linux Server iOS SDK
GraphicsMagick 9.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "GMImage.GetAttributesJSON"; ImageRef )   More

Parameters

Parameter Description Example
ImageRef The image reference number. 1

Result

Returns JSON object or error.

Description

Queries all attributes as JSON.
Only attributes created before are visible, so e.g. EXIF data may not yet be loaded and parsed.
e.g. for a PNG this may include the original color type and the bit depth:
{
"png:IHDR.color-type-orig":"4",
"png:IHDR.bit-depth-orig":"16"
}

Examples

Show attributes:

Set Variable [ $ImageRef ; Value: MBS("GMImage.NewFromFile"; "/Users/cs/Desktop/image2.png") ]
Show Custom Dialog [ "Attributes" ; MBS( "GMImage.GetAttributesJSON"; $ImageRef ) ]
Set Variable [ $r ; Value: MBS("GMImage.Release"; $ImageRef) ]

See also

Release notes

Blog Entries

Created 18th April 2019, last changed 18th April 2019


GMImage.GetAttributeNames - GMImage.GetBackgroundColor

Feedback: Report problem or ask question.