- {{d.title}} 发布时间:{{moment(d.uptime).format('ll')}}
2019-10-31 15:42:04
1.新增PSD,PDF文件缩略图功能。支持上传psd,pdf文件时自动生成缩略图上传。上传文件块时,在上传最后一块数据时同时上传缩略图。
数据格式:
文件块
缩略图
缩略图文件位置:
缩略图将和原始文件保存在同及目录中,并以.thumb.png结尾
服务端f_post.aspx
void saveThumb(string pathSvr) {
string complete = Request.Headers["complete"];//是否是最后一块
HttpPostedFile thumb = null;//缩略图
if (string.Compare(complete, "true", true) == 0)
{
thumb = Request.Files.Get("thumb");
if (thumb == null) return;
//保存缩略图
FileBlockWriter res = new FileBlockWriter();
string thumbPath = pathSvr + ".thumb.png";
res.make(thumbPath, thumb.InputStream.Length);
res.write(thumbPath, 0, ref thumb);
}
}
服务端f_post.jsp
js配置
up6.js
format表示需要生成缩略图的文件类型(扩展名),目前支持psd,pdf
dst表示缩略图类型,目前支持png
w,h表示缩略图尺寸,0表示使用实际图片尺寸。
w:100,h:100表示等比例生成100*100的缩略图