利用ASP获取设置图片尺寸大小

2024-04-21 02:18

本文主要是介绍利用ASP获取设置图片尺寸大小,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

< %
imgpath
= " default_22.gif "

response.write 
" <img src=' " & imgpath & " ' border=0  " & SetAutoImg( 280 , 260 ,imgpath) & " ><br>宽: " & GetImgW(ImgPath) & " ;高: " & GetImgH(ImgPath)
function  GetImgW(ImgPath)
    
set  pp = new  imgInfo 
    w
= pp.imgW(server.mappath(ImgPath)) 
    
set  pp = nothing  
    GetImgW
= w
end function

function  GetImgH(ImgPath)
    
set  pp = new  imgInfo 
    h
= pp.imgH(server.mappath(ImgPath)) 
    
set  pp = nothing  
    GetImgH
= h
end function

function  SetAutoImg(fitWidth,fitHeight,ImgPath)
    hhRtn
= 0
    wwRtn
= 0
    
set  pp = new  imgInfo 
    ww
= pp.imgW(server.mappath(ImgPath)) 
    hh
= pp.imgH(server.mappath(ImgPath))     
    
set  pp = nothing  
    
if  ww > 0   and  hh > 0   then
        
if  ww / hh >= FitWidth / FitHeight  then
            wwRtn
= fitWidth
            hhRtn
= (hh * FitWidth) / ww
        
else
            hhRtn
= fitHeight
            wwRtn
= (ww * FitHeight) / hh
        
end   if
    
end   if
    SetAutoImg
= "  height=' " & hhRtn & " ' " & "  width=' " & wwRtn & " "
end function

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
%
>

这篇关于利用ASP获取设置图片尺寸大小的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/921928

相关文章

深入理解C++ 空类大小

《深入理解C++空类大小》本文主要介绍了C++空类大小,规定空类大小为1字节,主要是为了保证对象的唯一性和可区分性,满足数组元素地址连续的要求,下面就来了解一下... 目录1. 保证对象的唯一性和可区分性2. 满足数组元素地址连续的要求3. 与C++的对象模型和内存管理机制相适配查看类对象内存在C++中,规

Linux中chmod权限设置方式

《Linux中chmod权限设置方式》本文介绍了Linux系统中文件和目录权限的设置方法,包括chmod、chown和chgrp命令的使用,以及权限模式和符号模式的详细说明,通过这些命令,用户可以灵活... 目录设置基本权限命令:chmod1、权限介绍2、chmod命令常见用法和示例3、文件权限详解4、ch

SpringBoot项目引入token设置方式

《SpringBoot项目引入token设置方式》本文详细介绍了JWT(JSONWebToken)的基本概念、结构、应用场景以及工作原理,通过动手实践,展示了如何在SpringBoot项目中实现JWT... 目录一. 先了解熟悉JWT(jsON Web Token)1. JSON Web Token是什么鬼

使用Spring Cache时设置缓存键的注意事项详解

《使用SpringCache时设置缓存键的注意事项详解》在现代的Web应用中,缓存是提高系统性能和响应速度的重要手段之一,Spring框架提供了强大的缓存支持,通过​​@Cacheable​​、​​... 目录引言1. 缓存键的基本概念2. 默认缓存键生成器3. 自定义缓存键3.1 使用​​@Cacheab

python获取当前文件和目录路径的方法详解

《python获取当前文件和目录路径的方法详解》:本文主要介绍Python中获取当前文件路径和目录的方法,包括使用__file__关键字、os.path.abspath、os.path.realp... 目录1、获取当前文件路径2、获取当前文件所在目录3、os.path.abspath和os.path.re

java如何调用kettle设置变量和参数

《java如何调用kettle设置变量和参数》文章简要介绍了如何在Java中调用Kettle,并重点讨论了变量和参数的区别,以及在Java代码中如何正确设置和使用这些变量,避免覆盖Kettle中已设置... 目录Java调用kettle设置变量和参数java代码中变量会覆盖kettle里面设置的变量总结ja

Java子线程无法获取Attributes的解决方法(最新推荐)

《Java子线程无法获取Attributes的解决方法(最新推荐)》在Java多线程编程中,子线程无法直接获取主线程设置的Attributes是一个常见问题,本文探讨了这一问题的原因,并提供了两种解决... 目录一、问题原因二、解决方案1. 直接传递数据2. 使用ThreadLocal(适用于线程独立数据)

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

Android Environment 获取的路径问题

1. 以获取 /System 路径为例 /*** Return root of the "system" partition holding the core Android OS.* Always present and mounted read-only.*/public static @NonNull File getRootDirectory() {return DIR_ANDR

uniapp设置微信小程序的交互反馈

链接:uni.showToast(OBJECT) | uni-app官网 (dcloud.net.cn) 设置操作成功的弹窗: title是我们弹窗提示的文字 showToast是我们在加载的时候进入就会弹出的提示。 2.设置失败的提示窗口和标签 icon:'error'是设置我们失败的logo 设置的文字上限是7个文字,如果需要设置的提示文字过长就需要设置icon并给