Dim objPic Set objPic = LoadPicture("이미지 경로") Response.Write(objPic.Height & "<br>") Response.Write(objPic.Width & "<br>") Response.Write(objPic.Type & "<br>") Response.Write(objPic.Handle & "<br>") Response.Write(objPic.hPal & "<br>") Set objPic = Nothing 'pic : server.MapPath("/") & imgName Function GetImageSizeX(pic) Set p = LoadPicture(pic) width = CLng(CDbl(p.Width) * 24 / 635) Set p = Nothing GetImageSizeX = width End Function Function GetImageSizeY(pic) Set p = LoadPicture(pic) height = CLng(CDbl(p.Height) * 24 / 635) Set p = Nothing GetImageSizeY = height End Function[출처] ASP LoadPicture 이미지사이즈|작성자 블루호넷
'프로그램&DB > ASP' 카테고리의 다른 글
[ASP] Adodb.Command 사용법 (0) | 2011.08.11 |
---|---|
[ASP DEXT] 이미지 썸네일(리사이즈) (0) | 2011.08.11 |
UTF-8인코딩 및 디코딩 관련 함수 (URLEncodeUTF8,URLDecodeUTF8) (0) | 2011.08.11 |
[ASP] DEXT.FileUpload API (FileUpload, FileDownload, FileUploadMonitor, ImageProc) (0) | 2011.08.11 |
ASP에서 서버의 디렉토리를 재귀적으로 자동생성하는 함수 by 채윤이님 (0) | 2011.08.11 |