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
- php
- C/C++
- ejb
- flex3
- 주식이야기
- 도커
- 디즈니씨
- php thumbnail
- 베트남어
- 명사 뽑아내기
- rss
- Node.js
- express for node.js
- 명사 추출기
- Lift
- scala
- 책이야기
- ror실행
- Eclipse
- 스킨 스쿠버
- node.js web framework
- ajax
- iBatis
- Cross
- 나의 프로젝트
- docker
- 명사 분석기
- 메일왕창보내는법
- nodejs express
- 나의 취미
Archives
- Today
- Total
목록php thumbnail (1)
nkdk의 세상
해당하는 폴더에 jpg 파일에 썸네일을 만들어 주는 법
function createThumbs( $pathToImages, $pathToThumbs, $thumbWidth ) { // open the directory $dir = opendir( $pathToImages ); // loop through it, looking for any/all JPG files: while (false !== ($fname = readdir( $dir ))) { // parse path for the extension $info = pathinfo($pathToImages . $fname); // continue only if this is a JPEG image if ( strtolower($info['extension']) == 'jpg' ..
My Programing/PHP
2011. 12. 5. 13:41