API Reference
PdfImageStampOptions
Options used when adding an image stamp or image watermark to parsed PDF pages.
Inheritance
- Object
- PdfImageStampOptions
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
Accepted by parameters
- Method PdfDocumentStamper.Image
- Method PdfDocumentStamper.Image
- Method PdfDocumentStamper.Image
- Method PdfDocumentStamper.Image
- Method PdfDocumentStamper.ImageWatermark
- Method PdfDocumentStamper.ImageWatermark
- Method PdfDocumentStamper.ImageWatermark
- Method PdfDocumentStamper.ImageWatermark
- Method PdfDocumentStamper.TryImage
- Method PdfDocumentStamper.TryImage
- Method PdfDocumentStamper.TryImageWatermark
- Method PdfDocumentStamper.TryImageWatermark
Constructors
public PdfImageStampOptions() #Methods
public PdfImageStampOptions UsePageRange(Int32 firstPage, Int32 lastPage) #PdfImageStampOptionsSelects an inclusive one-based page range to stamp.
Parameters
- firstPage System.Int32
- lastPage System.Int32
public PdfImageStampOptions UsePageRange(PdfPageRange pageRange) #PdfImageStampOptionsSelects an inclusive one-based page range to stamp.
Parameters
- pageRange OfficeIMO.Pdf.PdfPageRange
public PdfImageStampOptions UsePageRanges(params PdfPageRange[] pageRanges) #PdfImageStampOptionsSelects inclusive one-based page ranges to stamp. Overlapping ranges are treated as one page selection set in first-seen order.
Parameters
- pageRanges OfficeIMO.Pdf.PdfPageRange[]
Inherited Methods
Properties
public Int32[] PageNumbers { get; set; } #One-based page numbers to stamp. When null or empty, every page is stamped.
public Nullable<Double> X { get; set; } #X coordinate of the image origin in PDF points. When null, a sensible default is used.
public Nullable<Double> Y { get; set; } #Y coordinate of the image origin in PDF points. When null, a sensible default is used.
public Nullable<Double> Width { get; set; } #Width of the stamped image in PDF points. When null, the image pixel width is used.
public Nullable<Double> Height { get; set; } #Height of the stamped image in PDF points. When null, the image pixel height is used.
public Double RotationDegrees { get; set; } #Image rotation in degrees around the image origin.
public Boolean BehindContent { get; set; } #Places the new image content stream before existing page content when true.