Click or drag to resize

FileSystemClientGetCroppedPrintable(Int64, Guid, Decimal, Decimal, PrintSizeUnit, Decimal, Decimal, Decimal) 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 cropped to match submitted max width or max height, centered around the submitted coordinates, and converted to 300 dpi. If the image is smaller than the requested dimensions, the original image is returned. If the returned image can be adjusted if the offsets is too close to the edges, so that the cropped image would have been out of bounds. If the API is called without the official Anysense API library, the caller should take notice of the following headers: - CROP-FULLWIDTH: The width of the scaled image before cropping - CROP-FULLHEIGHT: The height of the scaled image before cropping - CROP-OFFSET-X: The number of pixels from the left side, from where the image is cropped - CROP-OFFSET-Y: The number of pixels from the top, from where the image is cropped

Namespace: Anysense.API.Client.V1
Assembly: Anysense.API.Client (in Anysense.API.Client.dll) Version: 1.31.15+d671d89394079ff2411e503098d3578f08c2de86
Syntax
C#
public GetCroppedFileResponse GetCroppedPrintable(
	long fileSystemId,
	Guid fileSystemEntryId,
	decimal maxHeight,
	decimal maxWidth,
	PrintSizeUnit unit,
	decimal centerX,
	decimal centerY,
	decimal scale
)

Parameters

fileSystemId  Int64
The FormId of the FileSystem Form
fileSystemEntryId  Guid
The ClientId of the FileSystem FormData file to download
maxHeight  Decimal
The maxium allowed height of the returned image.
maxWidth  Decimal
The maxium allowed width of the returned image.
unit  PrintSizeUnit
The UnitType to use for scaling - centimeters or inches
centerX  Decimal
The center point, offset from the top in percents (0-100)
centerY  Decimal
The center point, offset from the left in percents (0-100)
scale  Decimal
The zoom factor to apply to the image before cropping

Return Value

GetCroppedFileResponse
See Also