MultiframeImageWatermarkOptions Class |
Namespace: GroupDocs.Watermark.Options.Image
The MultiframeImageWatermarkOptions type exposes the following members.
Name | Description | |
---|---|---|
![]() | MultiframeImageWatermarkOptions |
Initializes a new instance of the MultiframeImageWatermarkOptions class.
|
![]() | MultiframeImageWatermarkOptions(Int32) |
Initializes a new instance of the MultiframeImageWatermarkOptions class
with a specified index of the frame.
|
Name | Description | |
---|---|---|
![]() | FrameIndex |
Gets or sets the index of frame to add watermark.
|
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | ToString | (Inherited from Object.) |
ImageLoadOptions loadOptions = new ImageLoadOptions(); using (Watermarker watermarker = new Watermarker(@"C:\test.gif", loadOptions)) { TextWatermark watermark = new TextWatermark("Test", new Font("Arial", 12)); MultiframeImageWatermarkOptions options = new MultiframeImageWatermarkOptions(); options.FrameIndex = 0; watermarker.Add(watermark, options); watermarker.Save(); }