Click or drag to resize

PdfSignatureShapeMaxResolution Property

Gets or sets the maximum resolution of this PdfSignatureShape when added to the PDF document.

Namespace:  RadPdf.Data.Document.Objects.Shapes
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public int MaxResolution { get; set; }

Property Value

Type: Int32
The integer that specifies the maximum resolution of this PdfSignatureShape when added to the PDF document. The default value is NoMaxResolution.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThe value is less than 72 or more than 2048 and not NoMaxResolution.
Remarks

This property only has an effect if SignatureMethod = ImageUpload.

If the ImageData represents an image with an original resolution greater than MaxResolution, the image will be resampled to that resolution. This value can help reduce the size of PDF data output by RAD PDF.

If set to NoMaxResolution, the image will not be resampled regardless of its resolution.

If the ImageFormat of this image is Gif or Png, setting this property to anything besides NoMaxResolution may cause transparency to be displayed incorrectly in the PDF.

See Also