コード例 #1
0
ファイル: Program.cs プロジェクト: AswinT22/InvoiceGenerator
        static void convertJsonToPdf()
        {
            Console.WriteLine("Reading Json file......");
            Base64Utils base64Utils = new Base64Utils();
            string      base64      = base64Utils.get("./input/jsondoc.json");

            Console.WriteLine("Base64 generated:\n" + base64 + "\n");
            JsonUtils jsonUtils = new JsonUtils();

            Console.WriteLine("Generating PDF file......");
            jsonUtils.GeneratePdf(base64);
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: AswinT22/InvoiceGenerator
        static void convertXmlToPdf()
        {
            Console.WriteLine("Reading Xml file......");
            Base64Utils base64Utils = new Base64Utils();
            string      base64      = base64Utils.get("./input/xmldoc.xml");

            Console.WriteLine("Base64 generated:\n" + base64 + "\n");
            XmlUtils xmlUtils = new XmlUtils();

            Console.WriteLine("Generating PDF file......");
            xmlUtils.GeneratePdf(base64);
        }