Hi.
Does anyone know how to draw vector-graphics in VB.net?
Right now i use
but instead of pic beeing a bitmap I need it to be some kind of vector format...Code:Dim pic As New System.Drawing.Bitmap(500, 500, System.Drawing.Imaging.PixelFormat.Format32bppArgb) Dim gr As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(pic)
I think the Metafile() is what I should use, but how do I create/use it?
Can I still have the same drawing-functions? (gr.FillRectangle(...) etc.)




Reply With Quote