Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- xmldom
- javascript 한글입력체크
- injection
- array
- instr
- sql업데이트
- update
- ERD
- inner join
- 이미지가로길이
- 인젝션
- sql순위
- VarType
- XML
- join
- 정규식
- asp함수
- VARIABLE
- WML
- 자바기초
- JavaScript
- MSSQL보안
- sql랭킹
- jdbc driver
- 한글입력체크
- SPLIT
- tempDB
- wap
- FileSystemObject
- 이미지세로길이
Archives
- Today
- Total
3초기억력
ASP - 저장된 이미지를 바이너리로 변환하여 보여주는 소스 본문
<!-- 저장된 이미지를 바이너리로 변환하여 보여주는 소스 -->
<%
Set BinaryStream = CreateObject("ADODB.Stream")
set fs = Server.CreateObject("Scripting.FileSystemObject")
Set Fil = fs.GetFile("E:\file_upload\1.jpg") '절대경로
BinaryStream.Type = 1
BinaryStream.Open
BinaryStream.LoadFromFile Fil.path
Dim i
Const BlockSize = 1000
For i = 1 To BinaryStream.Size Step BlockSize
Response.BinaryWrite BinaryStream.Read(BlockSize)
Next
'if Not BinaryStream.EOS Then Response.BinaryWrite
BinaryStream.Read
%>
'플밍_ASP' 카테고리의 다른 글
ASP - binary 이미지 등 읽기 function (0) | 2011.03.25 |
---|---|
ASP - ASP에서 바이너리 데이터를 읽고 표시하려면? (0) | 2011.03.25 |
asp - 문자열 instr, mid 사용하여, 어디에서 어디까지 사이의 것들 뽑아내기 (0) | 2010.04.15 |
ASP TimeOut Error(408 Error) (0) | 2010.04.01 |
sql - ADO Data Types (0) | 2010.03.25 |
Comments