Socket
Socket
Sign inDemoInstall

cloudmersive-image-api-client

Package Overview
Dependencies
38
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.2.5 to 1.2.6

14

docs/EditApi.md

@@ -14,3 +14,3 @@ # CloudmersiveImageApiClient.EditApi

[**editDrawText**](EditApi.md#editDrawText) | **POST** /image/edit/draw/text | Draw text onto an image
[**editDropShadow**](EditApi.md#editDropShadow) | **POST** /image/edit/drop-shadow/{x}/{y}/{sigma}/{opacity} | Add a customizeable drop shadow to an image
[**editDropShadow**](EditApi.md#editDropShadow) | **POST** /image/edit/drop-shadow/{X}/{Y}/{sigma}/{opacity} | Add a customizeable drop shadow to an image
[**editRotate**](EditApi.md#editRotate) | **POST** /image/edit/rotate/{degrees}/angle | Rotate an image any number of degrees

@@ -413,3 +413,3 @@

# **editDropShadow**
> 'Blob' editDropShadow(x, y, sigma, opacity, imageFile)
> 'Blob' editDropShadow(X, Y, sigma, opacity, imageFile)

@@ -433,5 +433,5 @@ Add a customizeable drop shadow to an image

var x = 56; // Number | Horizontal (X) offset of the drop shadow
var X = 56; // Number |
var y = 56; // Number | Vertical (Y) offset of the drop shadow
var Y = 56; // Number |

@@ -452,3 +452,3 @@ var sigma = 56; // Number | Sigma (blur distance) of the drop shadow

};
apiInstance.editDropShadow(x, y, sigma, opacity, imageFile, callback);
apiInstance.editDropShadow(X, Y, sigma, opacity, imageFile, callback);
```

@@ -460,4 +460,4 @@

------------- | ------------- | ------------- | -------------
**x** | **Number**| Horizontal (X) offset of the drop shadow |
**y** | **Number**| Vertical (Y) offset of the drop shadow |
**X** | **Number**| |
**Y** | **Number**| |
**sigma** | **Number**| Sigma (blur distance) of the drop shadow |

@@ -464,0 +464,0 @@ **opacity** | **Number**| Opacity of the drop shadow; 0 is 0% and 100 is 100% |

{
"name": "cloudmersive-image-api-client",
"version": "1.2.5",
"version": "1.2.6",
"description": "Image_Recognition_and_Processing_APIs_let_you_use_Machine_Learning_to_recognize_and_process_images_and_also_perform_useful_image_modification_operations_",

@@ -5,0 +5,0 @@ "license": "Unlicense",

@@ -8,3 +8,3 @@ # cloudmersive-image-api-client

- API version: v1
- Package version: 1.2.5
- Package version: 1.2.6

@@ -139,3 +139,3 @@

*CloudmersiveImageApiClient.EditApi* | [**editDrawText**](docs/EditApi.md#editDrawText) | **POST** /image/edit/draw/text | Draw text onto an image
*CloudmersiveImageApiClient.EditApi* | [**editDropShadow**](docs/EditApi.md#editDropShadow) | **POST** /image/edit/drop-shadow/{x}/{y}/{sigma}/{opacity} | Add a customizeable drop shadow to an image
*CloudmersiveImageApiClient.EditApi* | [**editDropShadow**](docs/EditApi.md#editDropShadow) | **POST** /image/edit/drop-shadow/{X}/{Y}/{sigma}/{opacity} | Add a customizeable drop shadow to an image
*CloudmersiveImageApiClient.EditApi* | [**editRotate**](docs/EditApi.md#editRotate) | **POST** /image/edit/rotate/{degrees}/angle | Rotate an image any number of degrees

@@ -142,0 +142,0 @@ *CloudmersiveImageApiClient.FaceApi* | [**faceCompare**](docs/FaceApi.md#faceCompare) | **POST** /image/face/compare-and-match | Compare and match faces

@@ -36,3 +36,3 @@ /**

* @module api/ArtisticApi
* @version 1.2.5
* @version 1.2.6
*/

@@ -39,0 +39,0 @@

@@ -36,3 +36,3 @@ /**

* @module api/EditApi
* @version 1.2.5
* @version 1.2.6
*/

@@ -444,4 +444,4 @@

* Add a customizeable drop shadow to the image
* @param {Number} x Horizontal (X) offset of the drop shadow
* @param {Number} y Vertical (Y) offset of the drop shadow
* @param {Number} X
* @param {Number} Y
* @param {Number} sigma Sigma (blur distance) of the drop shadow

@@ -453,13 +453,13 @@ * @param {Number} opacity Opacity of the drop shadow; 0 is 0% and 100 is 100%

*/
this.editDropShadow = function(x, y, sigma, opacity, imageFile, callback) {
this.editDropShadow = function(X, Y, sigma, opacity, imageFile, callback) {
var postBody = null;
// verify the required parameter 'x' is set
if (x === undefined || x === null) {
throw new Error("Missing the required parameter 'x' when calling editDropShadow");
// verify the required parameter 'X' is set
if (X === undefined || X === null) {
throw new Error("Missing the required parameter 'X' when calling editDropShadow");
}
// verify the required parameter 'y' is set
if (y === undefined || y === null) {
throw new Error("Missing the required parameter 'y' when calling editDropShadow");
// verify the required parameter 'Y' is set
if (Y === undefined || Y === null) {
throw new Error("Missing the required parameter 'Y' when calling editDropShadow");
}

@@ -484,4 +484,4 @@

var pathParams = {
'x': x,
'y': y,
'X': X,
'Y': Y,
'sigma': sigma,

@@ -506,3 +506,3 @@ 'opacity': opacity

return this.apiClient.callApi(
'/image/edit/drop-shadow/{x}/{y}/{sigma}/{opacity}', 'POST',
'/image/edit/drop-shadow/{X}/{Y}/{sigma}/{opacity}', 'POST',
pathParams, queryParams, collectionQueryParams, headerParams, formParams, postBody,

@@ -509,0 +509,0 @@ authNames, contentTypes, accepts, returnType, callback

@@ -36,3 +36,3 @@ /**

* @module api/FaceApi
* @version 1.2.5
* @version 1.2.6
*/

@@ -39,0 +39,0 @@

@@ -36,3 +36,3 @@ /**

* @module api/FilterApi
* @version 1.2.5
* @version 1.2.6
*/

@@ -39,0 +39,0 @@

@@ -36,3 +36,3 @@ /**

* @module api/InfoApi
* @version 1.2.5
* @version 1.2.6
*/

@@ -39,0 +39,0 @@

@@ -36,3 +36,3 @@ /**

* @module api/NsfwApi
* @version 1.2.5
* @version 1.2.6
*/

@@ -39,0 +39,0 @@

@@ -36,3 +36,3 @@ /**

* @module api/RecognizeApi
* @version 1.2.5
* @version 1.2.6
*/

@@ -39,0 +39,0 @@

@@ -36,3 +36,3 @@ /**

* @module api/ResizeApi
* @version 1.2.5
* @version 1.2.6
*/

@@ -39,0 +39,0 @@

@@ -35,3 +35,3 @@ /**

* @module ApiClient
* @version 1.2.5
* @version 1.2.6
*/

@@ -38,0 +38,0 @@

@@ -56,3 +56,3 @@ /**

* @module index
* @version 1.2.5
* @version 1.2.6
*/

@@ -59,0 +59,0 @@ var exports = {

@@ -39,3 +39,3 @@ /**

* @module model/AgeDetectionResult
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/ColorResult
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/DetectedLicensePlate
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/DetectedObject
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/DominantColorResult
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/DrawPolygonInstance
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/DrawPolygonRequest
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/DrawRectangleInstance
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/DrawRectangleRequest
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/DrawTextInstance
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/DrawTextRequest
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/Face
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/FaceCompareResponse
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/FaceLocateResponse
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/FaceLocateWithLandmarksResponse
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/FaceMatch
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/FacePoint
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/FaceWithLandmarks
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/FindSymbolResult
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/FineTextDetectionResult
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/FineTextItem
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/GenderDetectionResult
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/ImageDescriptionResponse
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/NsfwResult
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/ObjectDetectionResult
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/PersonWithAge
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/PersonWithGender
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/PolygonPoint
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/RecognitionOutcome
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/TextDetectionResult
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/TextItem
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

@@ -39,3 +39,3 @@ /**

* @module model/VehicleLicensePlateDetectionResult
* @version 1.2.5
* @version 1.2.6
*/

@@ -42,0 +42,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc