Viewing Image Files
The following options are available for accessing an image from the HTML5 control.
Referencing | Description |
---|---|
Static image from JavaScript code referenced in Additional Files | The image is referenced in the HTML5 control editor, on the General tab, in the Additional Files field. In the script code, the actual file name is retrieved by using the API “ |
Static image from JavaScript code with | This mechanism can be used to embed an image directly into the corresponding file. |
Image which is managed in an image pool referenced with Reference from JavaScript code | Requirement: The HTML5 control provides one or more configurations for the Imageeditor type. In the script code, the actual file name is retrieved by using the API " The user can then assign the ID of an image from an image pool with |
Image referencing within a CSS style using | If an image should be embedded in a CSS style sheet, then this can be done using a Example: /* using an incomplete URI to save space*/ p{ background-image: url("data:image/png;base64,iVBORw0KGg...QmCC"); background-repeat: repeat; } |