123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using System.Collections.Generic;
- using ComPDFKit_Conversion.Converter;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using ComDocumentAIKit;
- using ComPDFKit_Conversion.Options;
- namespace PDF_Office.Model.Dialog.ConverterDialogs
- {
- public class ConvertOptions
- {
- public COCRLanguage OCRLanguage = COCRLanguage.English;
- public bool IsAllowOCR = false;
- public bool IsContainOCRBgImage =false;
- public bool IsContainAnnotations = true;
- public bool IsContainImages = true;
- public ContentOptions ContentOpts = ContentOptions.AllContent;
- public WorksheetOptions WorksheetOpts = WorksheetOptions.ForEachPage;
- public PageAndNavigationPaneOptions PageAndNavigationPaneOpts = PageAndNavigationPaneOptions.SinglePageNavigationByBookmarks;
- public ImgType ImageType = ImgType.PNG;
- public uint ImageDpi = 150;
- public bool IsMergeCsv = false;
- }
- public class ConverterDialogsModel
- {
-
-
-
- public string InputPath="";
-
-
-
- public string OutputPath="";
-
-
-
- public OnProgress GetProgress=null;
-
-
-
- public List<int> PageIndexLists= new List<int> { };
-
-
-
- public string PageRange = "";
-
-
-
- public string Pawssword="";
-
-
-
- public ConvertOptions Options=new ConvertOptions();
- }
- }
|