Hello I use the FillClosedCurve method to draw shapes by points.
Dim BM As New Bitmap(1000, 1000) Dim G As Graphics = Graphics.FromImage(BM) G.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias G.FillClosedCurve(Brushes.Black, points_array) PictureBox1.BackgroundImage = BM
To get points I use the following principle: I put a picture on the background of the form and when I click on the form X and Y, the cursor is added to the list of points. I need to draw a treble clef, please tell me how it is more convenient to get a list of points to build, how can I get them from a png file?