try { // step 2: // we create a writer that listens to the document // and directs a PDF-stream to a file PdfWriter.getInstance(document, new FileStream("Chap0101.pdf", FileMode.Create)); // step 3: we open the document document.Open(); // step 4: w
using System; using System.IO; using iTextSharp.text; using iTextSharp.text.pdf; public class Chap0101 { public static void Main() { Console.WriteLine("Chapter 1 example 1: Hello World"); // step 1: creation of a document-object Do cument document =