4
4
Fork 0
This repository has been archived on 2025-01-20. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
json-photoshop-scripting/JSON-Simplified-Formats/Ellipse-Object-Simplified-Format
2018-04-15 16:41:40 +02:00
..
images First commit 2018-04-15 16:41:40 +02:00
README.md First commit 2018-04-15 16:41:40 +02:00

Ellipse Object Simplified Format

  • Input format of jamHelpers.toEllipseObject.

Simplified format

Defined as a two-element JSON array: [ ellipse, unit ]

ellipse : four-element JSON array: [ left, top, right, bottom ]
unit : string (among "distanceUnit", "percentUnit", "pixelsUnit")

left : number
top : number
right : number
bottom : number

Example

[ [ 10, 10, 90, 90 ], "percentUnit" ]

Ellipse