⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 resize_upload.asp

📁 aspupload
💻 ASP
字号:
<!-- AspUpload Code samples: resize_upload.asp -->
<!-- Invoked by resize.asp -->
<!-- Copyright (c) 2001 Persits Software, Inc. -->
<!-- http://www.persits.com -->

<HTML>
<BODY>

<%

Set Upload = Server.CreateObject("Persits.Upload")

' Use AspJpeg to resize image
Set Jpeg = Server.CreateObject("Persits.Jpeg")

' Capture and save uploaded image to the same directory as script
Upload.Save Server.MapPath(".")

For Each File in Upload.Files
	If File.ImageType <> "JPG" Then
		Response.Write "This is now a JPGE image."
		File.Delete
		Response.End
	End If

	Jpeg.Open File.Path

	Scale = Upload.Form("Scale")
	Jpeg.Width = Jpeg.OriginalWidth * Scale / 100
	Jpeg.Height = Jpeg.OriginalHeight * Scale / 100

	Response.Write Jpeg.OriginalHeight & "-" & Jpeg.Height

	Jpeg.Save Server.MapPath(".") & "\small_" & File.FileName
%>
	<IMG SRC="<% = File.FileName %>"><BR>
	<IMG SRC="<% = "small_" & File.FileName %>"><P>
<%
Next
%>

</BODY>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -