/* * This class is part of the book "iText in Action - 2nd Edition" * written by Bruno Lowagie (ISBN: 9781935182610) * For more info, go to: http://itextpdf.com/examples/ * This example only works with the AGPL version of iText. */ using System; using System.IO; using System.Web; using iTextSharp.text; using iTextSharp.text.pdf; namespace kuujinbo.iTextInAction2Ed.Chapter15 { public class SvgToPdf : IWriter { // =========================================================================== public void Write(Stream stream) { throw new NotImplementedException( "Batik SVG toolkit is only implemented in Java" ); } // =========================================================================== } }