当前位置:编程学习 > asp >>

易做图

<HTML>
<HEAD>
<TITLE>AspJpeg 1.0 - Simple.asp</TITLE>
</HEAD>
<BODY>
<%
    ' Create instance of AspJpeg
    Set Jpeg = Server.CreateObject("Persits.Jpeg")
    
    ' Compute path to source image
    Path = Server.MapPath("images") & "dodge_viper.jpg"
    ' Open source image
    Jpeg.Open Path
    ' Decrease image size by 50%
    Jpeg.Width = Jpeg.OriginalWidth / 2
    Jpeg.Height = Jpeg.OriginalHeight / 2
    ' Apply sharpening if necessary
    ' Jpeg.Sharpen 1, 130
    ' create thumbnail and save it to disk
    Jpeg.Save Server.MapPath("images") & "clock_small.jpg"
%>
Original Image:<BR>
<IMG SRC="images/clock.jpg"><P>
Thumbnail (50% reduction):<BR>
<IMG SRC="images/clock_small.jpg"><P>
<%
    Response.Write "<HR>AspJpeg expires on " & Jpeg.Expires
%>
</BODY>
</HTML>

补充:asp教程,技巧与性能优化
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,