Click or drag to resize

FileSystemClientGetScaled(Int64, Guid, Int32, Int32, Stream) Method

To get started, call one of the following methods:
  • Anysense.API.Client.V1.ApiClient.Create
  • Anysense.API.Client.V1.ApiClient.CreateAsync
  • Anysense.API.Client.V1.ApiClient.CreateWithToken
  • Anysense.API.Client.V1.ApiClient.CreateWithTokenAsync
See Anysense.API.Client.Shared.BaseClient<T> for documentation on these methods.
Gets an image scaled to match submitted max width or max height. If the image is smaller than the requested dimensions, the original image is returned.

Namespace: Anysense.API.Client.V1
Assembly: Anysense.API.Client (in Anysense.API.Client.dll) Version: 1.29.8-dev
Syntax
C#
public FileResult GetScaled(
	long fileSystemId,
	Guid fileSystemEntryId,
	int maxHeight,
	int maxWidth,
	Stream targetStream
)

Parameters

fileSystemId  Int64
 
fileSystemEntryId  Guid
 
maxHeight  Int32
The maxium allowed height of the returned image.
maxWidth  Int32
The maxium allowed width of the returned image.
targetStream  Stream
 

Return Value

FileResult
See Also