आकार बदलने का कार्य पहले से ही बड़े / मध्यम / अंगूठे के आकार बनाने के लिए किया जाता है, लेकिन आपके सामने समस्या यह है कि आकार बदलने के लिए छवि बहुत बड़ी है, या तो स्मृति या समय की कमी के कारण।
इसलिए आकार बदलना कोई विकल्प नहीं है, अगर ऐसा नहीं होता तो आपके पास अपना मुद्दा नहीं होता। इसके बजाय, छवियों को सीमित करने का प्रयास करें, इसलिए यदि 20MB अपलोड होता है, तो यह एक संदेश के साथ नकार दिया जाता है जो यह दर्शाता है कि इसे कम करने की आवश्यकता है।
छवि क्षेत्र / मेगापिक्सेल के आधार पर सीमा:
<?php
/**
* Plugin Name: Deny Giant Image Uploads
* Description: Prevents Uploads of images greater than 3.2MP
*/
function tomjn_deny_giant_images($file){
$type = explode('/',$file['type']);
if($type[0] == 'image'){
list( $width, $height, $imagetype, $hwstring, $mime, $rgb_r_cmyk, $bit ) = getimagesize( $file['tmp_name'] );
if($width * $height > 3200728){ // I added 100,000 as sometimes there are more rows/columns than visible pixels depending on the format
$file['error'] = 'This image is too large, resize it prior to uploading, ideally below 3.2MP or 2048x1536';
}
}
return $file;
}
add_filter('wp_handle_upload_prefilter','tomjn_deny_giant_images');
चौड़ाई या ऊंचाई के आधार पर सीमा:
https://wordpress.stackexchange.com/posts/67110/revisions
<?php
/** Plugin Name: (#67107) »kaiser« Restrict file upload */
function wpse67107_restrict_upload( $file )
{
$file_data = getimagesize( $file );
// Handle cases where we can't get any info:
if ( ! $file_data )
return $file;
list( $width, $height, $type, $hwstring, $mime, $rgb_r_cmyk, $bit ) = $file_data;
// Add conditions when to abort
if ( $width > 2048 )
$file['error'] = 'Error statement';
return $file;
}
add_filter( 'wp_handle_upload_prefilter', 'wpse67107_restrict_upload' );
क्षेत्र द्वारा सीमित करने से लम्बी / पतली या चौड़ी / छोटी छवियों को आकार दिया जा सकता है, जिन्हें आयामों द्वारा सीमित करना समझाने में आसान हो सकता है