Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

릴리즈 2.4.0 이상

It is the plugin that allows the user to edit image in SynapEditor with image editor provided by TOAST UI.

How to Use

Loading Plugin File

<link rel="stylesheet" href="URL of tuiImageEditor.min.css">
<script src="URL of tuiImageEditor.min.js"></script>

UI

You may add the button to toolbar and menu with 'tuiImageEditor', the name of the plugin.

Adding to Toolbar

에디터 설정
//...
'editor.toolbar': [
	//...,
	'tuiImageEditor',
	//...
],
// ...

Adding to Image Balloon Popup

에디터 설정
//...
'editor.balloon': {
	//...
	'image': [
		//...
		'tuiImageEditor',
		//...
	],
	//...
}
//...

Adding to Menu

에디터 설정
//...
'editor.menu.definition': {
	//...,
	'tools': [
		//...,
		'tuiImageEditor',
		//...
	],
	//...
},
//...
  • No labels