在我的 VB 项目中,我已经有了用于检索指定目录中每个图像路径的功能,然后我使用
Dim Pics() As String = piccom.GetPictures("The\Dir")
For Each pic In Pics
If Not pic = "" Then
Dim bmp As New Bitmap(pic)
Dim Width As Integer = bmp.Width
Dim Height As Integer = bmp.Height
Else
Exit For
End If
Next
要遍历所有返回的图像,我需要能够在运行时在页面的主要内容中显示这些图像,如何在运行时显示所述图像?
编辑:我一时兴起尝试了这个
For Each pic In Pics
If Not pic = "" Then
Dim bmp As New Bitmap(pic)
Dim Width As Integer = bmp.Width
Dim Height As Integer = bmp.Height
Response.ContentType = "image/jpeg"
bmp.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg)
Else
Exit For
End If
Next
现在这实际上让我更接近我想要的,但不是显示嵌套在其中的图像的页面,它只是将它抓取的第一张图像流式传输到我的浏览器 - 不是我想要的。我希望所有图像都嵌套在页面上预先存在的内容框中。