摘要: <script language="JavaScript"><!--//图片按比例缩放function DrawImage(ImgD,iwidth,iheight){ //参数(图片,允许的宽度,允许的高度) var image=new Image(); image.src=ImgD.src; if(image.width>0 && image.height>0){ if(image.width/image.height>= iwidth/iheight){ if(image.width>iwidth){ ImgD. 阅读全文
posted @ 2012-01-31 17:42 Nano 阅读(312) 评论(0) 推荐(0) 编辑