Advanced image processing with base64 API integration
Upload images as base64, apply convolution effects, and integrate with our robust API
Base64-powered convolution algorithms at your fingertips
Seamlessly process images using base64 encoding with our API endpoints
Apply convolution effects in real-time with our optimized algorithms
Robust API endpoints for integration with your applications
Convert your image to base64 format and send it to our API endpoints.
Select from various convolution algorithms to transform your image.
Get your processed image back for display or download.
Select a service and process your image via base64 API
Click to upload an image
Supports JPG, PNG, etc.
POST /api/v1/anon/blurringService
Click to upload an image
Supports JPG, PNG, etc.
POST /api/v1/anon/edgeDetection
Click to upload an image
Supports JPG, PNG, etc.
POST /api/v1/anon/embossingService
Click to upload an image
Supports JPG, PNG, etc.
POST /api/v1/anon/customService
Integrate with our image convolution API
{
"name": "Optional image name",
"fileName": "image.jpg",
"choice": "SERVICE_SPECIFIC_VALUE", // For custom kernel, use "kernel" instead
"base64CodedData": "base64-encoded-image-string"
}
{
"message": "Success message",
"data": {
"serviceId": 12345,
"name": "Image name",
"filename": "image.jpg",
"convolutionType": "SERVICE_TYPE",
"choseTypeOrCustom": "SERVICE_SPECIFIC_VALUE"
}
}
This endpoint applies edge detection to an image using the specified direction.
Parameter | Type | Required | Description |
---|---|---|---|
choice | String | Yes | Edge direction: BOTH, HORIZONTAL, or VERTICAL |
This endpoint applies an embossing effect to an image using the specified direction.
Parameter | Type | Required | Description |
---|---|---|---|
choice | String | Yes | Emboss direction: TOP_LEFT, TOP, TOP_RIGHT, LEFT, RIGHT, BOTTOM_LEFT, BOTTOM, BOTTOM_RIGHT |
This endpoint applies a custom convolution kernel to an image.
Parameter | Type | Required | Description |
---|---|---|---|
kernel | Array of floats | Yes | Array of 9 numbers representing a 3x3 kernel matrix |
Response will appear here after testing...