@syncfusion/ej2-image-editor 20.3.50 → 20.4.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +16 -1
- package/CHANGELOG.md +6 -0
- package/README.md +65 -2
- package/dist/ej2-image-editor.umd.min.js +2 -2
- package/dist/ej2-image-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-image-editor.es2015.js +2639 -623
- package/dist/es6/ej2-image-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-image-editor.es5.js +2676 -652
- package/dist/es6/ej2-image-editor.es5.js.map +1 -1
- package/dist/global/ej2-image-editor.min.js +2 -2
- package/dist/global/ej2-image-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +22 -24
- package/src/image-editor/image-editor-model.d.ts +102 -19
- package/src/image-editor/image-editor.d.ts +232 -31
- package/src/image-editor/image-editor.js +2676 -651
- package/styles/bootstrap-dark.css +36 -0
- package/styles/bootstrap.css +36 -0
- package/styles/bootstrap4.css +36 -0
- package/styles/bootstrap5-dark.css +36 -0
- package/styles/bootstrap5.css +36 -0
- package/styles/fabric-dark.css +36 -0
- package/styles/fabric.css +36 -0
- package/styles/fluent-dark.css +36 -0
- package/styles/fluent.css +36 -0
- package/styles/highcontrast-light.css +36 -0
- package/styles/highcontrast.css +36 -0
- package/styles/image-editor/_bootstrap-dark-definition.scss +1 -0
- package/styles/image-editor/_bootstrap-definition.scss +1 -0
- package/styles/image-editor/_bootstrap4-definition.scss +1 -0
- package/styles/image-editor/_bootstrap5-definition.scss +1 -0
- package/styles/image-editor/_fabric-dark-definition.scss +1 -0
- package/styles/image-editor/_fabric-definition.scss +1 -0
- package/styles/image-editor/_fluent-definition.scss +1 -0
- package/styles/image-editor/_fusionnew-definition.scss +1 -0
- package/styles/image-editor/_highcontrast-definition.scss +1 -0
- package/styles/image-editor/_highcontrast-light-definition.scss +1 -0
- package/styles/image-editor/_layout.scss +38 -0
- package/styles/image-editor/_material-dark-definition.scss +1 -0
- package/styles/image-editor/_material-definition.scss +1 -0
- package/styles/image-editor/_material3-definition.scss +1 -0
- package/styles/image-editor/_tailwind-definition.scss +1 -0
- package/styles/image-editor/_theme.scss +11 -0
- package/styles/image-editor/bootstrap-dark.css +36 -0
- package/styles/image-editor/bootstrap-dark.scss +1 -0
- package/styles/image-editor/bootstrap.css +36 -0
- package/styles/image-editor/bootstrap.scss +1 -0
- package/styles/image-editor/bootstrap4.css +36 -0
- package/styles/image-editor/bootstrap4.scss +1 -0
- package/styles/image-editor/bootstrap5-dark.css +36 -0
- package/styles/image-editor/bootstrap5-dark.scss +1 -0
- package/styles/image-editor/bootstrap5.css +36 -0
- package/styles/image-editor/bootstrap5.scss +1 -0
- package/styles/image-editor/fabric-dark.css +36 -0
- package/styles/image-editor/fabric-dark.scss +1 -0
- package/styles/image-editor/fabric.css +36 -0
- package/styles/image-editor/fabric.scss +1 -0
- package/styles/image-editor/fluent-dark.css +36 -0
- package/styles/image-editor/fluent-dark.scss +1 -0
- package/styles/image-editor/fluent.css +36 -0
- package/styles/image-editor/fluent.scss +1 -0
- package/styles/image-editor/highcontrast-light.css +36 -0
- package/styles/image-editor/highcontrast-light.scss +1 -0
- package/styles/image-editor/highcontrast.css +36 -0
- package/styles/image-editor/highcontrast.scss +1 -0
- package/styles/image-editor/material-dark.css +36 -0
- package/styles/image-editor/material-dark.scss +1 -0
- package/styles/image-editor/material.css +36 -0
- package/styles/image-editor/material.scss +1 -0
- package/styles/image-editor/tailwind-dark.css +36 -0
- package/styles/image-editor/tailwind-dark.scss +1 -0
- package/styles/image-editor/tailwind.css +36 -0
- package/styles/image-editor/tailwind.scss +1 -0
- package/styles/material-dark.css +36 -0
- package/styles/material.css +36 -0
- package/styles/tailwind-dark.css +36 -0
- package/styles/tailwind.css +36 -0
|
@@ -3,7 +3,68 @@ import { EmitType } from '@syncfusion/ej2-base';
|
|
|
3
3
|
import { SignatureBase } from '@syncfusion/ej2-inputs';
|
|
4
4
|
import { ItemModel, ClickEventArgs } from '@syncfusion/ej2-navigations';
|
|
5
5
|
import { OpenEventArgs } from '@syncfusion/ej2-popups';
|
|
6
|
-
import {
|
|
6
|
+
import { ChildProperty } from '@syncfusion/ej2-base';
|
|
7
|
+
import { ImageEditorModel, FinetuneSettingsModel } from './image-editor-model';
|
|
8
|
+
/**
|
|
9
|
+
* Interface for image finetune values.
|
|
10
|
+
*/
|
|
11
|
+
export interface ImageFinetuneValue {
|
|
12
|
+
/**
|
|
13
|
+
* Specifies the minimum value of finetune option.
|
|
14
|
+
* @default null
|
|
15
|
+
*/
|
|
16
|
+
min: number;
|
|
17
|
+
/**
|
|
18
|
+
* Specifies the maximum value of finetune option.
|
|
19
|
+
* @default null
|
|
20
|
+
*/
|
|
21
|
+
max: number;
|
|
22
|
+
/**
|
|
23
|
+
* Specifies the default value of finetune option.
|
|
24
|
+
* @default null
|
|
25
|
+
*/
|
|
26
|
+
defaultValue: number;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Interface for image finetune values.
|
|
30
|
+
*/
|
|
31
|
+
export declare class FinetuneSettings extends ChildProperty<FinetuneSettings> {
|
|
32
|
+
/**
|
|
33
|
+
* Specifies the brightness level of image.
|
|
34
|
+
* @default null
|
|
35
|
+
*/
|
|
36
|
+
brightness: ImageFinetuneValue;
|
|
37
|
+
/**
|
|
38
|
+
* Specifies the contrast level image.
|
|
39
|
+
* @default null
|
|
40
|
+
*/
|
|
41
|
+
contrast: ImageFinetuneValue;
|
|
42
|
+
/**
|
|
43
|
+
* Specifies the hue level image.
|
|
44
|
+
* @default null
|
|
45
|
+
*/
|
|
46
|
+
hue: ImageFinetuneValue;
|
|
47
|
+
/**
|
|
48
|
+
* Specifies the saturation level image.
|
|
49
|
+
* @default null
|
|
50
|
+
*/
|
|
51
|
+
saturation: ImageFinetuneValue;
|
|
52
|
+
/**
|
|
53
|
+
* Specifies the exposure level image.
|
|
54
|
+
* @default null
|
|
55
|
+
*/
|
|
56
|
+
exposure: ImageFinetuneValue;
|
|
57
|
+
/**
|
|
58
|
+
* Specifies the opacity level image.
|
|
59
|
+
* @default null
|
|
60
|
+
*/
|
|
61
|
+
opacity: ImageFinetuneValue;
|
|
62
|
+
/**
|
|
63
|
+
* Specifies the blur level image.
|
|
64
|
+
* @default null
|
|
65
|
+
*/
|
|
66
|
+
blur: ImageFinetuneValue;
|
|
67
|
+
}
|
|
7
68
|
/**
|
|
8
69
|
* Image Editor is a graphical user interface that helps to edit an image by performing actions like selection,
|
|
9
70
|
* cropping, rotating, inserting text and shapes (rectangles, ellipses, lines), and drawing free hand on top of an image.
|
|
@@ -32,7 +93,6 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
32
93
|
private baseImg;
|
|
33
94
|
private textBox;
|
|
34
95
|
private degree;
|
|
35
|
-
private isUndoRedo;
|
|
36
96
|
private dragCanvas;
|
|
37
97
|
private dragElement;
|
|
38
98
|
private keyHistory;
|
|
@@ -55,24 +115,18 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
55
115
|
private pannStart;
|
|
56
116
|
private pannEnd;
|
|
57
117
|
private togglePan;
|
|
118
|
+
private disablePan;
|
|
58
119
|
private lastX;
|
|
59
120
|
private lastY;
|
|
60
121
|
private dragStart;
|
|
61
|
-
private dragged;
|
|
62
122
|
private factor;
|
|
63
123
|
private currFlipState;
|
|
64
124
|
private touchEndPoint;
|
|
65
|
-
private flipMethod;
|
|
66
|
-
private flipDirection;
|
|
67
125
|
private prevX;
|
|
68
126
|
private currX;
|
|
69
127
|
private prevY;
|
|
70
128
|
private currY;
|
|
71
129
|
private togglePen;
|
|
72
|
-
private rotateMethod;
|
|
73
|
-
private isBoldbtn;
|
|
74
|
-
private isItalicbtn;
|
|
75
|
-
private lastAction;
|
|
76
130
|
private currentToolbar;
|
|
77
131
|
private textStartPoints;
|
|
78
132
|
private fontSizeColl;
|
|
@@ -91,9 +145,27 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
91
145
|
private isTimer;
|
|
92
146
|
private timer;
|
|
93
147
|
private isScreenOriented;
|
|
148
|
+
private tempObjColl;
|
|
149
|
+
private isFirstMove;
|
|
150
|
+
private startTouches;
|
|
151
|
+
private tempTouches;
|
|
152
|
+
private adjustmentLevel;
|
|
153
|
+
private tempAdjustmentLevel;
|
|
154
|
+
private adjustmentValue;
|
|
155
|
+
private initialAdjustmentValue;
|
|
156
|
+
private tempAdjustmentValue;
|
|
157
|
+
private currentFilter;
|
|
158
|
+
private tempFilter;
|
|
159
|
+
private canvasFilter;
|
|
160
|
+
private tempImageData;
|
|
161
|
+
private sharpenedImgData;
|
|
162
|
+
private tempSharpenFilter;
|
|
163
|
+
private tempBWFilter;
|
|
164
|
+
private isBrightnessAdjusted;
|
|
165
|
+
private isInitialLoading;
|
|
94
166
|
/**
|
|
95
167
|
* Defines class/multiple classes separated by a space for customizing Image Editor UI.
|
|
96
|
-
* default ''
|
|
168
|
+
* @default ''
|
|
97
169
|
```html
|
|
98
170
|
* <div id='imageeditor'></div>
|
|
99
171
|
* ```
|
|
@@ -107,18 +179,18 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
107
179
|
cssClass: string;
|
|
108
180
|
/**
|
|
109
181
|
* Specifies whether the Image Editor is disabled.
|
|
110
|
-
* default false
|
|
182
|
+
* @default false
|
|
111
183
|
*/
|
|
112
184
|
disabled: boolean;
|
|
113
185
|
/**
|
|
114
186
|
* Specifies the height of the Image Editor.
|
|
115
|
-
* default '100%'
|
|
187
|
+
* @default '100%'
|
|
116
188
|
*/
|
|
117
189
|
height: string;
|
|
118
190
|
/**
|
|
119
191
|
* Specifies the theme of the Image Editor. The shape selection appearance will be decided based on this property.
|
|
120
192
|
* The property supports all the built-in themes of Syncfusion.
|
|
121
|
-
*
|
|
193
|
+
*
|
|
122
194
|
* @isenumeration true
|
|
123
195
|
* @default Theme.Bootstrap5
|
|
124
196
|
* @asptype Theme
|
|
@@ -130,17 +202,16 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
130
202
|
* If the property is defined as empty collection, the toolbar will not be rendered.
|
|
131
203
|
* Suppose the property is not defined in control, an image editor’s toolbar will be rendered with preconfigured toolbar commands.
|
|
132
204
|
* The preconfigured toolbar commands are
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
-
*
|
|
136
|
-
*
|
|
137
|
-
*
|
|
138
|
-
*
|
|
139
|
-
*
|
|
140
|
-
*
|
|
141
|
-
*
|
|
142
|
-
*
|
|
143
|
-
* default null
|
|
205
|
+
* Crop: helps to crop an image as ellipse, square, various ratio aspects, custom selection with resize, drag and drop.
|
|
206
|
+
* Annotate: help to insert a shape on image that supports rectangle, ellipse, line, text and freehand drawing with resize, drag and drop, and customize its appearance.
|
|
207
|
+
* Transform: helps to rotate and flip an image.
|
|
208
|
+
* ZoomIn: performs zoom-in an image.
|
|
209
|
+
* ZoomOut: performs zoom-out an image.
|
|
210
|
+
* Pan: performs panning once zoomed an image.
|
|
211
|
+
* Move: disable the pan action and move to perform other actions such as insert a shape, transform, and more.
|
|
212
|
+
* Save: save the modified image.
|
|
213
|
+
* Open: open an image to perform editing.
|
|
214
|
+
* Reset: reset the modification and restore the original image.
|
|
144
215
|
```html
|
|
145
216
|
* <div id='imageeditor'></div>
|
|
146
217
|
* ```
|
|
@@ -180,7 +251,7 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
180
251
|
toolbarTemplate: string;
|
|
181
252
|
/**
|
|
182
253
|
* Specifies the width of the Image Editor.
|
|
183
|
-
* default 100%
|
|
254
|
+
* @default '100%'
|
|
184
255
|
*/
|
|
185
256
|
width: string;
|
|
186
257
|
/**
|
|
@@ -266,6 +337,18 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
266
337
|
* @private
|
|
267
338
|
*/
|
|
268
339
|
enablePersistence: boolean;
|
|
340
|
+
/**
|
|
341
|
+
* It can be done using the filter property of the canvas. The following fine tunes can be supported.
|
|
342
|
+
* Brightness: The intensity of the primary colors grows with increased brightness, but the color itself does not change. It can be done by changing brightness and opacity property.
|
|
343
|
+
* Contrast: The contrast of an image refers to the difference between the light pixels and dark pixels. Low contrast images contain either a narrow range of colors while high contrast images have bright highlights and dark shadows. It can be done by changing contrast property.
|
|
344
|
+
* Hue: Hue distinguishes one color from another and is described using common color names such as green, blue, red, yellow, etc. Value refers to the lightness or darkness of a color. It can be controlled by hue-rotate property.
|
|
345
|
+
* Saturation: If saturation increases, colors appear sharper or purer. As saturation decreases, colors appear more washed-out or faded. It can be controlled by saturation and brightness property.
|
|
346
|
+
* Exposure: If exposure increases, intensity of light appears brighter. As exposure decreases, intensity of light decreases. Exposure can be controlled by brightness property.
|
|
347
|
+
* Opacity: The state or quality of being opaque or transparent, not allowing light to pass through the image. Opacity can be controlled by opacity property.
|
|
348
|
+
* Blur : Adjusting the blur can make an image unfocused or unclear. Blur can be controlled by blur property.
|
|
349
|
+
*
|
|
350
|
+
*/
|
|
351
|
+
finetuneSettings: FinetuneSettingsModel;
|
|
269
352
|
/**
|
|
270
353
|
* Gets or sets the last signature url to maintain the persist state.
|
|
271
354
|
*
|
|
@@ -356,6 +439,18 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
356
439
|
* @event toolbarItemClicked
|
|
357
440
|
*/
|
|
358
441
|
toolbarItemClicked: EmitType<ClickEventArgs>;
|
|
442
|
+
/**
|
|
443
|
+
* Triggers when applying filter to an image.
|
|
444
|
+
*
|
|
445
|
+
* @event imageFiltering
|
|
446
|
+
*/
|
|
447
|
+
imageFiltering: EmitType<ImageFilterEventArgs>;
|
|
448
|
+
/**
|
|
449
|
+
* Triggers when applying fine tune to an image.
|
|
450
|
+
*
|
|
451
|
+
* @event fineTuneValueChanging
|
|
452
|
+
*/
|
|
453
|
+
fineTuneValueChanging: EmitType<FinetuneEventArgs>;
|
|
359
454
|
/**
|
|
360
455
|
*
|
|
361
456
|
* Constructor for creating the widget
|
|
@@ -400,6 +495,7 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
400
495
|
onPropertyChanged(newProperties: ImageEditorModel, oldProperties?: ImageEditorModel): void;
|
|
401
496
|
destroy(): void;
|
|
402
497
|
initialize(): void;
|
|
498
|
+
private updateFinetunes;
|
|
403
499
|
/**
|
|
404
500
|
*
|
|
405
501
|
* This Method will add events to component (element, event, method, current reference)
|
|
@@ -414,10 +510,14 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
414
510
|
* @returns {void}.
|
|
415
511
|
*/
|
|
416
512
|
private unwireEvent;
|
|
513
|
+
private initializeFilter;
|
|
514
|
+
private destroySubComponents;
|
|
417
515
|
private updateTheme;
|
|
418
516
|
private toPascalCase;
|
|
419
517
|
private createCanvas;
|
|
420
518
|
private createToolbar;
|
|
519
|
+
private createContextualToolbar;
|
|
520
|
+
private updateContextualToolbar;
|
|
421
521
|
private createBottomToolbar;
|
|
422
522
|
private initBottomToolbar;
|
|
423
523
|
private toolbarTemplateFn;
|
|
@@ -446,34 +546,58 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
446
546
|
private getFontSizeItems;
|
|
447
547
|
private initTextToolbarItem;
|
|
448
548
|
private createTextColor;
|
|
549
|
+
private pushActItemIntoObj;
|
|
449
550
|
private createTextBtn;
|
|
450
551
|
private getFontSizes;
|
|
451
552
|
private getTextAreaWidth;
|
|
553
|
+
private updateObjColl;
|
|
452
554
|
private applyFontStyle;
|
|
453
555
|
private initZoomToolbarItem;
|
|
556
|
+
private contextualToolbarClicked;
|
|
454
557
|
private defToolbarClicked;
|
|
558
|
+
private okBtn;
|
|
559
|
+
private unselectBtn;
|
|
560
|
+
private refreshSlider;
|
|
561
|
+
private updateAdjustment;
|
|
562
|
+
private updateBrightnessFilter;
|
|
563
|
+
private autoEnablePan;
|
|
564
|
+
private setTempFilterValue;
|
|
565
|
+
private getDefaultFilter;
|
|
566
|
+
private setAdjustment;
|
|
567
|
+
private renderSlider;
|
|
568
|
+
private getCurrAdjustmentValue;
|
|
569
|
+
private setCurrAdjustmentValue;
|
|
455
570
|
private cancelPan;
|
|
456
571
|
private callMainToolbar;
|
|
457
572
|
private cancelItems;
|
|
458
573
|
private gradient;
|
|
459
574
|
private applyPenDraw;
|
|
575
|
+
private redrawImgWithObj;
|
|
460
576
|
private refreshToolbar;
|
|
577
|
+
private getAdjustmentToolbarItem;
|
|
578
|
+
private getFilterToolbarItem;
|
|
461
579
|
private getPenToolbarItem;
|
|
462
580
|
private initPenToolbarItem;
|
|
463
581
|
private createPenColor;
|
|
464
582
|
private createPenBtn;
|
|
465
583
|
private setPenStroke;
|
|
584
|
+
private getPenStroke;
|
|
585
|
+
private initAdjustmentToolbarItem;
|
|
586
|
+
private initFilterToolbarItem;
|
|
587
|
+
private createCanvasFilter;
|
|
466
588
|
private updateCanvas;
|
|
467
589
|
private imageOnLoad;
|
|
468
590
|
private refreshActiveObj;
|
|
469
591
|
private redrawText;
|
|
470
592
|
private setTextSelection;
|
|
471
|
-
private updateUndoRedoColl;
|
|
472
593
|
private fileSelect;
|
|
473
594
|
private findTextPoint;
|
|
474
595
|
private getStrokeWidth;
|
|
475
596
|
private updateToolbarItems;
|
|
476
597
|
private setTimer;
|
|
598
|
+
private targetTouches;
|
|
599
|
+
private calculateScale;
|
|
600
|
+
private getDistance;
|
|
477
601
|
private touchStartHandler;
|
|
478
602
|
private mouseDownEventHandler;
|
|
479
603
|
private mouseMoveEventHandler;
|
|
@@ -483,10 +607,12 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
483
607
|
private canvasMouseDownHandler;
|
|
484
608
|
private canvasMouseMoveHandler;
|
|
485
609
|
private canvasMouseUpHandler;
|
|
610
|
+
private setPanPoints;
|
|
486
611
|
private textKeyDown;
|
|
487
612
|
private adjustToScreen;
|
|
488
613
|
private screenOrientation;
|
|
489
614
|
private windowResizeHandler;
|
|
615
|
+
private drawPanImg;
|
|
490
616
|
private redrawImg;
|
|
491
617
|
private updateContext;
|
|
492
618
|
private scaleNonUniform;
|
|
@@ -495,6 +621,7 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
495
621
|
private redraw;
|
|
496
622
|
private applyCurrActObj;
|
|
497
623
|
private updateTextFromTextArea;
|
|
624
|
+
private setTextBoxStylesToActObj;
|
|
498
625
|
private redrawActObj;
|
|
499
626
|
private setTextBoxPos;
|
|
500
627
|
private setTextBoxPoints;
|
|
@@ -546,7 +673,6 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
546
673
|
private addLetter;
|
|
547
674
|
private updateFontStyles;
|
|
548
675
|
private updateInMemoryCanvas;
|
|
549
|
-
private drawBaseImg;
|
|
550
676
|
private calcPrevRatio;
|
|
551
677
|
private textFlipDegree;
|
|
552
678
|
private rotateText;
|
|
@@ -563,6 +689,27 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
563
689
|
private drawPen;
|
|
564
690
|
private getObjDetails;
|
|
565
691
|
private isPointsInRange;
|
|
692
|
+
private updateInMemoryContext;
|
|
693
|
+
private clearActObj;
|
|
694
|
+
private rotateMultiple;
|
|
695
|
+
private setBrightness;
|
|
696
|
+
private setContrast;
|
|
697
|
+
private setHue;
|
|
698
|
+
private setSaturation;
|
|
699
|
+
private setOpacity;
|
|
700
|
+
private setBlur;
|
|
701
|
+
private setExposure;
|
|
702
|
+
private setFilter;
|
|
703
|
+
private setBlackAndWhiteFilter;
|
|
704
|
+
private setSharpness;
|
|
705
|
+
private replaceBWSharpenData;
|
|
706
|
+
private updateBWSharpness;
|
|
707
|
+
private getSharpenData;
|
|
708
|
+
private getFilterValue;
|
|
709
|
+
private setFilterValue;
|
|
710
|
+
private getSaturationFilterValue;
|
|
711
|
+
private setSaturationFilterValue;
|
|
712
|
+
private getBlackAndWhiteData;
|
|
566
713
|
/**
|
|
567
714
|
* Clear a current selection.
|
|
568
715
|
*
|
|
@@ -576,7 +723,6 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
576
723
|
* @returns {boolean}.
|
|
577
724
|
*/
|
|
578
725
|
crop(): boolean;
|
|
579
|
-
private updateInMemoryContext;
|
|
580
726
|
/**
|
|
581
727
|
* Flips an image by horizontally or vertically.
|
|
582
728
|
*
|
|
@@ -651,9 +797,18 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
651
797
|
*
|
|
652
798
|
* @param {boolean} value - Specifies a value whether enable or disable freehand drawing.
|
|
653
799
|
*
|
|
654
|
-
*
|
|
800
|
+
* @returns {void}.
|
|
801
|
+
* @private
|
|
655
802
|
*/
|
|
656
803
|
freeHandDraw(value: boolean): void;
|
|
804
|
+
/**
|
|
805
|
+
* Enable or disable a freehand drawing in an Image Editor.
|
|
806
|
+
*
|
|
807
|
+
* @param {boolean} value - Specifies a value whether enable or disable freehand drawing.
|
|
808
|
+
*
|
|
809
|
+
* @returns {void}.
|
|
810
|
+
*/
|
|
811
|
+
freehandDraw(value: boolean): void;
|
|
657
812
|
/**
|
|
658
813
|
* Enable or disable a panning on the Image Editor.
|
|
659
814
|
*
|
|
@@ -822,6 +977,22 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
822
977
|
* @returns {void}.
|
|
823
978
|
*/
|
|
824
979
|
update(): void;
|
|
980
|
+
/**
|
|
981
|
+
* To apply the filters to an image
|
|
982
|
+
*
|
|
983
|
+
* @param {ImageFilterOptions } filterOption - Specifies the filter options to the image.
|
|
984
|
+
* @returns {void}.
|
|
985
|
+
*/
|
|
986
|
+
applyImageFilter(filterOption: ImageFilterOptions): void;
|
|
987
|
+
/**
|
|
988
|
+
* To apply the filters to an image
|
|
989
|
+
*
|
|
990
|
+
* @param {ImageFinetuneOptions } finetuneOption - Specifies the finetune options to the image.
|
|
991
|
+
* @param {number } value - Specifies the value for finetuning the image.
|
|
992
|
+
* @returns {void}.
|
|
993
|
+
*
|
|
994
|
+
*/
|
|
995
|
+
finetuneImage(finetuneOption: ImageFinetuneOptions, value: number): void;
|
|
825
996
|
/**
|
|
826
997
|
* To check whether the undo collection is empty or not.
|
|
827
998
|
*
|
|
@@ -896,7 +1067,7 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
896
1067
|
/**
|
|
897
1068
|
* To save the signature with the given file type and file name.
|
|
898
1069
|
*
|
|
899
|
-
* @param {
|
|
1070
|
+
* @param {FileType} type - specify type of the file to be saved a signature.
|
|
900
1071
|
* @param {string} fileName - specify name of the file to be saved a signature.
|
|
901
1072
|
*
|
|
902
1073
|
* @returns {void}.
|
|
@@ -913,7 +1084,7 @@ export declare class ImageEditor extends SignatureBase implements INotifyPropert
|
|
|
913
1084
|
/**
|
|
914
1085
|
* Returns the persistence data for component.
|
|
915
1086
|
*
|
|
916
|
-
* @returns any.
|
|
1087
|
+
* @returns {any}.
|
|
917
1088
|
* @private
|
|
918
1089
|
*/
|
|
919
1090
|
getLocalData(): any;
|
|
@@ -938,6 +1109,14 @@ export declare type Theme = 'Bootstrap5' | 'Bootstrap5Dark' | 'Tailwind' | 'Tail
|
|
|
938
1109
|
* Defines the toolbar items for Image Editor.
|
|
939
1110
|
*/
|
|
940
1111
|
export declare type ImageEditorCommands = 'Crop' | 'Transform' | 'Annotate' | 'ZoomIn' | 'ZoomOut' | 'Open' | 'Reset' | 'Save' | 'Pan' | 'Move' | 'Pen' | 'Line' | 'Rectangle' | 'Ellipse' | 'Text' | 'CustomSelection' | 'CircleSelection' | 'SquareSelection' | 'RatioSelection' | 'RotateLeft' | 'RotateRight' | 'FlipHorizontal' | 'FlipVertical';
|
|
1112
|
+
/**
|
|
1113
|
+
* Defines the image filter options
|
|
1114
|
+
*/
|
|
1115
|
+
export declare type ImageFilterOptions = 'Default' | 'Chrome' | 'Cold' | 'Warm' | 'Gray Scale' | 'Sepia' | 'Invert';
|
|
1116
|
+
/**
|
|
1117
|
+
* Defines the image filter options
|
|
1118
|
+
*/
|
|
1119
|
+
export declare type ImageFinetuneOptions = 'Brightness' | 'Contrast' | 'Hue' | 'Saturation' | 'Exposure' | 'Opacity' | 'Blur';
|
|
941
1120
|
/**
|
|
942
1121
|
* Interface for zoom transition occur in the imageEditor.
|
|
943
1122
|
*/
|
|
@@ -1142,3 +1321,25 @@ export interface ShapeSettings {
|
|
|
1142
1321
|
*/
|
|
1143
1322
|
color?: string;
|
|
1144
1323
|
}
|
|
1324
|
+
/**
|
|
1325
|
+
* Interface for filter option for the image.
|
|
1326
|
+
*/
|
|
1327
|
+
export interface ImageFilterEventArgs {
|
|
1328
|
+
/**
|
|
1329
|
+
* Specifies the when applying filter to an image.
|
|
1330
|
+
*/
|
|
1331
|
+
filter: ImageFilterOptions;
|
|
1332
|
+
}
|
|
1333
|
+
/**
|
|
1334
|
+
* Interface for filter option for the image.
|
|
1335
|
+
*/
|
|
1336
|
+
export interface FinetuneEventArgs {
|
|
1337
|
+
/**
|
|
1338
|
+
* Specifies the type of fine tunes.
|
|
1339
|
+
*/
|
|
1340
|
+
finetune: ImageFinetuneOptions;
|
|
1341
|
+
/**
|
|
1342
|
+
* Specifies the value of the fine tunes.
|
|
1343
|
+
*/
|
|
1344
|
+
value: number;
|
|
1345
|
+
}
|