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
- iBatis
- 책이야기
- express for node.js
- php
- docker
- scala
- 명사 추출기
- 베트남어
- Eclipse
- ajax
- 명사 분석기
- ror실행
- 도커
- Lift
- C/C++
- 스킨 스쿠버
- ejb
- 나의 프로젝트
- 명사 뽑아내기
- rss
- nodejs express
- 주식이야기
- 나의 취미
- 디즈니씨
- Cross
- Node.js
- php thumbnail
- 메일왕창보내는법
- node.js web framework
- flex3
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