MeioUpload不使用cakeHP创建缩略图


MeioUpload not creating thumbnails with cakePHP

我目前正在使用位于此处的MeioUpload插件:

MeioUpload

上传文件的工作非常顺利,但缩略图并没有生成。

其他人有这个问题吗?我使用的是cakeHP 2.1。

我严格遵守了自述文件。

我能够通过将以下代码添加到模型中来实现这一点:

class Image extends AppModel {
    var $actsAs = array(
        'MeioUpload.MeioUpload' => array(
            'filename' => array(
                'thumbsizes' => array(
                    '320x90' => array(
                        'width' => 320,
                        'height' => 90
                    )
                )                   
            )
        )
    );
}

您可以使用上面给定的参数更改缩略图的大小。