public static FPdf GetSample(string path) { var pdf = new Sample4(); pdf.LocalPath = path; pdf.AliasNbPages(); pdf.SetTitle("20000 Leagues Under the Seas"); pdf.SetAuthor("Jules Verne"); pdf.PrintChapter(1, "A RUNAWAY REEF", "20k_c1.txt"); pdf.PrintChapter(2, "THE PROS AND CONS", "20k_c2.txt"); return(pdf); }
public static FPdf GetSample(string path) { var pdf = new Sample4(); pdf.LocalPath = path; pdf.AliasNbPages(); pdf.SetTitle("20000 Leagues Under the Seas"); pdf.SetAuthor("Jules Verne"); pdf.PrintChapter(1, "A RUNAWAY REEF", "20k_c1.txt"); pdf.PrintChapter(2, "THE PROS AND CONS", "20k_c2.txt"); return pdf; }
public static Stream GetSample(string file, string path) { using (var pdf = new Sample4(file) { LocalPath = path }) { pdf.AliasNbPages(); pdf.SetTitle("20000 Leagues Under the Seas"); pdf.SetAuthor("Jules Verne"); pdf.PrintChapter(1, "A RUNAWAY REEF", "20k_c1.txt"); pdf.PrintChapter(2, "THE PROS AND CONS", "20k_c2.txt"); pdf.Close(); return(pdf.Buffer.BaseStream); } }