摘要: 1 function PhotoDrawImage(ImgD, iwidth, iheight) { 2 3 var image = new Image(); 4 image.src = ImgD.src; 5 if (image.width > 0 && image.height > 0) { 6 flag = true; 7 if (image.width / image.height >= iwidth / iheight) { 8 ... 阅读全文
posted @ 2012-09-06 16:14 txsun 阅读(418) 评论(0) 推荐(0) 编辑