Resources
- Last updated on November 28, 2025
- •
- 1 minute to read
Resources are the additional data you provide to assist the user to personalize the design. Unlike the input data, the user does not transform it. Unlike the settings, it does not change the behavior of the editor.
A good example of resources are the folders used as image libraries for the Images and Clipart buttons.
Like settings, resources are also organized into sections. They are described below.
{
"resources": {
"assetLibrary": {}
}
}
assetLibrary
In Handy Editor resources, the assetLibrary section allows for specifying the source folder for Images, Clipart, and Shapes graphic libraries.
clipartsFolderdefines the root folder for the Clipart library. This folder should contain vector content (preferable, single-color SVG shapes), like icons, decorations, etc.imagesFolderdefines the root folder for the Images library. It may contain content of any image format supported by Customer's Canvas, such as JPEG, PNG, PDF, TIFF, SVG, etc.shapesFolderdefines the root folder for the Shapes library. It may contain content of vector formats supported by Customer's Canvas, such as PDF, AI, or SVG. These shapes will be added to the general shape list.
Note
The editor will load the content of all subfolders as well.
A path to the folder should be specified relative to the root of the Images section in your Customer's Canvas asset manager. Folders are separated by a slash character (/). Adding a slash to the beginning of a path is allowed, but not necessary.
{
"assetLibrary": {
"clipartsFolder": "/Image Library/Clipart",
"imagesFolder": "Image Library/Images",
"shapesFolder": "Shapes"
}
}