Get Stacked Image
Gets the stacked image from the livestack plugin for a given target and filter.
Query parameters
-
Whether to resize the image.
-
The quality of the image, ranging from 1 (worst) to 100 (best). -1 or omitted for png
-
The size of the image ([width]x[height]). Requires resize to be true.
-
The scale of the image. Requires resize to be true.
-
Stream the image to the client. This will stream the image in image/jpg or image/png format.
GET
/livestack/image/{target}/{filter}
curl \
--request GET 'http://localhost:1888/v2/api/livestack/image/M31/RGB'
Response examples (200)
{
"Response": "<base64 encoded image>",
"Error": "string",
"StatusCode": 200,
"Success": true,
"Type": "API"
}
Response examples (500)
{
"Response": "string",
"Error": "Unknown error",
"StatusCode": 500,
"Success": false,
"Type": "API"
}