Skip to content

Commit 5961b8b

Browse files
update to internal commit f1ae9d6c
1 parent 7f74baf commit 5961b8b

File tree

2 files changed

+0
-51
lines changed

2 files changed

+0
-51
lines changed

programming/android/api-reference/utility/image-processor.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ class ImageProcessor
2727
| Method | Description |
2828
| ------ | ----------- |
2929
| [`cropImage`](#cropimageimagedatarect) | Crops an image based on the provided rectangle. |
30-
| [`cropImage`](#cropimageimagedataquad) | Crops an image based on the provided quadrilateral. |
3130
| [`cropAndDeskewImage(imageData,quad,dstWidth,dstHeight,padding)`](#cropanddeskewimageimagedataquaddstwidthdstheightpaddingerrorcode) | Crops and deskew an image based on the provided quadrilateral and additional information. |
3231
| [`cropAndDeskewImage(imageData,quad)`](#cropanddeskewimageimagedataquad) | Crops and deskew an image based on the provided quadrilateral. |
3332
| [`adjustBrightness`](#adjustbrightness) | Adjusts the brightness of an image. |
@@ -58,24 +57,6 @@ ImageData cropImage(ImageData imageData, Rect rect) throws UtilityException{}
5857

5958
The cropped `ImageData`.
6059

61-
### cropImage(imageData,quad)
62-
63-
Crops an image based on the provided quadrilateral.
64-
65-
```java
66-
ImageData cropImage(ImageData imageData, Quadrilateral quad) throws UtilityException{}
67-
```
68-
69-
**Parameters**
70-
71-
`[in] imageData`: The `ImageData` to modify.
72-
73-
`[in] quad`: The `Quadrilateral` to crop the image.
74-
75-
**Return Value**
76-
77-
The cropped `ImageData`.
78-
7960
### cropAndDeskewImage(imageData,quad,dstWidth,dstHeight,padding,errorCode)
8061

8162
Crops and deskews an image based on the provided quadrilateral and additional information.

programming/ios/api-reference/utility/image-processor.md

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ class ImageProcessor : NSObject
3434
| Method | Description |
3535
| ------ | ----------- |
3636
| [`cropImage(imageData,rect)`](#cropimageimagedatarect) | Crops an image based on the provided rectangle or quadrilateral. |
37-
| [`cropImage(imageData,quad)`](#cropimageimagedataquad) | Crops an image based on the provided rectangle or quadrilateral. |
3837
| [`cropAndDeskewImage(imageData,quad,dstWidth,dstHeight,padding)`](#cropanddeskewimageimagedataquaddstwidthdstheightpaddingerrorcode) | Crops and deskew an image based on the provided quadrilateral and additional information. |
3938
| [`cropAndDeskewImage(imageData,quad)`](#cropanddeskewimageimagedataquad) | Crops and deskew an image based on the provided quadrilateral. |
4039
| [`adjust(imageData,brightness)`](#adjustbrightness) | Adjusts the brightness of an image. |
@@ -78,37 +77,6 @@ func cropImage(imageData: ImageData, rect: Rect, error: UnsafeMutablePointer<NSE
7877

7978
The cropped `ImageData`.
8079

81-
### cropImage(imageData,quad,error)
82-
83-
Crops an image based on the provided quadrilateral.
84-
85-
<div class="sample-code-prefix"></div>
86-
>- Objective-C
87-
>- Swift
88-
>
89-
>1.
90-
```objc
91-
- (DSImageData *)cropImage:(DSImageData *)imageData
92-
quad:(DSQuadrilateral *)quad
93-
error:(NSError * _Nullable * _Nullable)error;
94-
```
95-
2.
96-
```swift
97-
func cropImage(imageData: ImageData, quad: Quadrilateral, error: UnsafeMutablePointer<NSError?>?) -> ImageData
98-
```
99-
100-
**Parameters**
101-
102-
`imageData`: The `ImageData` to modify.
103-
104-
`quad`: The `Quadrilateral` to crop the image.
105-
106-
`error`: An `NSError` pointer. If an error occurs, it will represent the error information.
107-
108-
**Return Value**
109-
110-
The cropped `ImageData`.
111-
11280
### cropAndDeskewImage(imageData,quad,dstWidth,dstHeight,padding)
11381

11482
Crops and deskews an image based on the provided quadrilateral and additional information.

0 commit comments

Comments
 (0)