Re: SVG to Word conversion?

2007-07-27 Thread dave
I got it! thanks for the tip. --- Jeremias Maerki <[EMAIL PROTECTED]> wrote: > Well, you can always provide nice little buttons > beside the SVG image > with links that would deliver the RTF or PDF variant > of the SVG image. > You can do that using a servlet and there's nothing > too complicate

Re: SVG to Word conversion?

2007-07-27 Thread Jeremias Maerki
Well, you can always provide nice little buttons beside the SVG image with links that would deliver the RTF or PDF variant of the SVG image. You can do that using a servlet and there's nothing too complicated about. And all server-based. Jeremias Maerki On 27.07.2007 20:24:43 dave wrote: > > Y

Re: SVG to Word conversion?

2007-07-27 Thread dave
Yes, I meant Word and PDF. As the other gentleman pointed out here, looks like it may not be trivial to use FOP as a client side technology. Myne is an html GUI(I don't use applets/jre plugin). I generate SVG in a linux webserver. It gets rendered on client windows machine using IE/ASV plugin. I

SV: SVG to Word conversion?

2007-07-27 Thread Wilhelmsen Tor Iver
The problem is that FOP (or Batik since we are talking SVG) cannot help you on the client-side (from IE to your destination). You probably have to look for SVG converters for .Net for that. The FOP/Batik solution that can help you is to instead take the SVG and render it server-side to a format th

Re: SVG to Word conversion?

2007-07-27 Thread Jeremias Maerki
You keep using "Word/PDF". I guess that means "Word and PDF". SVG -> Word: As outlined, create an FO file with the SVG as fo:external-graphic and use FOP to create RTF. That can be imported in Word. The image in RTF will not be vector graphics but a bitmap image. Alternative: Find out if POI's Wo

Re: SVG to Word conversion?

2007-07-26 Thread dave
Here is my requirement: 1. I draw some charts and topology diagrams using SVG+ASV plugin on IE browser. User should be able to export/save these SVG images as word/pdf file on their local PC. 2. I need the same #1 above but using SilverLight plugin on IE browser. In summary, I just want the

Re: SVG to Word conversion?

2007-07-26 Thread Jeremias Maerki
On 26.07.2007 02:29:40 dave wrote: > > apologies for being naive here: > can someone summarize the steps to convert SVG into > Word format? Uhm, what do you expect? SVG is a vector graphic format, Word a word-processor format. These world are not easily combined. The only thing FOP/Batik can

SVG to Word conversion?

2007-07-25 Thread dave
apologies for being naive here: can someone summarize the steps to convert SVG into Word format? I was also looking for tools that export SilverLight plugin rendered image(XAML based) into Word/PDF format. There seems none. I need some starting point here to write this export tool(XAML to W