# toast-ui.vue-image-editor
**Repository Path**: xcq_webhtml/toast-ui.vue-image-editor
## Basic Information
- **Project Name**: toast-ui.vue-image-editor
- **Description**: Toast UI Image Editor for Vue
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 0
- **Created**: 2019-10-17
- **Last Updated**: 2024-07-11
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Vue wrapper for TOAST UI Image Editor
> This is Vue component wrapping [TOAST UI Image Editor](https://github.com/nhn/tui.image-editor).
[](https://vuejs.org/)
[](https://github.com/nhn/toast-ui.vue-image-editor/releases/latest)
[](https://www.npmjs.com/package/@toast-ui/vue-image-editor)
[](https://github.com/nhn/toast-ui.vue-image-editor/blob/master/LICENSE)
[](https://github.com/nhn/toast-ui.vue-image-editor/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22)
[](https://github.com/nhn)
## 🚩 Table of Contents
* [Collect statistics on the use of open source](#collect-statistics-on-the-use-of-open-source)
* [Install](#-install)
* [Using npm](#using-npm)
* [Usage](#-usage)
* [Load](#load)
* [Implement](#implement)
* [Props](#props)
* [Event](#event)
* [Method](#method)
* [Pull Request Steps](#-pull-request-steps)
* [Setup](#setup)
* [Develop](#develop)
* [Pull Request Steps](#pull-request)
* [Documents](#-documents)
* [Contributing](#-contributing)
* [License](#-license)
## Collect statistics on the use of open source
TOAST UI ImageEditor applies Google Analytics (GA) to collect statistics on the use of open source, in order to identify how widely TOAST UI ImageEditor is used throughout the world. It also serves as important index to determine the future course of projects. location.hostname (e.g. > “ui.toast.com") is to be collected and the sole purpose is nothing but to measure statistics on the usage. To disable GA, use the following `usageStatistics` option when creating the instance.
```js
const options = {
...
usageStatistics: false
}
const imageEditor = new tui.ImageEditor('#tui-image-editor-container', options);
```
Or, include [`tui-code-snippet`](https://github.com/nhn/tui.code-snippet)(**v1.4.0** or **later**) and then immediately write the options as follows:
```js
tui.usageStatistics = false;
```
## 💾 Install
### Using npm
```sh
npm install --save @toast-ui/vue-image-editor
```
> **If you install other packages**, you may lose dependency on fabric. You need to **reinstall the fabric**.
```
npm install --no-save --no-optional fabric@~1.6.7
```
## 🔡 Usage
### Load
* Using namespace
```js
const ImageEditor = toastui.ImageEditor;
```
* Using module
```js
// es modules
import {ImageEditor} from '@toast-ui/vue-image-editor';
// commonjs require
const {ImageEditor} = require('@toast-ui/vue-image-editor');
```
* Using `
```
* Using only Vue wrapper component (Single File Component)
`toastui-vue-image-editor.js` has all of the tui.ImageEditor. If you only need vue wrapper component, you can use `@toast-ui/vue-image-editor/src/ImageEditor.vue` like this:
```js
import ImageEditor from '@toast-ui/vue-image-editor/src/ImageEditor.vue'
```
### Implement
First insert `` in the template or html. `includeUi` and `options` props are required.
```html
```
Load ImageEditor component and then add it to the `components` in your component or Vue instance.
```js
import {ImageEditor} from '@toast-ui/vue-image-editor';
export default {
components: {
'tui-image-editor': ImageEditor
},
data() {
return {
useDefaultUI: true,
options: { // for tui-image-editor component's "options" prop
cssMaxWidth: 700,
cssMaxHeight: 500
}
};
}
}
```
### Props
You can use `includeUi` and `options` props. Example of each props is in the [Getting Started](./docs/Basic-Tutorial.md).
* `includeUi`
| Type | Required | Default |
| --- | --- | --- |
| Boolean | X | true |
This prop can contained the `includeUI` prop in the option. You can see the default UI.
* `options`
| Type | Required | Default |
| --- | --- | --- |
| Object | X | { cssMaxWidth: 700, cssMaxHeight: 500 } |
You can configurate your image editor using `options` prop. For more information which properties can be set in `options`, see [options of tui.image-editor](https://nhn.github.io/tui.image-editor/latest/ImageEditor).
### Event
* addText: The event when 'TEXT' drawing mode is enabled and click non-object area.
* mousedown: The mouse down event with position x, y on canvas
* objectActivated: The event when object is selected(aka activated).
* objectMoved: The event when object is moved.
* objectScaled: The event when scale factor is changed.
* redoStackChanged: Redo stack changed event
* textEditing: The event which starts to edit text object.
* undoStackChanged: Undo stack changed event
```html
```
```js
...
methods: {
onAddText(pos) {
...
},
onObjectMoved(props) {
...
}
}
...
```
For more information such as the parameters of each event, see [event of tui.image-editor](https://nhn.github.io/tui.image-editor/latest/ImageEditor#event-addText).
### Method
For use method, first you need to assign `ref` attribute of element like this:
```html
```
After then you can use methods through `this.$refs`. We provide `getRootElement` and `invoke` methods.
* `getRootElement`
You can get root element of image editor using this method.
```js
this.$refs.tuiImageEditor.getRootElement();
```
* `invoke`
If you want to more manipulate the ImageEditor, you can use `invoke` method to call the method of tui.ImageEditor. First argument of `invoke` is name of the method and second argument is parameters of the method. To find out what kind of methods are available, see [method of tui.ImageEditor](https://nhn.github.io/tui.image-editor/latest/ImageEditor).
```js
const drawingMode = this.$refs.tuiImageEditor.invoke('getDrawingMode');
this.$refs.tuiImageEditor.invoke('loadImageFromURL', './sampleImage.png', 'My sample image');
this.$refs.tuiImageEditor.invoke('startDrawingMode', 'FREE_DRAWING', {
width: 10,
color: 'rgba(255, 0, 0, 0.5)'
});
```
## 🔧 Pull Request Steps
TOAST UI products are open source, so you can create a pull request(PR) after you fix issues.
Run npm scripts and develop yourself with the following process.
### Setup
Fork `develop` branch into your personal repository.
Clone it to local computer. Install node modules.
Before starting development, you should check to haveany errors.
``` sh
$ git clone https://github.com/{your-personal-repo}/[[repo name]].git
$ cd [[repo name]]
$ npm install
```
### Develop
Let's start development!
### Pull Request
Before PR, check to test lastly and then check any errors.
If it has no error, commit and then push it!
For more information on PR's step, please see links of Contributing section.
## 📙 Documents
* [Getting Started](./docs/Basic-Tutorial.md)
## 💬 Contributing
* [Code of Conduct](CODE_OF_CONDUCT.md)
* [Contributing guideline](CONTRIBUTING.md)
* [Issue guideline](ISSUE_TEMPLATE.md)
* [Commit convention](./docs/COMMIT_MESSAGE_CONVENTION.md)
## 📜 License
This software is licensed under the [MIT](./LICENSE) © [NHN.](https://github.com/nhn)