• image EPS and SVG importer Plotter to Excel Office VB VBA

    From Flavio Henrique da Silva@21:1/5 to All on Sat Dec 10 12:25:59 2016
    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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Schmidt@21:1/5 to All on Mon Dec 12 11:27:12 2016
    Am 10.12.2016 um 21:25 schrieb 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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Flavio Henrique da Silva@21:1/5 to All on Wed Dec 14 10:24:03 2016
    Em segunda-feira, 12 de dezembro de 2016 08:27:13 UTC-2, Schmidt escreveu:
    Am 10.12.2016 um 21:25 schrieb 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Schmidt@21:1/5 to All on Wed Dec 14 21:44:34 2016
    Am 14.12.2016 um 19:24 schrieb Flavio Henrique da Silva:
    i want 2 things:
    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.

    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).

    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.

    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)