一个取图片尺寸的类,支持jpg,gif,png

来源:动网 时间:2007-10-18 10:25:00 

asp之家注:一个取图片尺寸的asp类,支持jpg,gif,png格式的图片文件;读取图片的尺寸其实很有用,当我们在设计一个新闻文章添加页面时,编辑器中的图片尺寸很复杂,如果不加处理显示的时候页面很可能变形,影响页面美观,当然我们也可以使用JS代码来设置图片显示的尺寸,但是毕竟使用了javascript页面代码变多了,而如果在服务器端检测出图片的尺寸,然后对应超出尺寸的图片自动设置显示的宽度,只要一句普通的html代码:width=200就可以了,简洁明了。

'I have released this source code into the public domain. You may use it
'with no strings attached.
'Just call GetImageSize with a string containing the filename, and
'it will return a user defined type 'ImageSize' (see below)
'Return values of 0 indicate an error of some sort. The error handling
'in this module is limited. There is *NO* error handling on the test
'form. This routine is limited to X or Y sizes of 32767 pixels, but that
'should not be a problem.


'Check back athttp://www.qtm.net/~davidc
'I may add support for more file types.

'支持格式:
'JPEG
'GIF
'PNG

'This routine does not require any royalty fees for Unisys as it
'does nothing with the compressed part of GIF files. It simply reads
'4 bytes to determine image size.

Option Explicit
Public WImg As Long
Public HImg As Long
Public Type ImageSize
Width As Long
Height As Long
End Type

Public Sub GetImageSize(sFileName As String)
On Error Resume Next 'you'll want to change this
Dim iFN As Integer
Dim bTemp(3) As Byte
Dim lFlen As Long
Dim lPos As Long
Dim bHmsb As Byte
Dim bHlsb As Byte
Dim bWmsb As Byte
Dim bWlsb As Byte
Dim bBuf(7) As Byte
Dim bDone As Byte
Dim iCount As Integer

lFlen = FileLen(sFileName)
iFN = FreeFile
Open sFileName For Binary As iFN
Get #iFN, 1, bTemp()

'PNG file
If bTemp(0) = &H89 And bTemp(1) = &H50 And bTemp(2) = &H4E _
And bTemp(3) = &H47 Then
Get #iFN, 19, bWmsb
Get #iFN, 20, bWlsb
Get #iFN, 23, bHmsb
Get #iFN, 24, bHlsb
'GetImageSize.Width = CombineBytes(bWlsb, bWmsb)
'GetImageSize.Height = CombineBytes(bHlsb, bHmsb)
WImg = CombineBytes(bWlsb, bWmsb)
HImg = CombineBytes(bHlsb, bHmsb)
End If

'GIF file
If bTemp(0) = &H47 And bTemp(1) = &H49 And bTemp(2) = &H46 _
And bTemp(3) = &H38 Then
Get #iFN, 7, bWlsb
Get #iFN, 8, bWmsb
Get #iFN, 9, bHlsb
Get #iFN, 10, bHmsb
'GetImageSize.Width = CombineBytes(bWlsb, bWmsb)
'GetImageSize.Height = CombineBytes(bHlsb, bHmsb)
WImg = CombineBytes(bWlsb, bWmsb)
HImg = CombineBytes(bHlsb, bHmsb)
End If


'JPEG file
If bTemp(0) = &HFF And bTemp(1) = &HD8 And bTemp(2) = &HFF Then
Debug.Print "JPEG"
lPos = 3
Do
Do
Get #iFN, lPos, bBuf(1)
Get #iFN, lPos + 1, bBuf(2)
lPos = lPos + 1
Loop Until (bBuf(1) = &HFF And bBuf(2) <> &HFF) Or lPos > lFlen

For iCount = 0 To 7
Get #iFN, lPos + iCount, bBuf(iCount)
Next iCount
If bBuf(0) >= &HC0 And bBuf(0) <= &HC3 Then
bHmsb = bBuf(4)
bHlsb = bBuf(5)
bWmsb = bBuf(6)
bWlsb = bBuf(7)
bDone = 1
Else
lPos = lPos + (CombineBytes(bBuf(2), bBuf(1))) + 1
End If
Loop While lPos < lFlen And bDone = 0
'GetImageSize.Width = CombineBytes(bWlsb, bWmsb)
'GetImageSize.Height = CombineBytes(bHlsb, bHmsb)
WImg = CombineBytes(bWlsb, bWmsb)
HImg = CombineBytes(bHlsb, bHmsb)
End If
Close iFN

End Sub
Private Function CombineBytes(lsb As Byte, msb As Byte) As Long
CombineBytes = CLng(lsb + (msb * 256))
End Function


标签:类,图片,尺寸,jpg,gif,png
0
投稿

猜你喜欢

  • 推荐一篇不错的新手asp编程的基本法则

    2011-04-15 11:08:00
  • ASP 调用dll及封装dll实例

    2011-03-17 10:47:00
  • 透明度设置

    2009-12-12 18:51:00
  • SQL Server 1069错误(由于登录失败而无法启动服务)解决方法

    2008-09-12 17:35:00
  • jQuery.sheet – 创建Excel界面风格的jQuery在线应用

    2010-01-27 13:03:00
  • FileUpload上传图片预览不变形

    2010-08-05 21:25:00
  • 配置SQL Server以允许远程连接

    2010-03-08 13:12:00
  • 用CSS制作兼容多浏览量器的隐藏菜单

    2007-08-30 09:05:00
  • asp实现树型结构

    2008-04-13 06:06:00
  • 关于CSS中字号控制的兼容性研究[译]

    2009-02-24 16:35:00
  • 彻底弄懂CSS盒子模式之四(绝对定位和相对定位)

    2007-05-11 16:51:00
  • 文字链接,怎么办?

    2008-08-04 13:18:00
  • 设计规范有谱么?

    2008-06-06 12:28:00
  • 形成视觉冲击的几种方式

    2008-08-03 15:57:00
  • MySQL中的字符串模式匹配

    2010-03-09 16:30:00
  • 兼容所有浏览器的CSS3圆角[译]

    2009-10-13 21:11:00
  • 鼠标双击滚动屏幕单击停止代码

    2008-02-21 11:44:00
  • 计划备份mysql数据库

    2009-03-09 14:34:00
  • 网页代码更清晰高效的一些经验

    2008-05-19 12:23:00
  • 网页设计之步骤和大局观

    2008-03-18 12:50:00
  • asp之家 网络编程 m.aspxhome.com