나누미 이미지 컴포넌트 파일을 서버에 설치하셔야합니다.
윈도우2003, 2008R2 이렇게 두군데 설치해서 사용해봤는데, 잘 됩니다.
DefaultPath = server.mappath("\") & "\upload\"
upPath = "bbsupload"
const_thum_width = 200 '가로사이즈
const_thum_height = 170 '세로사이즈
userfilename = "abc.png"
Set Image = Server.CreateObject("Nanumi.ImagePlus")
Image.OpenImageFile DefaultPath & upPath & "\" & userfilename
Image.OverWrite = True '덮어쓰기 여부
Image.ImageFormat = "JPG"
Image.Quality = 100
Image.KeepAspect = false 'true면 원본 가로세로 비율대로 저장, false면 아래 이미지 사이즈대로 저장
Image.ChangeSize const_thum_width, const_thum_height 'Image.width, Image.Height 이런것도 있습니다. 용도는 찾아보세요.
Image.SaveFile DefaultPath & upPath & "\thumnail\" & userfilename
Image.Dispose
Set Image = Nothing
이 외에 이미지 회전, 대칭 이동 등도 가능합니다.
일단 가능/불가능 여부만 알아두셨다가 필요할때 검색하시면
자료 많이 나옵니다.
'asp' 카테고리의 다른 글
class asp에서 WScript.Shell 사용하기 위해 서버에 설치할 것 (0) | 2015.06.11 |
---|---|
csv 파일로 다운로드 (0) | 2014.05.15 |
classic asp 엑셀 출력시 문자열이 숫자나 수식으로 출력되는 문제 해결 방법 (0) | 2013.09.08 |
asp xml 파싱 (한글도 잘 되는 소스) (1) | 2013.06.21 |
classic asp 큰 따옴표 치환하기 (0) | 2013.01.25 |