Using JSON View
XD, PSD, AI and INDD layers to JSON with clean and clear code becomes simple. Translate your XD, PSD, AI and INDD layers to JSON with advanced support for text, images and shapes.
Example Image Element
1 2 3 4 5 6 7 8 9 | { "type":"image", "src":"../skins/exportkit_example_125/index_button_bg.png", "name":"index_button_bg", "x":927, "y":1311, "width":143, "height":51 } |
Example Text Element
1 2 3 4 5 6 7 8 9 10 11 12 | { "type":"text", "font":"ArialMT", "color":"0xFFFFFF", "size":72, "name":"page_title", "x":98, "y":131, "width":888, "height":188 , "text":"Toronto’s award winning \rcreative agency" } |
Example Shape Element
1 2 3 4 5 6 7 8 9 10 11 | { "type":"shape", "shapeType":"rectangle", "radius":"0px", "color":"#FFFFFF", "name":"base", "x":124, "y":1590, "width":422, "height":175 } |
Pro Features
Customize the JSON View to include additional information with the XD, PSD, AI and INDD layer such as effects, advanced text rendering and more.
Example Layer Effects
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | { "type":"shape", "shapeType":"rectangle", "radius":"0px", "color":"#FFFFFF", "name":"base", "x":124, "y":1590, "width":422, "height":175 , "effects":{ "innerShadow":{ "distance":3, "angle":120, "color":"0xFFFFFF", "alpha":100, "blurX":3, "blurY":3 }, "frameFX":{ "lineSize":3 } } } |