API: Image information

Detects the image format, and returns the width and height of an image.

Request
POST /process/info?input=0a6677...
input The input image ID.
Response
200 OK
{
  "format": "JPEG",
  "width": 800,
  "height": 600
}
format The detected image format.
width, height The width and height of the image in pixels.