web-dev-qa-db-ja.com

アップロードに最小画像サイズを要求する方法

私は、作者が特定の寸法以下の画像をアップロードするのを制限する方法が必要です。

少なくとも400px x 400pxの画像のアップロードのみを許可したいとします。画像サイズが小さい場合、作者は画像が小さすぎるというエラー通知を受け取るべきです。

これを達成できるプラグインやコードはありますか?

17
boruchsiper

このコードをあなたのテーマの functions.php ファイルに追加すると、最小画像寸法が制限されます

add_filter('wp_handle_upload_prefilter','tc_handle_upload_prefilter');
function tc_handle_upload_prefilter($file)
{

    $img=getimagesize($file['tmp_name']);
    $minimum = array('width' => '640', 'height' => '480');
    $width= $img[0];
    $height =$img[1];

    if ($width < $minimum['width'] )
        return array("error"=>"Image dimensions are too small. Minimum width is {$minimum['width']}px. Uploaded image width is $width px");

    elseif ($height <  $minimum['height'])
        return array("error"=>"Image dimensions are too small. Minimum height is {$minimum['height']}px. Uploaded image height is $height px");
    else
        return $file; 
}

それからちょうどあなたがほしい最小次元の数を変えなさい(私の例では640と480)

25
Maor Barazany

同僚のコードを再フォーマットしないほうがいいです。
だから、これは@ MaorBarazanyのものとほとんど同じ答えですが、MIMEタイプをチェックし、file['error']宣言を変更し、関数名前空間をこのwpse質問IDに変更します。

また、このチェックは管理者ではないのユーザーに対してのみ行われます。

add_action( 'admin_init', 'wpse_28359_block_authors_from_uploading_small_images' );

function wpse_28359_block_authors_from_uploading_small_images()
{
    if( !current_user_can( 'administrator') )
        add_filter( 'wp_handle_upload_prefilter', 'wpse_28359_block_small_images_upload' ); 
}

function wpse_28359_block_small_images_upload( $file )
{
    // Mime type with dimensions, check to exit earlier
    $mimes = array( 'image/jpeg', 'image/png', 'image/gif' );

    if( !in_array( $file['type'], $mimes ) )
        return $file;

    $img = getimagesize( $file['tmp_name'] );
    $minimum = array( 'width' => 640, 'height' => 480 );

    if ( $img[0] < $minimum['width'] )
        $file['error'] = 
            'Image too small. Minimum width is ' 
            . $minimum['width'] 
            . 'px. Uploaded image width is ' 
            . $img[0] . 'px';

    elseif ( $img[1] < $minimum['height'] )
        $file['error'] = 
            'Image too small. Minimum height is ' 
            . $minimum['height'] 
            . 'px. Uploaded image height is ' 
            . $img[1] . 'px';

    return $file;
}

フックの結果:

blocked image uploads

11
brasofilo