对于我的Wordpress网站,我想以编程方式自动生成额外的照片尺寸,同时用户上传图片。我希望这张照片也出现在媒体库中。
我写了一个小侧插件,我激活它以挂钩上传动作。 我的问题是,我应该加入哪个wp上传操作来生成上传图片的额外大小。
欢迎获取当前上传和写入额外图像条目的示例。
谢谢!
答案 0 :(得分:3)
您可以尝试wp_handle_upload_prefilter:
add_filter('wp_handle_upload_prefilter', 'custom_upload_filter' );
function custom_upload_filter( $file ){
$file['name'] = 'wordpress-is-awesome-' . $file['name'];
return $file;
}
按照上面的说法挂钩上传操作,并做一些像生成额外的图片:
function generate_image($src_file, $dst_file) {
$src_img = imagecreatefromgif($src_file);
$w = imagesx($src_img);
$h = imagesy($src_img);
$new_width = 520;
$new_height = floor($new_width * $h / $w);
if(function_exists("imagecopyresampled")){
$new_img = imagecreatetruecolor($new_width , $new_height);
imagealphablending($new_img, false);
imagecopyresampled($new_img, $src_img, 0, 0, 0, 0, $new_width, $new_height, $w, $h);
} else {
$new_img = imagecreate($new_width , $new_height);
imagealphablending($new_img, false);
imagecopyresized($new_img, $src_img, 0, 0, 0, 0, $new_width, $new_height, $w, $h);
}
imagesavealpha($new_img, true);
imagejpeg($new_img, $dst_file);
imageDestroy($src_img);
imageDestroy($new_img);
return $dst_file;
}