|
|
|
ASP ทำ Resize ได้หรือเปล่าครับ คือต้องการที่จะทำ เวบรูปภาพแต่ ไม่ต้องการที่จะอัพโหลดโฟล์รูปมาก เลยอยากใช้ |
|
|
|
|
|
|
|
อยากรู้ด้วยครับ (ขอคำตอบภาษาไทย)
|
|
|
|
|
Date :
17 ม.ค. 2548 01:23:23 |
By :
นัท |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (ASP)
<%
Option Explicit
Dim Chs, objConst,NewWidth,NewHeight
Dim FileName,OutFormat
FileName = "mygirl.jpg"
OutFormat = "Jpg" '*** Gif,Png ***'
NewWidth = "100" '*** Set new Width , Height automatic caculate ***'
NewHeight = 0 '*** Auto Resize ***'
'*** Get Images Width & Height ***'
Dim objFso,myImg,Width,Height
Set objFso = CreateObject("Scripting.FileSystemObject")
IF objFso.FileExists(Server.MapPath(FileName)) Then
set myImg = Loadpicture(Server.MapPath(FileName))
Width = Round(myImg.width / 26.4583)
Height = Round(myImg.height / 26.4583)
NewHeight = Round((NewWidth*Height)/Width)
'NewHeight = 100
'NewWidth = Round((NewHeight*Width)/Height) '*** or Automatic Height ***'
End If
'*************** End *************'
Set Chs = Server.CreateObject("OWC10.ChartSpace")
Set objConst = Chs.Constants
Chs.Interior.SetTextured Server.MapPath(FileName), objConst.chStretchPlot, , objConst.chAllFaces
Chs.border.color = -3
Response.BinaryWrite Chs.GetPicture(OutFormat, NewWidth, NewHeight)
Set objConst = Nothing
Set Chs = Nothing
%>
|
|
|
|
|
Date :
2009-04-26 09:26:09 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|