Creates a new image from a given URL
The first step to start processing images with the IMG Processing API is to create an Image Object. You can create an Image object by uploading an image file or by providing a URL to an existing image.
This endpoint allows you to create an Image object by providing a URL to an existing image. The API will download the image from the provided URL, so make sure the URL is accessible and the image is publicly available.
For security reasons, the API only accept images from the following origins:
Images published on IMG Processing has the following format:
https://storage.img-processing.com/*
You can use either pre-signed (recommended) or publicly accessible URLs.
Amazon S3 URLs must match one of the following formats:
https://*.s3.*.amazonaws.com/*
https://*.s3.amazonaws.com/*
https://s3.amazonaws.com/*
You can use either pre-signed (recommended) or publicly accessible URLs.
Azure Blob Storage URLs must match the following format:
https://*.blob.core.windows.net/*
You can use either pre-signed (recommended) or publicly accessible URLs.
Cloudflare R2 URLs must match the following format:
https://*.r2.dev/*
You can use publicly accessible URLs.
Dropbox URLs must must match the following format:
https://www.dropbox.com/*
You can use either pre-signed (recommended) or publicly accessible URLs.
Google Cloud Storage URLs must match the following format:
https://storage.googleapis.com/*
You can use publicly accessible URLs.
Google Drive URLs must must match the following format:
https://drive.google.com/*
You can use publicly accessible URLs.
OneDrive URLs must must match the following format:
https://1drv.ms/*
API Key for authentication
The API will return the created Image object in the response body.
The Image object represents an image processed using the IMG Processing API. The object contains information about the image, such as its URL, size, and format. The Image object is returned in the response body of all image processing requests.