글내용 이미지 리사이징

by 조쉬 posted Feb 27, 2014
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
function content_imgsize($content,$imgsize){
 $content=str_replace("IMG","img",$content); 
 $content=preg_replace("/<img(.*?)\>/","<img $1 onload=\"sizeX=".$imgsize.";if(this.width>sizeX) {Rate=parseInt(this.width/sizeX);if(Rate>0) {this.width=sizeX;this.height=this.height/Rate;}}\">",$content); 
 return($content);
}