Skip to content

Commit ff8efd4

Browse files
Updated readme
1 parent 0626c86 commit ff8efd4

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

README.md

+20-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ An Image cropper that is customizable
1111

1212
# CustomImageCrop
1313

14-
```
14+
```dart
1515
CustomImageCrop(
1616
cropController: controller,
1717
image: const AssetImage('assets/test.png'),
@@ -23,32 +23,48 @@ You can provide the image using any Imageprovider.
2323
## Parameters
2424

2525
### required image
26+
2627
The image that needs to be cropped
2728

2829
### cropController
30+
2931
The controller used to adjust the image and crop it.
3032

3133
### overlayColor
34+
3235
The color above the image that will be cropped
3336

3437
### backgroundColor
38+
3539
The color behind the image. This color will also be used when there are gaps/empty space after the cropping
3640

3741
### shape
42+
3843
The shape of the cropping path.
3944

4045
### cropPercentage
46+
4147
How big the crop should be in regards to the width and height available to the cropping widget.
4248

4349
### drawPath
50+
4451
How the border of the crop should be painted. default DottedCropPathPainter.drawPath and SolidCropPathPainter.drawPath are provided, but you can create/provide any CustomPaint.
4552

4653
### canRotate
54+
4755
Whether to allow the image to be rotated.
4856

4957
### customProgressIndicator
58+
5059
Custom widget for progress indicator.
5160

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+
5268
# Controller Methods
5369

5470
## addTransition
@@ -64,11 +80,13 @@ Add the position, angle and scale to the current state. This can be used to adju
6480
Set the position, angle and scale to the specified values. This can be used to center the image by pressing a button for example.
6581

6682
## reset
83+
6784
`void reset()`
6885

6986
Reset the image to its default state
7087

7188
## onCropImage
89+
7290
`Future<MemoryImage> onCropImage()`
7391

7492
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
7795

7896
See example/lib
7997

80-
```
98+
```dart
8199
class MyHomePage extends StatefulWidget {
82100
final String title;
83101
@@ -145,4 +163,3 @@ class _MyHomePageState extends State<MyHomePage> {
145163
}
146164
}
147165
```
148-

0 commit comments

Comments
 (0)