Cover art image support – Qsonix Integration User Manual
Page 30

Qsonix Integration Guide
Page | 30
Cover Art Image Support
Access to album cover art images is provided via HTTP using the built-in web server on the system. By
using the available query string parameters to build a full cover art image URL, a jpeg bitmap can be
retrieved from the server for any album in the system.
URL
http://
QUERYSTRING PARAMETERS
AlbumID
If specified, the cover art returned will correspond to the Album with the ID
specified. This parameter should not be used in conjunction with TrackID. Only
one of the two parameters should be used.
Int32
TrackID
If specified, the cover art returned will correspond to the Album that contains the
track with the ID specified. This parameter should not be used in conjunction
with AlbumID. Only one of the two parameters should be used.
Int32
Size
The size (in pixels) of the cover art image to be returned (maximum allowable
size is 1000 pixels). If Reflect is turned on, the resulting image will have a width
of this size and a height of twice this size.
Int16
Reflect
If this parameter is specified with a value of ON, then the returned image will
include a vertical reflection in the image.
String(3)
EXAMPLES
http://192.168.0.1/WebServices/CoverArtImage.aspx?AlbumID=12345&Size=100&Reflect=ON
http://192.168.0.1/WebServices/CoverArtImage.aspx?TrackID=4321&Size=250