The following image output formats have been added: BMP, GIF, JPG, PNG, and SVG.
If the output is multiple pages, each page will be a separate image file.
Modify the extension of the output report to be any of the following: “bmp”, “gif”, “jpg”, “png”, or “svg”. For example:
java net.windward.xmlreport.RunReport InternetMarketingReport.docx testreport.bmp -xml:INTMARKETING InternetMarketingData.xml
Modify the extension of the output report to be any of the following: “bmp”, “gif”, “jpg”, “png”, or “svg”. For example:
RunReport.exe InternetMarketingReport.docx testreport.bmp -xml:INTMARKETING InternetMarketingData.xml
Use the new “ProcessImage” class to output to an image format. If the output report is more than one page, see Appendix A for a Java code sample.
// For BMP, GIF, JPG, PNG
ProcessReportAPI report =new ProcessImage(template, format, dpi);
// For EPS, SVG
ProcessReportAPI report =new ProcessImage(template, format);
Use the new “ReportImage” class to output to an image format. If the output report is more than one page, see Appendix B for a .NET code sample.
// For BMP, GIF, JPG, PNG
Report report = new ReportImage(template,format, dpi);
// For EPS, SVG
Report report = new ReportImage(template,format);