要在Windows窗体上使用VB.NET旋转PictureBox,您可以使用以下步骤:
Imports System.Drawing
Imports System.Drawing.Drawing2D
Public Class Form1
Private Sub RotatePictureBox(ByVal angle As Single, ByVal pictureBox As PictureBox)
Dim bmp As Bitmap = New Bitmap(pictureBox.Image)
Dim rect As RectangleF = New RectangleF(0, 0, bmp.Width, bmp.Height)
Dim ptRotate As PointF = New PointF(bmp.Width \ 2, bmp.Height \ 2)
Dim g As Graphics = Graphics.FromImage(bmp)
g.TranslateTransform(ptRotate.X, ptRotate.Y)
g.RotateTransform(angle)
g.TranslateTransform(-ptRotate.X, -ptRotate.Y)
g.DrawImage(bmp, rect)
pictureBox.Image = bmp
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
RotatePictureBox(90.0F, PictureBox1)
End Sub
End Class
在这个示例中,我们定义了一个名为RotatePictureBox的方法,它接受一个旋转角度和一个PictureBox控件作为参数。该方法将图片旋转指定的角度,并将其显示在PictureBox中。
在Button1_Click事件处理程序中,我们调用了RotatePictureBox方法,将图片旋转90度。您可以根据需要更改旋转角度。
这个示例使用了System.Drawing和System.Windows.Forms命名空间中的类,这些类提供了执行图形操作的基本功能。
领取专属 10元无门槛券
手把手带您无忧上云