123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- using ComPDFKit.PDFDocument;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Master.Model.EditTools.Background
- {
- public class BackgroundCreateModel
- {
- }
- public enum EnumBackgroundType
- {
- StatusColor,
- StatusFile
- }
- public class BackgroundInfo
- {
-
-
-
- public C_Background_Type BackgroundType = C_Background_Type.BG_TYPE_COLOR;
-
-
-
- public byte[] Color;
-
-
-
- public byte[] ImageArray;
-
-
-
- public float Rotation;
-
-
-
-
- public byte Opacity;
-
-
-
-
- public float Scale;
-
-
-
- public float VertOffset = 0;
-
-
-
- public float HorizOffset = 0;
-
-
-
- public int ImageWidth;
-
-
-
-
- public int ImageHeight;
-
-
-
- public C_Background_Vertalign Vertalign;
-
-
-
- public C_Background_Horizalign Horizalign;
-
-
-
- public string PageRange = "0";
-
-
-
-
-
-
-
- public int PageRangeIndex = 0;
-
-
-
- public bool IsRelativeScale = true;
- }
- }
|