Drawing in layers

  • Thread starter Thread starter Juan Romero
  • Start date Start date
J

Juan Romero

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!
 
* "Juan Romero said:
I am working on an "Image Editor" application. Is it possible to draw
different layers using the GDI?

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.
 
Back
Top