使用 Symfony 或 PHP 创建缩略图
我在 Symfony 1.4 中使用 sfThumbnailPlugin。我有问题... 例如:
我设置:
$thumbnail = new sfThumbnail(80, 100);
如果我上传图像 700px/400px 那么这个插件会使图像 80px/40px 而不是 80/100。如果图像是 400/700 就可以了。我知道那会变得模糊。
我该如何修复?或者我怎样才能用清晰的PHP制作?
i use sfThumbnailPlugin for Symfony 1.4. I have problem...
For example:
i set:
$thumbnail = new sfThumbnail(80, 100);
and if i upload image 700px/400px then this plugin make image 80px/40px instead of 80/100. If image is 400/700 this is ok. I know that be blurred.
How can i fix? Or how can i make in clear PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请查看文档或插件的构造函数:
您需要像这样修改参数,例如
Please take a look at the docu or the constructor of the plugin :
You need to modify your parameters like this e.g.