Skip to main content

TOAST UI Image Editor

Enhance your image editing experience with the cutting-edge TOAST UI Image Editor. This powerful 3rd party plug-in empowers end-users to effortlessly apply filters, crop, utilize shapes, and add captivating text captions directly within the rich text editor. Elevate your content creation with seamless image customization at your fingertips.

Test it on-line

The sample application page TOAST UI Image Editor allows testing the plug-in right away!

License

TOAST UI Image Editor is included by the default.

Implementation guide

To enable TOAST UI Image Editor use attribute .

The TOAST UI Image Editor is enabled by the default. To disable it use the plug-in attribute Initialization PL/SQL Code.

Initialization PL/SQL Code
UC_FROALA_RTE.g_plug_tui_enable := false;

Opening the image editor is possible using image context menu button imageTUI.

PL/SQL Variables

The PL/SQL variables used to enable and configure Wiris MathType are described in the plug-in package documentation.

Restrict usage for specific user's roles

The example code below enables TOAST UI Image Editor only for user's authorized using TOASTUI authorization scheme defined in an application shared components.

Initialization PL/SQL Code
if APEX_AUTHORIZATION.IS_AUTHORIZED('TOASTUI') then
UC_FROALA_RTE.g_plug_tui_enable := true;
end if;