Пример #1
0
 public static string GetText(string filePath)
 {
     using (var pdf = new PdfHelper(filePath))
     {
         return pdf.GetText();
     }
 }
Пример #2
0
 public static int GetTotalPages(string filePath)
 {
     using (var pdf = new PdfHelper(filePath))
     {
         return pdf.TotalPages;
     }
 }
Пример #3
0
 public static List<Signature> GetSignatures(string filePath)
 {
     using (var pdf = new PdfHelper(filePath))
     {
         return pdf.Signatures;
     }
 }