CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2004
    Posts
    2

    Converting SVG files to WMF

    Is there any dot net api that I can use to convert a SVG(Scalable Vector Graphics) image to WMF(Windows Meta file).

  2. #2
    Join Date
    Nov 2002
    Location
    Singapore
    Posts
    1,890
    logic,

    1) SVG is similliar to XML file for graphics object information,
    if you reffer to any SVG website and read its specification I am sure you will get the structure,

    2) once read draw that thru C# GDI and save graphics as image.


    i haven't tried practical example but it won't be a big problem
    if you take a look at SVG file,
    one more thing is to remember is scalling , since SVG generated files co-ordinates may be world co-ordinates..

    if you need further help regarding reading SVG files plz reply to this msg.

    regards
    Paresh
    - Software Architect

  3. #3
    Join Date
    Feb 2004
    Posts
    2

    converting svg to XML

    Hi paresh,
    Yeah, perhaps some more information on SVG would definitely help. In fact I have also have very little information on GDI. Could you please give me an elaborate explanation.
    Thanks a lot
    -Naresh

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured