示例#1
0
 public static string GetText(string filePath)
 {
     using (var pdf = new PdfHelper(filePath))
     {
         return(pdf.GetText());
     }
 }
示例#2
0
 public static string GetText(byte[] fileContents)
 {
     using (var pdf = new PdfHelper(fileContents))
     {
         return(pdf.GetText());
     }
 }
示例#3
0
 public static string GetText(string filePath)
 {
     using (var pdf = new PdfHelper(filePath))
     {
         return pdf.GetText();
     }
 }