Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 plupload 来保存多个图像,我想存储具有 2 种尺寸的相同图像,小图像用于 thum 和大图像以大显示。
plupload 将如何存储 2 种尺寸的图像?
在服务器端实现你需要的东西更容易......
对于插件;您可以使用以下功能:
resize : {width : 500, height : 600, quality : 90},
如果您还利用诸如 FileUploaded 之类的事件来重新上传相同的上传文件但具有不同的参数,您应该能够实现您所需要的。
这里看看这个讨论;它应该引导你走上正确的道路
http://www.plupload.com/punbb/viewtopic.php?id=555