`javascript
// The object like this.
let obj = {
name: '1.jpg', //Image name
src: 'http://url/1.jpg', // Image url
//width:200,//Image width remove in 2.1.9+
//height:200,//Image height remove in 2.1.9+
};
`
`javascript
ForIE9:function(){
// First you need create object have name,src.
// Then trigger handleOpen(obj) and deliver the obj.
this.$refs.imgCutterModal.handleOpen({
name:"image.jpg",
src:"http://imageServ.com/image.jpg",
});
}
``
$3
---
| Attribute | Effect | Type | Require | Default |
| :----------------: | :-------------------------------------------------------------------------------: | :----------------------------: | :-----: | :--------------------------------: |
| isModal | Is modal | Boolean | No | true |
| showChooseBtn | Show select btn | Boolean | No | true |
| lockScroll | Lock scroll when modal is show | Boolean | No | true |
| modalTitle | Modal title text | String | No | 图片裁剪 |
| label | Button text | String | No | 选择图片 |
| boxWidth | Tool width | Number | No | 800 |
| boxHeight | Tool height | Number | No | 400 |
| cutWidth | Selection box width | Number | No | 200 |
| cutHeight | Selection box height | Number | No | 200 |
| tool | Show toolbar | Boolean | No | true |
| toolBgc | Toolbar background color | String(eg: "#fff") | No | #fff |
| sizeChange | Allow change size | Boolean | No | true |
| moveAble | Allow change position | Boolean | No | true |
| originalGraph | Crop original image | Boolean | No | false |
| crossOrigin | Is cross origin image | Boolean | No | false |
| crossOriginHeader | Set cross origin header | String | No | '' |
| rate | Aspect ratio | String(eg: "4:3") | No | - |
| WatermarkText | Watermark Text | String | No | '' |
| WatermarkTextFont | Watermark font size | String | No | '12px Sans-serif' |
| WatermarkTextColor | Watermark font color | String | No | '#fff' |
| WatermarkTextX | Watermark position x | Number | No | 0.95 |
| WatermarkTextY | Watermark position y | Number | No | 0.95 |
| smallToUpload | If choose image size less then defined Size,return file. sizeChange must be false | Boolean | No | false |
| saveCutPosition | Save last cut position and size | Boolean | No | false |
| scaleAble | Allow scale image | Boolean | No | true |
| imgMove | Allow move image | Boolean | No | true |
| toolBoxOverflow | Allow tool box out of picture range | Boolean | No | true |
| index | Return with result | Any | No | null |
| previewMode | Return results at any time,in case of performance problems, set this to false | Boolean | No | true |
| fileType | Return file type ( png / jpeg / webp) | String | No | png |
| quality | image quality | Number | No | 1 |
| accept | accept file type | String | No | 'image/gif, image/jpeg ,image/png' |
| afterChooseImg | Before choose image | () => Promise.resolve(Boolean) | No | - |
$3
| Attribute | Effect | Type | Require | Return |
| :-----------------: | :---------------------: | :------: | :-----: | :----------: |
| cutDown | Cut down image | Function | Yes | Object |
| error | Throw error | Function | No | Error object |
| onChooseImg | ChooseImg | Function | No | Object |
| onPrintImg | Print image to canvas | Function | No | Object |
| onClearAll | Clear all | Function | No | null |
| onImageLoadComplete | Image loading completed | Function | No | Object |
| onImageLoadError | Image loading failed | Function | No | Object |
- New prop:(modalTitle):Modal title text #插件弹窗的标题 #86 - New prop:(afterChooseImg):Callback after selecting an image, must return a Promise. #可以在上传图片之前回调一个 beforeUpload 函数自行对图片做限制吗? #86 - BugFix: #Rotation operation optimization - Optimization: Adjusted @error return value; it now returns the error type.
- Optimization: Now checks whether the file type is an image.
- Notice:onImageLoadError will be removed in future versions, please use @error instead.
- New dev dependency:prettier@2
- New prop( toolBoxOverflow ): Allow tool box out of picture range, default: true
#### 2.2.3
- Bug fix: When you set rate,the control-box didn't reach the expected position #I3OXMW
#### 2.2.2
- New prop( imgMove ): Allow move img, default: true
#### 2.2.1
- New prop( fileType ):Return file type, default: png
#### 2.2.0
- New prop( index ):Return result with index.
- New prop( previewMode ):Return results at any time,in case of performance problems, set this to false.
- Fix Bug:Update style.
#### 2.1.10
- New features:
- 1.saveCutPosition:Save last cut position and size
- 2.scaleAble:Able/Disable scale image
#### 2.1.9
- Crop original image not need imageObj.width and imageObj.height
#### 2.1.8
- New features:smallToUpload, If choose image size less then defined Size,return file. sizeChange must be false. #20
#### 2.1.7
- Fix bug:#21 cropPicture() missed params
#### 2.1.6
- Add new hook function:onClearAll,onPrintImg,onChooseImg
#### 2.1.5
- Fix bug:Button add attrib type=button
#### 2.1.4
- Fix bug:Width display error
#### 2.1.3
- Fix bug:When no choose Image,you also can get an empty image,now you will get an error message in error callback
- Fix bug:When rate < 0 the result image size error;
#### 2.1.2
- New features:flip horizontal,flip vertically,Watermark
- Add slot:ratio,scaleReset,turnLeft,turnRight,reset,flipHorizontal,flipVertically
#### 2.1.1
- Add english documents
#### 2.1.0
- Add new attribute:originalGraph,originalGraph
- Fix bug: Inline mode can not scale image.
#### 2.0.30
- Fix bug: Constituency overflow.
#### 2.0.29
- UI optimization.
#### 2.0.28
- Show version
- New slot:choose/cancel/confirm
- New attribute:toolBgc
- Fix bug: Constituency overflow.
#### 2.0.27
- Fix bug:Remote image in the wrong place.
- Fix bug:An error occurred when click cancel btn in IE.
- Fix bug:Error loading remote picture will be correctly handle.
#### 2.0.26
- Fix bug:An error occurred when not choose any image.
#### 2.0.25
- Update readme.md
#### 2.0.24
- Update crop remote pictures method. eg:this.\$refs['yourComponent'].handleOpen(imgObj),imgObj must include(name,src,width,height)
- Fix bug: Inline mode can not scale image.
- New attribute: crossOrigin,crossOriginHeader
- New attribute: error,It can catch error.
#### 2.0.23
- New attribute:isModal/showChooseBtn/lockScroll
#### 2.0.22
- For IE9+,MSEdge,chrome,firefox
- UI optimization.
#### 2.0.21
- For IE8+,MSEdge,chrome,firefox
- New attribute:moveAble,sizeChange
- Fix bug:File is not return.
#### 2.0.20
- For IE11+,MSEdge,Chrome,Firefox
#### 2.0.19
- Result add file.
#### 2.0.18
- Fix bug:Reload pages when first click select image btn.