使用 Symfony 或 PHP 创建缩略图

发布于 2024-12-01 06:12:57 字数 275 浏览 1 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掐死时间 2024-12-08 06:12:57

请查看文档或插件的构造函数:

/**
 * Thumbnail constructor
 *
 * @param int (optional) max width of thumbnail
 * @param int (optional) max height of thumbnail
 * @param boolean (optional) if true image scales
 * @param boolean (optional) if true inflate small images
 * @param string (optional) adapter class name
 * @param array (optional) adapter options
 */
public function __construct($maxWidth = null,
                            $maxHeight = null,
                            $scale = true,
                            $inflate = true,
                            $quality = 75,
                            $adapterClass = null,
                            $adapterOptions = array()
                           )

您需要像这样修改参数,例如

// so height will be calculated
$thumbnail = new sfThumbnail(80, null, true);

Please take a look at the docu or the constructor of the plugin :

/**
 * Thumbnail constructor
 *
 * @param int (optional) max width of thumbnail
 * @param int (optional) max height of thumbnail
 * @param boolean (optional) if true image scales
 * @param boolean (optional) if true inflate small images
 * @param string (optional) adapter class name
 * @param array (optional) adapter options
 */
public function __construct($maxWidth = null,
                            $maxHeight = null,
                            $scale = true,
                            $inflate = true,
                            $quality = 75,
                            $adapterClass = null,
                            $adapterOptions = array()
                           )

You need to modify your parameters like this e.g.

// so height will be calculated
$thumbnail = new sfThumbnail(80, null, true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文