TA的每日心情 | 开心 2018-7-13 14:04 |
---|
签到天数: 6 天 连续签到: 1 天 [LV.2]测试排长
|
本帖最后由 17800455 于 2011-6-16 14:46 编辑
- Set pic = LoadPicture("c:\test.jpg")
- picWidth = CInt(pic.width * 24/635)'宽-转成像素
- picHeight = CInt(pic.height * 24 /635)'高-转成像素
- picty = CInt(pic.type) '类型
- Select Case picty
- Case 0
- pictype = "None"
- Case 1
- pictype = "jpg;bmp;gif"
- Case 2
- pictype = "Metafile"
- Case 3
- pictype = "Icon"
- Case 4
- pictype = "Win32-enhanced metafile"
- End Select
- MsgBox picWidth &Chr(13)& picHeight & Chr(13) & pictype &Chr(13)
- '//文件大小
- Set fso = CreateObject("Scripting.FileSystemObject")
- Set file = fso.GetFile("c:\test.jpg")
- MsgBox Round((file.Size) / 1024,1)
- Set fso = Nothing
复制代码 |
|