05 2013 档案
摘要:做站的时候经常会遇到要生成缩略图的功能,因为可能不同的情况需要用来不同大小的缩略图。本文生成的图片都为正方形,只有正方形的缩略图才是保证图片足够清晰。当我我这里说的正方形 是先按比例压缩,然后加一个固定的白底 然后居中显示。好了 话不多说 上代码:新建outputimg.ashx 1 //调整图片大小 2 private static Size NewSize(int maxWidth, int maxHeight, int Width, int Height) 3 { 4 double w = 0.0; 5 double h =...
阅读全文
摘要:参考自:stackoverflowI've the same message, I have a webpage with do on visual studio 2010, I read a file.xls on that page,in my project visual has not any problem, when I put it on my IIS local throw me a'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine',I fixed
阅读全文