如何在经典asp中创建缩略图?
我在 codeproject 中找到了最好的解决方案,
但要启用它,我需要注册首先是 com 对象。
那么有没有其他方法可以在不使用任何第三方的情况下创建缩略图呢?
在大约的示例中,我们必须使用 CxImageATL.dll。如果我们离不开第三方,那么有没有其他方法可以使用这个 dll 而无需在服务器上注册该 dll?
I found the best solution in codeproject
But to enable that, I need to register the com object first.
So is there any other way to create thumbnails with out using any third party?
In about example we have to use CxImageATL.dll. If we can't do without third party then, Is there any other way to use this dll with out registering the dll on server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CodeProject 解决方案是 cxImage.dll 的包装器。问题是您无法直接从 ASP 访问 Windows API,因此您需要第三方(或您自己的)COM DLL。
如果您不想注册任何对象,我建议您使用 ASP.net 页面来完成创建缩略图的工作。当然服务器已经安装了 ASP.net,您不需要注册任何东西。
The CodeProject solution is a wrapper to the cxImage.dll. The problem is that you can not access the Windows API directly from ASP, so you need a third party (or your own) COM DLL.
If you don't want to register any object, I suggest you to use an ASP.net page to do the job of creating the thumbnail. Surely the server has ASP.net installed and you don't need to register anything.