Пример #1
0
        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);
        }
Пример #2
0
        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;
        }
Пример #3
0
 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);
     }
 }