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

    Vectorized image drawing

    Hello,

    Using Visual Studio (C++), I have an application in which I'd like to set a vectorized image as a background image which I could zoom in/out (using the mouse Wheel for example). Does someone have an experience on this subject and/or give me a me a link to an other explanation page ?

    Thank by advance.
    Paul

  2. #2
    Join Date
    Apr 2000
    Location
    Belgium (Europe)
    Posts
    4,626

    Re: Vectorized image drawing

    you'll need to draw the individual components of the vector image yourself using discrete GDI operation (lines, poly lines, arcs etc...).

    THe only native vectorformat windows has any support for is EMF, and even that has limited support.

  3. #3
    Join Date
    Dec 2000
    Posts
    8

    Re: Vectorized image drawing

    Hi Reuben,

    Thank you for this answer ! I think I will try to avoid vectorized image !!!

    Best regards.
    Paul

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