这篇文章主要讲解了“VB.NET中心旋转图像的实现方法”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“VB.net中心旋转图像的实现方法”吧!我们在学习一门编程语言的时候,需要通过不断的实践去
这篇文章主要讲解了“VB.NET中心旋转图像的实现方法”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“VB.net中心旋转图像的实现方法”吧!
我们在学习一门编程语言的时候,需要通过不断的实践去积累经验,来加深我们对这门语言的理解程度。对于VB.NET的学习同样也是如此。在这里我们先通过一段VB.NET中心旋转图像的实现代码来初步的了解一下这门语言的编写方式和应用方法。
鼠标拖拽旋转。实现任意角度的VB.NET中心旋转图像。
Public Class FORM1
Dim bmp As Bitmap
Dim bmpsize As Single
Dim gr As Graphics
Dim pb As Point
Dim po As PointF
Private Sub Form1_Load(ByVal sender As
System.Object, ByVal e As System.EventArgs)
Handles MyBase.Load
bmpsize = Math.Sqrt(Me.Icon.Width ^
2 + Me.Icon.Height ^ 2)
bmp = New Bitmap(CInt(bmpsize), CInt(bmpsize))
gr = Graphics.FromImage(bmp)
po = New PointF((bmpsize - Me.Icon.Width)
/ 2, (bmpsize - Me.Icon.Height) / 2)
gr.DrawIcon(Me.Icon, po.X, po.Y)
PictureBox1.Image = bmp
End Sub
Private Sub PictureBox1_MouseDown(ByVal
sender As Object, ByVal e As System.windows.
Forms.MouseEventArgs) Handles PictureBox1.MouseDown
pb = e.Location
End Sub
Private Sub PictureBox1_MouseMove(ByVal
sender As Object, ByVal e As System.Windows.
Forms.MouseEventArgs) Handles PictureBox1.MouseMove
If Not pb = Point.Empty Then
'O\-----------B
' \
' \
' \
' E
Dim vOB, vOE As Windows.Vector
vOB = New Windows.Vector(bmpsize / 2,
bmpsize / 2) - New Windows.Vector(pb.X, pb.Y)
vOE = New Windows.Vector(bmpsize / 2, bmpsize / 2)
- New Windows.Vector(e.X, e.Y)
'可以用叉乘求面积,正负号代表旋转方向,而后正弦定理求角度,
Dim O As Double = Windows.Vector.AngleBetween(vOB, vOE)
'若角度为有效值
gr.TranslateTransform(bmpsize / 2, bmpsize / 2)
'移动坐标至图像中心
gr.RotateTransform(O) '按角度旋转
gr.TranslateTransform(-bmpsize / 2, -bmpsize / 2)
'移回
gr.Clear(Color.Transparent) '清除原有图像
gr.DrawIcon(Me.Icon, po.X, po.Y) '绘制新图像
PictureBox1.Image = bmp
pb = e.Location
End If
End Sub
Private Sub PictureBox1_MouseUp(ByVal sender As
Object, ByVal e As System.Windows.Forms.MouseEventArgs)
Handles PictureBox1.MouseUp
pb = Point.Empty
End Sub
End Class
感谢各位的阅读,以上就是“VB.NET中心旋转图像的实现方法”的内容了,经过本文的学习后,相信大家对VB.NET中心旋转图像的实现方法这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!
--结束END--
本文标题: VB.NET中心旋转图像的实现方法
本文链接: https://lsjlt.com/news/291290.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0