Drawing in layers

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Juan Romero

    Drawing in layers

    Guys,

    I am working on an "Image Editor" application. Is it possible to draw
    different layers using the GDI?

    I have no experience whatsoever with graphics which is why I have decided to
    embrace this project, hoping it will help me learn "imaging".

    If anyone can point me in the right direction I would appreciate it a lot.
    Any tutorials, links, etc welcomed.

    Thanks!


  • Herfried K. Wagner [MVP]

    #2
    Re: Drawing in layers

    * "Juan Romero" <juan.romero@bo wne.com> scripsit:[color=blue]
    > I am working on an "Image Editor" application. Is it possible to draw
    > different layers using the GDI?[/color]

    When using .NET's drawing commands ('Sytem.Drawing '), you use GDI+.

    What exactly do you mean by drawing in different layers? You can store
    a list of lines/circles/... objects and then loop through this list and
    draw the items. You will have to order the elements by their z-order.

    --
    Herfried K. Wagner [MVP]
    <URL:http://dotnet.mvps.org/>

    Comment

    Working...