POST api/decoder/info
Request Information
URI Parameters
None.
Body Parameters
ImageDataName | Description | Type | Additional information |
---|---|---|---|
width | integer |
None. |
|
height | integer |
None. |
|
stride | integer |
None. |
|
imagetype | string |
None. |
|
imagedata | Collection of byte |
None. |
Request Formats
application/json, text/json
Sample:
{ "width": 1, "height": 2, "stride": 3, "imagetype": "sample string 4", "imagedata": "QEA=" }
application/xml, text/xml
Sample:
<ImageData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.Controllers"> <Data>QEA=</Data> <Height>2</Height> <ImageType>sample string 4</ImageType> <Stride>3</Stride> <Width>1</Width> </ImageData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>