You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+20-3
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ An Image cropper that is customizable
11
11
12
12
# CustomImageCrop
13
13
14
-
```
14
+
```dart
15
15
CustomImageCrop(
16
16
cropController: controller,
17
17
image: const AssetImage('assets/test.png'),
@@ -23,32 +23,48 @@ You can provide the image using any Imageprovider.
23
23
## Parameters
24
24
25
25
### required image
26
+
26
27
The image that needs to be cropped
27
28
28
29
### cropController
30
+
29
31
The controller used to adjust the image and crop it.
30
32
31
33
### overlayColor
34
+
32
35
The color above the image that will be cropped
33
36
34
37
### backgroundColor
38
+
35
39
The color behind the image. This color will also be used when there are gaps/empty space after the cropping
36
40
37
41
### shape
42
+
38
43
The shape of the cropping path.
39
44
40
45
### cropPercentage
46
+
41
47
How big the crop should be in regards to the width and height available to the cropping widget.
42
48
43
49
### drawPath
50
+
44
51
How the border of the crop should be painted. default DottedCropPathPainter.drawPath and SolidCropPathPainter.drawPath are provided, but you can create/provide any CustomPaint.
45
52
46
53
### canRotate
54
+
47
55
Whether to allow the image to be rotated.
48
56
49
57
### customProgressIndicator
58
+
50
59
Custom widget for progress indicator.
51
60
61
+
### ratio
62
+
63
+
Ratio of the cropping area.
64
+
If ` shape`` is set to `CustomCropShape.Ratio`, this property is required.
65
+
For example, to create a square crop area, use `[`Ratio(width: 1, height: 1)`.
66
+
To create a rectangular crop area with a 16:9 aspect ratio, use `[`Ratio(width: 16, height: 9)`.
67
+
52
68
# Controller Methods
53
69
54
70
## addTransition
@@ -64,11 +80,13 @@ Add the position, angle and scale to the current state. This can be used to adju
64
80
Set the position, angle and scale to the specified values. This can be used to center the image by pressing a button for example.
65
81
66
82
## reset
83
+
67
84
`void reset()`
68
85
69
86
Reset the image to its default state
70
87
71
88
## onCropImage
89
+
72
90
`Future<MemoryImage> onCropImage()`
73
91
74
92
Crops the image in its current state, this will return a MemoryImage that contains the cropped image
@@ -77,7 +95,7 @@ Crops the image in its current state, this will return a MemoryImage that contai
77
95
78
96
See example/lib
79
97
80
-
```
98
+
```dart
81
99
class MyHomePage extends StatefulWidget {
82
100
final String title;
83
101
@@ -145,4 +163,3 @@ class _MyHomePageState extends State<MyHomePage> {
0 commit comments