gpt4 book ai didi

vb.net - 使用VB.Net获取图像宽度和高度

转载 作者:行者123 更新时间:2023-12-03 00:37:45 24 4
gpt4 key购买 nike

在 VB.net 中,我需要读取一个充满图像的文件夹并获取它们:文件名、以像素为单位的高度和以像素为单位的宽度,并将它们的值分配给各个变量。

谢谢。

迈克。

最佳答案

试试这个:

Imports System.IO
Imports System.Drawing
Module Module1

Sub Main()
Dim s As New DirectoryInfo("C:/Files")
Dim files As FileInfo() = s.GetFiles("*.jpg")
For Each f As FileInfo In files
Dim bmp As New Bitmap(f.FullName)
Console.WriteLine("Width: " & bmp.Width.ToString() + " > Height: " & bmp.Height.ToString())
Next
Console.Read()
End Sub

End Module

关于vb.net - 使用VB.Net获取图像宽度和高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14991802/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com