有没有办法将 GraphicsPath 和随附的图形复制到新图片中?
我有矩形,GraphicsPath 的点可用。路径肯定在矩形中。
我已经用谷歌搜索了,但结果很差。到目前为止,我只能将某个区域(矩形)复制到一个新的图片中,见源代码。
Using Extracted As Bitmap = New Bitmap(rect.Width, rect.Height, Imaging.PixelFormat.Format32bppArgb)
Using Grp As Graphics = Graphics.FromImage(Extracted)
Grp.DrawImage(Picture1, 0, 0, rect, GraphicsUnit.Pixel)
End Using
If System.IO.Directory.Exists("C:\Users\xy\Desktop") Then
Extracted.Save("C:\Users\xy\Desktop\1.png", Imaging.ImageFormat.Png)
End If
End Using