123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- using ComPDFKit.PDFWatermark;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Master.Model.EditTools.Watermark
- {
- public class WatermarkCreateModel
- {
-
- }
- public class WatermarkInfo {
-
-
-
- public C_Watermark_Type WatermarkType = C_Watermark_Type.WATERMARK_TYPE_TEXT;
-
-
-
- public string Text = "";
-
-
-
- public string FontName = "";
-
-
-
- public byte[] TextColor=null;
-
-
-
- public float TextSize = 5;
-
-
-
- public byte[] ImageArray = null;
-
-
-
- public string ImagePath = "";
-
-
-
- public float ImageSize = 5;
-
-
-
- public int ImageWidth = 100;
-
-
-
- public int ImageHeight = 100;
-
-
-
- public string PageRange = "0";
-
-
-
-
-
-
-
- public int PageRangeIndex = 0;
-
-
-
- public C_Watermark_Vertalign WatermarkVertalign = C_Watermark_Vertalign.WATERMARK_VERTALIGN_CENTER;
-
-
-
- public C_Watermark_Horizalign WatermarkHorizalign = C_Watermark_Horizalign.WATERMARK_HORIZALIGN_CENTER;
-
-
-
- public float VertOffset = 0;
-
-
-
- public float HorizOffset = 0;
-
-
-
- public bool Isfull = false;
-
-
-
- public float HorizontalSpacing = 0;
-
-
-
- public float VerticalSpacing = 0;
-
-
-
- public float Rotation = 0;
-
-
-
- public byte Opacity = 100;
-
-
-
- public bool IsFront = false;
-
-
-
- public bool IsRelativeScale = false;
- }
- }
|