`
simonlaw
  • 浏览: 40691 次
  • 性别: Icon_minigender_1
  • 来自: 广州
最近访客 更多访客>>
社区版块
存档分类
最新评论

ASP 实现图片等比例缩放 函数 imgInfo

    博客分类:
  • Asp
阅读更多

'==========================
'Define Class imgInfo
'==========================
Class imgInfo
dim aso
Private Sub Class_Initialize
set aso=CreateObject("Adodb.Stream")
aso.Mode=3
aso.Type=1
aso.Open
End Sub
Private Sub Class_Terminate
'err.clear
set aso=nothing
End Sub

Private Function Bin2Str(Bin)
Dim I, Str
For I=1 to LenB(Bin)
clow=MidB(Bin,I,1)
if ASCB(clow)<128 then
Str = Str & Chr(ASCB(clow))
else
I=I+1
if I <= LenB(Bin) then Str = Str & Chr(ASCW(MidB(Bin,I,1)&clow))
end if
Next
Bin2Str = Str
End Function

Private Function Num2Str(num,base,lens)
dim ret
ret = ""
while(num>=base)
ret = (num mod base) & ret
num = (num - num mod base)/base
wend
Num2Str = right(string(lens,"0") & num & ret,lens)
End Function

Private Function Str2Num(str,base)
dim ret
ret = 0
for i=1 to len(str)
ret = ret *base + cint(mid(str,i,1))
next
Str2Num=ret
End Function

Private Function BinVal(bin)
dim ret
ret = 0
for i = lenb(bin) to 1 step -1
ret = ret *256 + ascb(midb(bin,i,1))
next
BinVal=ret
End Function

Private Function BinVal2(bin)
dim ret
ret = 0
for i = 1 to lenb(bin)
ret = ret *256 + ascb(midb(bin,i,1))
next
BinVal2=ret
End Function

Private Function getImageSize(filespec)
dim ret(3)
aso.LoadFromFile(filespec)
bFlag=aso.read(3)
select case hex(binVal(bFlag))
case "4E5089":
aso.read(15)
ret(0)="PNG"
ret(1)=BinVal2(aso.read(2))
aso.read(2)
ret(2)=BinVal2(aso.read(2))
case "464947":
aso.read(3)
ret(0)="GIF"
ret(1)=BinVal(aso.read(2))
ret(2)=BinVal(aso.read(2))
case "535746":
aso.read(5)
binData=aso.Read(1)
sConv=Num2Str(ascb(binData),2 ,8)
nBits=Str2Num(left(sConv,5),2)
sConv=mid(sConv,6)
while(len(sConv)<nBits*4)
binData=aso.Read(1)
sConv=sConv&Num2Str(ascb(binData),2 ,8)
wend
ret(0)="SWF"
ret(1)=int(abs(Str2Num(mid(sConv,1*nBits+1,nBits),2)-Str2Num(mid(sConv,0*nBits+1,nBits),2))/20)
ret(2)=int(abs(Str2Num(mid(sConv,3*nBits+1,nBits),2)-Str2Num(mid(sConv,2*nBits+1,nBits),2))/20)
case "FFD8FF":
do
do: p1=binVal(aso.Read(1)): loop while p1=255 and not aso.EOS
if p1>191 and p1<196 then exit do else aso.read(binval2(aso.Read(2))-2)
do:p1=binVal(aso.Read(1)):loop while p1<255 and not aso.EOS
loop while true
aso.Read(3)
ret(0)="JPG"
ret(2)=binval2(aso.Read(2))
ret(1)=binval2(aso.Read(2))
case else:
if left(Bin2Str(bFlag),2)="BM" then
aso.Read(15)
ret(0)="BMP"
ret(1)=binval(aso.Read(4))
ret(2)=binval(aso.Read(4))
else
ret(0)=""
end if
end select
ret(3)="width=""" & ret(1) &""" height=""" & ret(2) &""""
getimagesize=ret
End Function

Public Function imgW(pic_path)
Set fso1 = server.CreateObject("Scripting.FileSystemObject")
If (fso1.FileExists(pic_path)) Then
Set f1 = fso1.GetFile(pic_path)
ext=fso1.GetExtensionName(pic_path)
select case ext
case "gif","bmp","jpg","png":
arr=getImageSize(f1.path)
imgW = arr(1)
end select
Set f1=nothing
else
imgW = 0
End if
Set fso1=nothing
End Function

Public Function imgH(pic_path)
Set fso1 = server.CreateObject("Scripting.FileSystemObject")
If (fso1.FileExists(pic_path)) Then
Set f1 = fso1.GetFile(pic_path)
ext=fso1.GetExtensionName(pic_path)
select case ext
case "gif","bmp","jpg","png":
arr=getImageSize(f1.path)
imgH = arr(2)
end select
Set f1=nothing
else
imgH = 0
End if
Set fso1=nothing
End Function
End Class
'========================
'end of class
'========================

sub ArticleContent(intTitleLen)
      dim i,strTemp,w,f 'add w.h
      i=0
set    pp=new    imgInfo    'add get pic 's width and length
do while not rsArticle.eof
    strTemp=""  
    strTemp= strTemp & "<table width=100% border=0 cellspacing=3 cellpadding=0>"
                  strTemp= strTemp & "<tr>"
          dim i1
         for i1=1 to 4
                   strTemp= strTemp & "<td width=25% valign=bottom><table width=100% border=0 cellspacing=0 cellpadding=0>"
                   strTemp= strTemp & "<tr>"
      
          strTemp= strTemp & "<td><div align=center><a href=ProductShow.asp?ArticleID=" & rsArticle("articleid") & ">"
    
      fileExt=lcase(getFileExtName(rsArticle("DefaultPicUrl")))
      if fileext="jpg" or fileext="bmp" or fileext="png" or fileext="gif" then
          
       w = 125 /(pp.imgW(server.mappath(rsArticle("DefaultPicUrl"))))     图片的高宽比
       f = (pp.imgH(server.mappath(rsArticle("DefaultPicUrl")))) * w         得到高度
     
     
                   strTemp= strTemp & "<img border=0 src=" & rsArticle("DefaultPicUrl") & " alt="&rsArticle("bigclassname")&"&#10"&rsArticle("title")&" height="& f &" width=125 >"
      else
       if fileext="swf" then
          strTemp= strTemp & "<object    classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'    codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0' width='105' height='84'>"
       strTemp= strTemp &"<param name=movie value='"&rsArticle("DefaultPicUrl")&"'>"
       strTemp= strTemp &"<param name=quality value=high>"
       strTemp= strTemp &"<param name='Play' value='-1'>"
       strTemp= strTemp &"<param name='Loop' value='0'>"
       strTemp= strTemp &"<param name='Menu' value='-1'>"
       strTemp= strTemp &"<param name='wmode' value='transparent'>"
       strTemp= strTemp &"<embed src='"&rsArticle("DefaultPicUrl")&"' width='105' height='84' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash'></embed> </object>"            
        end if
          end if    
     
                   strTemp= strTemp & "</a></div></td>"
       

                     strTemp= strTemp & "<tr>"
      
              
                   strTemp= strTemp & "<td align=center>"
                   strTemp= strTemp & "<a href=ProductShow.asp?ArticleID=" & rsArticle("articleid") & ">" & rsArticle("Title") & ""
                   strTemp= strTemp & "</a></td>"
          strTemp= strTemp & "</tr>"
                   strTemp= strTemp & "</table>"
                   strTemp= strTemp & "</td>"

                rsArticle.movenext
          if rsArticle.eof then
           strTemp= strTemp & "</tr></table>"  
           response.write strTemp
     exit do
          end if
         next

         rsArticle.moveprevious

         strTemp= strTemp & "</tr></table>"  
         response.write strTemp
         rsArticle.movenext
         i=i+1
         if i>=(MaxPerPage/4) then exit do
loop
end sub

分享到:
评论

相关推荐

    微信小程序 实现canvas按照原图等比例不失真绘制海报图并保存海报图片到本地相册

    1. **等比例缩放图片** 当我们需要将图片绘制到canvas时,保持图片的原始比例是非常重要的,以避免失真。这可以通过计算图片的宽高比和canvas的可用空间来实现。例如,我们可以先获取图片的原始尺寸,然后根据...

    ImgInfo(图片控件)

    此外,控件还可能提供显示图片、缩放、旋转等功能,使得开发者在处理图像时更加便捷。 在提供的文件列表中,`Form1.frm`是Visual Basic的表单文件,它通常包含了使用ImgInfo控件的用户界面设计;`ImgInf.ocx`是控件...

    PHP 等比例缩放图片详解及实例代码

    PHP 等比例缩放图片可以使用 PHP 的图像处理函数来实现。下面是一个简单的示例代码: ```php function imgzip($src,$newwid,$newhei){ $imgInfo = getimagesize($src); $imgType = image_type_to_extension($...

    如何使用php等比例缩放图片

    通过以上步骤,我们就成功地使用PHP实现了等比例缩放图片的功能。这个过程适用于大多数的图像格式,包括JPEG、PNG、GIF等,只需根据图片类型调整打开和保存图像的函数即可。在实际应用中,你可以根据需要调整代码,...

    ImgInfo ActiveX控件

    ImgInfo 是ActiveX控件,可读取BMP,GIF,JPG 和 PNG 文件格式,显示相关信息。 ImgInfo is an ActiveX control designed to extract some information from an image file without loading image data.It reads ...

    分享功能,canvas绘制微信小程序分享海报

    在这个函数里,我们可以返回一个对象,该对象包含了分享的标题、路径、图片等信息。例如: ```javascript onShareAppMessage: function (res) { return { title: '来自我的小程序的分享', path: '/pages/index/...

    flash as3 导入外部图片,循环播放并有按钮控制

    - **创建控制按钮**:虽然原代码中没有具体实现控制按钮,但可以通过添加按钮对象并在其上绑定事件来实现控制功能,例如暂停/继续播放、跳转到特定图片等。 ### 三、代码优化建议 #### 3.1 错误处理 - 添加错误...

    imginfo.rar_JPEG2000_jpeg2000 compression_压缩编码_图象压缩

    9. **"imginfo.c"程序**: 这个C语言源代码文件可能实现了JPEG 2000的读取、解析或编码功能,开发者可以通过阅读和修改代码来理解JPEG 2000的实现原理或开发自己的图像处理工具。 10. **"www.pudn.com.txt"**: 这个...

    ueditor自定义图片上传

    3. **编写上传处理函数**:可以通过`editor.execCommand`方法触发图片上传,并传递自定义参数。 ```javascript editor.addListener('beforeInsertImage', function(type, info) { var files = info[0]....

    PHP实现浏览器中直接输出图片的方法示例

    在PHP编程中,有时我们需要在...了解这些知识点后,你可以根据需求对图像进行各种操作,如缩放、裁剪、旋转等,然后再输出到浏览器。这在动态生成验证码、图片处理服务或其他需要实时处理图片的应用场景中非常有用。

    利用HTML、CSS实现的图片预览弹出层的教程

    4. 图片信息显示:`#imgName`和`#imgInfo`用于显示当前预览图片的名称和描述,需要在点击图片时更新这些信息。 5. 关闭预览层:添加一个关闭按钮或者点击背景层`#ImageScaBg`时关闭预览层,可以使用`fadeOut()`或`...

    Python3+OpenCV2实现图像的几何变换(平移、镜像、缩放、旋转、仿射)

    imgInfo = img.shape height = imgInfo[0] width = imgInfo[1] mode = imgInfo[2] dst = np.zeros(imgInfo, np.uint8) for i in range( height ): for j in range( width - 100 ): dst[i, j + 10

    php上传图片并压缩的实现方法

    4. **读取图片信息**:通过`getimagesize()`函数获取图片的尺寸等信息。 5. **按需调整图片大小**:使用GD库或其他第三方库(如Imagick)来调整图片大小或进行其他处理。 6. **保存调整后的图片**:将处理后的图片...

    php函数array_merge用法一例(合并同类数组)

    然后通过调用`array_merge()`函数,将`$arr1`和`$arr2`合并为一个新的数组`$imgInfo`。 在执行合并操作后,我们得到了一个包含所有记录的新数组`$imgInfo`,接下来的`foreach`循环用来遍历这个新数组,并将每个元素...

    ChooseImgPuzzle:小程序选择图片拼图

    调用此方法后,用户会看到一个标准的图片选择界面,选择完成后,回调函数会返回图片的临时路径,这些路径可以用于后续的图片处理操作。 ```javascript wx.chooseImage({ count: 9, // 默认9张 sizeType: ['...

    PHP 图片水印类代码

    2. **透明度实现**:通过`imagecopymerge()`函数来实现图片水印的透明度设置;对于文字水印,可能通过调整填充颜色的方式来实现。 3. **位置计算**:根据设置的位置参数,通过一系列数学运算确定水印在图片中的具体...

    PHP添加文字水印或图片水印的水印类完整源代码与使用示例

    - **图像信息获取**:通过`imginfo`方法获取原图片的信息,并根据图片格式加载图片到资源句柄中。 - **水印信息获取**:`waterimginfo`方法用于获取水印图片信息并加载到相应的资源句柄中。 - **输出方法**:`output...

    Angularjs上传图片实例详解

    本文将详细介绍如何在AngularJS中实现图片上传功能,重点是利用ngFileUpload插件完成这一功能。 首先,要实现图片上传,需要引入ngFileUpload插件。该插件是专门为AngularJS设计的,支持多种浏览器,并且可以方便地...

Global site tag (gtag.js) - Google Analytics