将图像转成HTML文件,VB.net源代码

上次发过一个软件,见下文
http://www.cnblogs.com/aowind/archive/2005/03/05/113429.html
其软件的功能就是将一个图像转成HTML文件,就是用一些自定义的数字通过不同的色彩来表现出这个图像
其效果如下:
将图像转成HTML文件,VB.net源代码

经过小弟研究了一下,在vb.net中写出了相同实现功能的代码
功能实现主要是应用到system.drawing.bitmap,和其方法getpixel()
主要代码如下:

将图像转成HTML文件,VB.net源代码将图像转成HTML文件,VB.net源代码Private Sub Button1_Click()Sub Button1_Click(ByVal sender As System.ObjectByVal e As System.EventArgs) Handles Button1.Click
将图像转成HTML文件,VB.net源代码        
Dim bit As System.Drawing.Bitmap
将图像转成HTML文件,VB.net源代码        bit 
= bit.FromFile("c:\aowindme.bmp"'读取一个图像文件
将图像转成HTML文件,VB.net源代码
        Dim w, h As Integer
将图像转成HTML文件,VB.net源代码        w 
= bit.Width - 1 '取得图像每行的像素量
将图像转成HTML文件,VB.net源代码
        h = bit.Height - 1 '取得图像的行数
将图像转成HTML文件,VB.net源代码
        Dim pixel As System.Drawing.Color(,) '定义一个类型为系统色彩型的二维数组,来存放图片的所有像系的色彩信息
将图像转成HTML文件,VB.net源代码
        pixel = New System.Drawing.Color(w, h) {} '根据图像的像系每行数量和行量来重新定义数组下标
将图像转成HTML文件,VB.net源代码
        Dim i, j
将图像转成HTML文件,VB.net源代码        
'利用循环把图像所有像素的色彩信息对应存入数组
将图像转成HTML文件,VB.net源代码
        For i = 0 To h
将图像转成HTML文件,VB.net源代码            
For j = 0 To w
将图像转成HTML文件,VB.net源代码                pixel(j, i) 
= bit.GetPixel(j, i)
将图像转成HTML文件,VB.net源代码            
Next
将图像转成HTML文件,VB.net源代码        
Next
将图像转成HTML文件,VB.net源代码        
Dim content As String '定义一个字符串来存放要写入html的内容
将图像转成HTML文件,VB.net源代码
        content = toweb(w, h, pixel) '生成写入html的内容
将图像转成HTML文件,VB.net源代码
        Dim y As Boolean '定义一个逻辑变量来判断是否写入成功
将图像转成HTML文件,VB.net源代码
        y = SaveTextFile("c:\999.htm", content) '写入html文件
将图像转成HTML文件,VB.net源代码
        If y Then MsgBox("ok!")
将图像转成HTML文件,VB.net源代码    
End Sub

将图像转成HTML文件,VB.net源代码
将图像转成HTML文件,VB.net源代码    
'得到一个RGB信息的相应WEB代码
将图像转成HTML文件,VB.net源代码将图像转成HTML文件,VB.net源代码
    Private Function GetWEBColorinfo()Function GetWEBColorinfo(ByVal x As Color) As String
将图像转成HTML文件,VB.net源代码        
Dim r, g, b As String
将图像转成HTML文件,VB.net源代码        r 
= Hex(CInt(x.R)) '取得一个像素色彩信息中的R信息,转成16进制后存成字符串型
将图像转成HTML文件,VB.net源代码
        g = Hex(CInt(x.G)) '取得一个像素色彩信息中的R信息,转成16进制后存成字符串型
将图像转成HTML文件,VB.net源代码
        b = Hex(CInt(x.B)) '取得一个像素色彩信息中的R信息,转成16进制后存成字符串型
将图像转成HTML文件,VB.net源代码
        '如果不足两位的在前面加0,因为WEB色彩表示应为#+R(两位16进制)+G(两位16进制)+B(两位16进制)
将图像转成HTML文件,VB.net源代码
        If r.Length = 1 Then r = "0" & r
将图像转成HTML文件,VB.net源代码        
If g.Length = 1 Then g = "0" & g
将图像转成HTML文件,VB.net源代码        
If b.Length = 1 Then b = "0" & b
将图像转成HTML文件,VB.net源代码        
Return "#" & r & g & b
将图像转成HTML文件,VB.net源代码    
End Function

将图像转成HTML文件,VB.net源代码
将图像转成HTML文件,VB.net源代码    
'生成要写处html文件的字符串,即html文件的内容
将图像转成HTML文件,VB.net源代码将图像转成HTML文件,VB.net源代码
    Private Function toweb()Function toweb(ByVal w As IntegerByVal h As IntegerByVal pixel As Color(,)) As String
将图像转成HTML文件,VB.net源代码        
Dim html As String
将图像转成HTML文件,VB.net源代码        html 
= "<html><head><title>傲风图像网页生成</title></head><body bgcolor='#000000'><center>" & vbCrLf
将图像转成HTML文件,VB.net源代码        
Dim i, j
将图像转成HTML文件,VB.net源代码        
For i = 0 To h
将图像转成HTML文件,VB.net源代码            
For j = 0 To w
将图像转成HTML文件,VB.net源代码                html 
= html & "<font color='" & GetWEBColorinfo(pixel(j, i)) & "'>" & Int(Rnd(10* 10& Int(Rnd(10* 10& "</font>"
将图像转成HTML文件,VB.net源代码
            Next
将图像转成HTML文件,VB.net源代码            html 
= html & "<br>" & vbCrLf
将图像转成HTML文件,VB.net源代码        
Next
将图像转成HTML文件,VB.net源代码        html 
= html & "</center></body></html>"
将图像转成HTML文件,VB.net源代码
        Return html
将图像转成HTML文件,VB.net源代码    
End Function

将图像转成HTML文件,VB.net源代码    
'写入文件函数
将图像转成HTML文件,VB.net源代码将图像转成HTML文件,VB.net源代码
    Private Function SaveTextFile()Function SaveTextFile(ByVal FilePath As StringByVal FileContent As StringAs Boolean
将图像转成HTML文件,VB.net源代码        
Dim sw As System.IO.StreamWriter
将图像转成HTML文件,VB.net源代码        
Try
将图像转成HTML文件,VB.net源代码            sw 
= New System.IO.StreamWriter(FilePath, False)
将图像转成HTML文件,VB.net源代码            sw.
Write(FileContent)
将图像转成HTML文件,VB.net源代码            
Return True
将图像转成HTML文件,VB.net源代码        
Catch e As Exception
将图像转成HTML文件,VB.net源代码            
Return False
将图像转成HTML文件,VB.net源代码        
Finally
将图像转成HTML文件,VB.net源代码            
If Not sw Is Nothing Then sw.Close()
将图像转成HTML文件,VB.net源代码        
End Try
将图像转成HTML文件,VB.net源代码    
End Function

还请大虾位指教!
上一篇:机器学习数据收集及预处理常见的流程


下一篇:几个Linux驱动面试题目