Discussion:
image EPS and SVG importer Plotter to Excel Office VB VBA
(too old to reply)
Flavio Henrique da Silva
2016-12-10 20:25:59 UTC
Permalink
Hi, People!

please sample file of your EPS (postscript) import/plotter for MS Office (Excel, Word etc).
The " A. Bulsari" user make a macro code vba but i am not able to make a sample file.


please sample file of your SVG (postscript) import/plotter for MS Office (Excel pure vba sample file).

i am not able to parse the coordinates of svg file to plot the values.


thank you very mutch.
Flavio Henrique.
Schmidt
2016-12-12 10:27:12 UTC
Permalink
Post by Flavio Henrique da Silva
i am not able to parse the coordinates of svg file to plot the values.
If you google for vbRichClient + SVG you should find a few examples,
I think.

With that lib you can parse and render SVG (then handing the
results over to Excel as a StdPicture-Object for example,
or alternatively as a PNG-ByteArray).

Olaf
Flavio Henrique da Silva
2016-12-14 18:24:03 UTC
Permalink
Post by Schmidt
Post by Flavio Henrique da Silva
i am not able to parse the coordinates of svg file to plot the values.
If you google for vbRichClient + SVG you should find a few examples,
I think.
With that lib you can parse and render SVG (then handing the
results over to Excel as a StdPicture-Object for example,
or alternatively as a PNG-ByteArray).
Olaf
Hi Olaf,
thank you very mutch, you clear mor the problem.
but i am not able to convert StdPicture to vector image object embed into Excel like i am want.

i want 2 things:
1a. thing: import and export a file in EPS and SVG format.
2a thing: convert a biptmap picture embed into Excel to IPCT or Stdppicute and render to picture object pure Vector format (EPS, EMF or Autoshape).

i am not able to step StdPIcture To IMage-Object vector format.

i want pure VB Or VBA Code into Excel, not external ressources.
thank you.
Schmidt
2016-12-14 20:44:34 UTC
Permalink
Post by Flavio Henrique da Silva
1a. thing: import and export a file in EPS and SVG format.
The vbRichClient currently supports only SVG (in read-direction,
but also in write-direction for cairo-Drawing-Commands).

For EPS-import there's currently no parser in the library -
so you will have to look elsewhere.
Post by Flavio Henrique da Silva
2a thing: convert a biptmap picture embed into Excel to IPCT or Stdppicute and render to picture object pure Vector format (EPS, EMF or Autoshape).
That's called "vectorizing raster-images" (a topic which entire books
are written about).
Post by Flavio Henrique da Silva
i am not able to step StdPIcture To IMage-Object vector format.
There's only one thing which could make this a bit easier -
it's when the StdPicture contains an EMF already - but I fear
that's not what you had in mind.
Post by Flavio Henrique da Silva
i want pure VB Or VBA Code into Excel, not external ressources.
Then good luck with it...
I'm aware of (very rudimentary) .NET-SVG-parser-code - but have never
seen the like for VB6/VBA.

SVG is complex - MS needed 12 years to come up with relative decent
SVG-support in its Browser-Engines - so I'm quite sure you will have
a hard time to find something which works without helper-libraries.

Olaf

Loading...