Ok, let me get this straight:
You don't want to convert a .swf file into a .eps file. You want to export
data generated from within your .swf file into a .eps file?

If it is just vector images you want to export, than I would say go with
SVG, it's XML based, and most vector image tools will read in SVG. There are
various free tools which will let you convert SVG into a raster image if you
need.

---

If you want to do PDF, search for PHP or ASP (depending on your server
scripting language) PDF libraries. There are several out there, that will
let you do something like:

$pdf = new PDF(); // create a new PDF
$pdf->drawLine(x1,y1,x2,y2); // draw a line on the PDF...the data is passed
in from your swf
$pdf->writeFile("output.pdf"); // save out a .pdf file.

-David R

On 4/3/06, Gabriel <[EMAIL PROTECTED]> wrote:
>
> What I need is to import the drawing, that's why I choose eps (but the
> only real need is that it must be vectorial), Not really to export the
> image created by the user, but recreate it on the server side, based on
> a few parameters.
> I can live without the drawing part.
>
> PDF would be a possibility, but can I export from swf 2 pdf??
>
> about FOP, It could be useful but how I load the eps/whatever icon and
> apply some changes (color, scale or so)?
>
> thanks
> GaB
>
>
>
> Ron Wheeler wrote:
> > Have you looked at SVG as an alternative? You may be able generate
> > this on the client without the server.
> >
> > What about PDF.
> >
> > Have a look at Apache's FOP as a server tool for converting input to
> > various output formats.
> >
> > Let me know what you think of these. There may be more ways to skin
> > this cat.
> > How are the drawings made? If you are capturing the user's
> > interactions, SVG might be pretty easy since it sort of mimics the
> > steps that the user does (start here, draw to here, draw to this
> > point, draw to next point, etc. finish here; move to here, draw to
> > here, etc.) so you may be able to create the SVG by just transforming
> > what you are already doing on the screen.
> > The Batik package or Adobe SVG lets you work with SVG drawings. What
> > do you want to do with the output- what is magical about EPS for you?
> >
> > Ron
> >
> >
> > Gabriel wrote:
> >> I generate the content of the swf on the client app, let's say a free
> >> drawing, then I want to "print it" to the *server printer* (?).
> >>
> >> The point is...I need an eps from a generated content with origin in
> >> the client machine.
> >> You was talking about "many free printer drivers", can you point me
> >> to some of them?
> >>
> >> thanks
> >>
> >> GaB.
> >>
> >>
> >>
> >> David Rorex wrote:
> >>> How are the swf's generated in the first place? Instead of doing
> >>> something->swf->eps
> >>> you can do:
> >>> something->swf
> >>> something->eps
> >>>
> >>> -David R
> >>>
> >>> On 3/30/06, Gabriel <[EMAIL PROTECTED]> wrote:
> >>>
> >>>> I save a swf to the server, and I need to retrieve an eps from
> >>>> it...any
> >>>> idea?
> >>>>
> >>>>
> >>>> Ron Wheeler wrote:
> >>>>
> >>>>> What exactly do you want to do?
> >>>>>
> >>>>> Ron
> >>>>>
> >>>>> Gabriel wrote:
> >>>>>
> >>>>>> Hi everybody...
> >>>>>>
> >>>>>> anybody knows a solution to convert/print from the server side a
> swf
> >>>>>> to eps?.
> >>>>>>
> >>>>>>
> >>>>>> cheers,
> >>>>>> GaB
> >>>>>> _______________________________________________
> >>>>>> Flashcoders@chattyfig.figleaf.com
> >>>>>> To change your subscription options or search the archive:
> >>>>>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >>>>>>
> >>>>>> Brought to you by Fig Leaf Software
> >>>>>> Premier Authorized Adobe Consulting and Training
> >>>>>> http://www.figleaf.com
> >>>>>> http://training.figleaf.com
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>> _______________________________________________
> >>>>> Flashcoders@chattyfig.figleaf.com
> >>>>> To change your subscription options or search the archive:
> >>>>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >>>>>
> >>>>> Brought to you by Fig Leaf Software
> >>>>> Premier Authorized Adobe Consulting and Training
> >>>>> http://www.figleaf.com
> >>>>> http://training.figleaf.com
> >>>>>
> >>>>>
> >>>> _______________________________________________
> >>>> Flashcoders@chattyfig.figleaf.com
> >>>> To change your subscription options or search the archive:
> >>>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >>>>
> >>>> Brought to you by Fig Leaf Software
> >>>> Premier Authorized Adobe Consulting and Training
> >>>> http://www.figleaf.com
> >>>> http://training.figleaf.com
> >>>>
> >>>>
> >>> _______________________________________________
> >>> Flashcoders@chattyfig.figleaf.com
> >>> To change your subscription options or search the archive:
> >>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >>>
> >>> Brought to you by Fig Leaf Software
> >>> Premier Authorized Adobe Consulting and Training
> >>> http://www.figleaf.com
> >>> http://training.figleaf.com
> >>>
> >>>
> >> _______________________________________________
> >> Flashcoders@chattyfig.figleaf.com
> >> To change your subscription options or search the archive:
> >> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >>
> >> Brought to you by Fig Leaf Software
> >> Premier Authorized Adobe Consulting and Training
> >> http://www.figleaf.com
> >> http://training.figleaf.com
> >>
> >>
> > _______________________________________________
> > Flashcoders@chattyfig.figleaf.com
> > To change your subscription options or search the archive:
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > Brought to you by Fig Leaf Software
> > Premier Authorized Adobe Consulting and Training
> > http://www.figleaf.com
> > http://training.figleaf.com
> >
> _______________________________________________
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to