[덱스트업로드] 원본 이미지파일 업로드, 워터마킹, 썸네일을 동시에 처리 하려면?
아래 예제코드를 참고하시기 바랍니다. <%@ Language=VBScript %> <% Dim UploadPath Dim UploadPathWaterMark Dim UploadPathThumbnail Dim FilePath Dim FilePath1 set uploadform=server.CreateObject(“DEXT.FileUpload”) uploadform.DefaultPath=”C:\Temp” UploadPath = uploadform(“file”).Save ‘(1)원본 업로드 Response.Write(“Save as Source Image:” & UploadPath & “<br>”) set objImage =server.CreateObject(“DEXT.ImageProc”) ‘FileNameWithoutExt 속성은 업로드 한 파일의 이름을 리턴 한다.(확장 자 제외) if true = objImage.SetSourceFile(UploadPath) then…
