请教:怎样用vb把一张图片顺时针旋转90度?谢谢。
展开全部
这个太简单了,用图片框德paintpicture属性,具体的你可以看vb的帮助文件。再不会给我回复,我把代码给你贴上来
更多追问追答
追问
您好,我不会,把代码给我吧,谢谢。
追答
你在窗体上放四个图片框,设置成数组,图片框(0)加载你的图片,然后用下面的代码
Private Sub Form_Load()
With 图片框.Item(1) '90度
.PaintPicture 图片框.Item(0).Picture, 0, 0, .ScaleWidth, .ScaleHeight, .ScaleWidth, 0, -.ScaleWidth, .ScaleHeight
End With
With 图片框.Item(2) ’镜像
.PaintPicture 图片框.Item(0).Picture, 0, 0, .ScaleWidth, .ScaleHeight, 0, .ScaleHeight, .ScaleWidth, -.ScaleHeight
End With
With 图片框.Item(3) ’180度
.PaintPicture 图片框.Item(0).Picture, 0, 0, .ScaleWidth, .ScaleHeight, .ScaleWidth, .ScaleHeight, -.ScaleWidth, -.ScaleHeight
End With
End Sub
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询