Flash Charts and Graphs exported for use in PDF reports - automation - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T03:19:12Z http://stackoverflow.com/feeds/question/120862 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/120862/flash-charts-and-graphs-exported-for-use-in-pdf-reports-automation 0 Flash Charts and Graphs exported for use in PDF reports - automation schwerwolf 2008-09-23T13:06:23Z 2009-08-05T09:50:11Z <p>I want to put beautiful charts in a report that is available via html and pdf.</p> <p>I'd prefer to use just one API and that all processing occur server-side.</p> <p>I want to embed Flash charts in the html version of reports. I want to embed a static image (preferably vector-based format) in the pdf version.</p> <p><strong>What is the best way to accomplish this?</strong></p> <p>I've seen a product called <a href="http://www.globfx.com/products/swfchartgen/" rel="nofollow" title="Swiff Chart Generator">Swiff Chart Generator</a> but it's pretty weak on chart interactivity. I've also seen <a href="http://www.amcharts.com/" rel="nofollow">amcharts</a>, which is strong on interactivity, but weak on pdf output.</p> <p>I'll probably use <a href="http://www.princexml.com/" rel="nofollow">princexml</a> to handle the overall pdf generation. Princexml doesn't render embedded flash. It does render embedded images and SVG. Another option is <a href="https://xhtmlrenderer.dev.java.net/" rel="nofollow">flying saucer</a>, which is less feature-full but free.</p> <p><a href="http://www.corda.com" rel="nofollow">Corda</a> - They make mapping, and graphing software that supports some amount of interactivity. They support SVG, PNG and flash formats out of the box. Of course, they are quite expensive.</p> http://stackoverflow.com/questions/120862/flash-charts-and-graphs-exported-for-use-in-pdf-reports-automation/121046#121046 -1 Answer by Abyss Knight for Flash Charts and Graphs exported for use in PDF reports - automation Abyss Knight 2008-09-23T13:37:48Z 2008-09-23T13:37:48Z <p>You can grab the bitmap data of the chart straight from Flash using ActionScript. Unfortunately, I don't believe there is a way to export the vector data.</p> http://stackoverflow.com/questions/120862/flash-charts-and-graphs-exported-for-use-in-pdf-reports-automation/121206#121206 0 Answer by Mark Nold for Flash Charts and Graphs exported for use in PDF reports - automation Mark Nold 2008-09-23T14:07:33Z 2008-09-23T14:07:33Z <p>I did something similar 8 years ago with a java library from <a href="http://ve.com" rel="nofollow">Visual Engineering</a>. It looks like their products have changed but someone has their old <a href="http://weather.nmsu.edu/java/JavaChartbak/" rel="nofollow">demos online</a>.</p> <p>It worked well as an applet for HTML output and i wrote some simple java class to write a .png to embed in the pdfs on the server. Strangly enough it was all called from PHP but hung together well.</p> <p>Java was a good choice as this had to work on Sun and Linux servers with IE front ends. Unfortunately this isn't Flash and isn't vector based. I'd be looking for tools like swf2jpg or swf2png.</p> <p>However if there are no other options for server side flash you may want to consider using a Java applet / application combo.</p> http://stackoverflow.com/questions/120862/flash-charts-and-graphs-exported-for-use-in-pdf-reports-automation/122119#122119 1 Answer by defmeta for Flash Charts and Graphs exported for use in PDF reports - automation defmeta 2008-09-23T16:27:54Z 2008-09-23T16:27:54Z <p>Take a look at <a href="http://www.alivepdf.org/" rel="nofollow">AlivePDF</a>. I believe it can do what you need. They have a demo where you can export and download a pdf of the swf you have just drawn into, very cool.</p> <p>Alternatively here is a <a href="http://www.bytearray.org/?p=90" rel="nofollow">Jpeg Exporter</a> by the same folks.</p> <p><strong>EDIT:</strong> Also take a look at <a href="http://www.degrafa.com/" rel="nofollow">Degrafa</a> for charting in Flex. It's very good, and the underlying code is actually being folded into Adobe's next release!</p> http://stackoverflow.com/questions/120862/flash-charts-and-graphs-exported-for-use-in-pdf-reports-automation/1232223#1232223 0 Answer by Sanket Nadhani for Flash Charts and Graphs exported for use in PDF reports - automation Sanket Nadhani 2009-08-05T09:50:11Z 2009-08-05T09:50:11Z <p>You can use FusionCharts</p> <p>It allows you to embed Flash charts in HTML pages and the same can be exported as image/PDF easily, which you can them embed in your PDF report.</p> <p>A demo of the same which might be of help to you: <a href="http://www.fusioncharts.com/Demos/ExportChart/" rel="nofollow">http://www.fusioncharts.com/Demos/ExportChart/</a></p> <p>Hope this helps:)</p>