QuickPicResize is a free API for dynamically resizing images to specific dimensions. This documentation provides details on how to use the API to resize images efficiently.
Endpoint: POST /resize/api
imageFile
(file): Image file to uploadwidth
(integer): Desired width of the resized imageheight
(integer): Desired height of the resized image
Resize an image with width 300px and height 200px.
curl -X POST -F "[email protected]" -F "width=300" -F "height=200" http://core.hyperdyn.cloud/resize/api
{
"status": "success",
"message": "Image resized successfully",
"resized_image_url": "http://core.hyperdyn.cloud/resized_image.jpg"
}
The API returns a JSON response with the following structure:
{
"status": "success" | "error",
"message": "Description of the result",
"resized_image_url": "URL of the resized image (if successful)"
}