2013年6月1日

vb.net 图像处理相关

摘要: 1) '分解RGB颜色值 R = (Color Mod 256) '红色 b = (Int(Color \ 65536)) '蓝色 G = ((Color - (b * 65536) - R) \ 256) '绿色 Text1.BackColor = RGB(R, G, b)2Dim memoryImage As Bitmap Dim myGraphics As Graphics = Me.CreateGraphics() Dim s As Size = New Size(sw, sh) memoryImage = New Bitmap(1280,80... 阅读全文

posted @ 2013-06-01 18:43 song2013 阅读(1072) 评论(0) 推荐(0) 编辑

导航