Releases: nhn/tui.image-editor
Releases · nhn/tui.image-editor
v3.11.0
v3.10.1
v.3.10.0
Added
- Add filter type with shape fill option
imageEditor.setDrawingShape('rect', {
fill: {
type: 'filter',
filter: [{blur: 0.3}, {pixelate: 20}]
},
width: 100,
height: 200
});
imageEditor.addShape('rect', {
fill: {
type: 'filter',
filter: [{blur: 0.3}, {pixelate: 20}]
},
width: 100,
height: 200,
left: 100,
top: 100,
stroke: 'blue',
strokeWidth: 3
});
- Added an option to draw an arrow shape with the line drawing option.
imageEditor.startDrawingMode('LINE_DRAWING', {
width: 10,
color: 'rgba(255,0,0,0.5)',
arrowType: {
tail: 'chevron' // triangle
}
});
- Added autofocus option for
addText
api.
bug-fix
v3.10.0-alpha.0
chore: version up 3.10.0-alpha.0 dist update
v3.9.0
v3.8.0
Enhancement
- In the UI included option, it has been improved to change the input text value of the slider UI to change the value more accurately (#183)
- Improved behavior so that 'undoStack' is not reflected while dragging from silder UI with UI included option (#310)
- Added isSilent (not included in undoStack) parameter for
changeShape
,changeTextStyle
,applyFilter
api (#310) - After setting the Cropzone area by specifying a ratio, the ratio is maintained and resized when resizing (#124)
Bug fix
- Fixed incorrect reporting of 'objectMoved` event listener when moving cropzone (fixed #269)
- Fixed a bug in the undo run for each image editor menu (fixed #315).
- Fixed a bug where undoing the correct previous value would not work when undoing commands executed with the isSilent parameter of
rotate
andsetAngle
api. (fixed #307)
- Fixed a bug where undoing the correct previous value would not work when undoing commands executed with the isSilent parameter of
v3.7.3
bug-fix
- Fixed npm installation not installing properly on node.js stable version. (fixed #298)
- Fixed bug where the shape would not show while dragging to draw a 'shape' in certain areas. (fixed #297)
- Fixed the problem that the text underline function does not work (fixed #221)
- Fixed bug where saving crop guides with images if saving before cropping was applied. (fixed #237)
- Fixed a bug where
getCropzone
api returned null in images of certain resolutions. (fixed #114) - Fixed a bug where the behavior was changed to
move
during crop regionresize
. (fixed #118)
v3.7.2
bug-fix
- Fixed bug where the checkbox menu of the filter was not displayed when "white theme" was applied.
- Fixed a style issue where the "menuBar" would cover the entire editing area when the "menuBarPosition" position was set to "top".