HTTP Image

The http Image Provider fetches an image from an external HTTP server.

Field name Value Description
Required fields
type ImageProvider.Type stillimage
source FileLocation A FileLocation that references an image on a remote HTTP server. The current context (frame number, session/token ID and query parameters) are evaluated before making the request.
Optional fields
httpalwaysload Boolean If true, the image will not be cached and re-fetched for every session.
width Integer The width of the rendered image. If not specified the width will be inferred from the loaded image.
height Integer The height of the rendered image. If not specified the height will be inferred from the loaded image.

Example

{
    "scenes": [
        {
            "numframes": 200,
            "tracks": [
                {
                    "content": {
                        "type": "http",
                        "source": {
                            "path": "http://is-static-content.s3.amazonaws.com/testimgs/monarch.png"
                        }
                    }
                }
            ]
        }
    ],
    "params": {
        "vparams": {
            "width": 640,
            "height": 480
        }
    }
}   

Terms of Use | © 2017, Impossible Software, or its affiliates. All rights reserved.