Exemplo n.º 1
0
 public static string GetText(string filePath)
 {
     using (var pdf = new PdfHelper(filePath))
     {
         return pdf.GetText();
     }
 }
Exemplo n.º 2
0
 public static int GetTotalPages(string filePath)
 {
     using (var pdf = new PdfHelper(filePath))
     {
         return pdf.TotalPages;
     }
 }
Exemplo n.º 3
0
 public static List<Signature> GetSignatures(string filePath)
 {
     using (var pdf = new PdfHelper(filePath))
     {
         return pdf.Signatures;
     }
 }