'jpeg_quality'
フィルターフック関数は2つの引数を受け入れます$jpeg_quality
し、$function
解雇されたフィルターフック内から関数があるとのいずれかになりますimage_resize
かwp_crop_image
。したがって.jpeg
、このフィルターフック関数から画像サイズに従って画像の品質を選択的に設定する方法はありません。
ただし、添付ファイルのアップロードプロセスで後のアクションフックにフックし、.jpeg
特定のサイズに応じて、その時点でアップロードされた画像の画質をニーズに合わせて調整できます。最初にjpeg_quality
を最大に設定して元の画像の品質を維持し、次にadded_post_meta
アクションフック(添付ファイルメタデータの挿入の最後に呼び出されます)にフックして、次のように品質を調整します。
// set the quality to maximum
add_filter('jpeg_quality', create_function('$quality', 'return 100;'));
add_action('added_post_meta', 'ad_update_jpeg_quality', 10, 4);
function ad_update_jpeg_quality($meta_id, $attach_id, $meta_key, $attach_meta) {
if ($meta_key == '_wp_attachment_metadata') {
$post = get_post($attach_id);
if ($post->post_mime_type == 'image/jpeg' && is_array($attach_meta['sizes'])) {
$pathinfo = pathinfo($attach_meta['file']);
$uploads = wp_upload_dir();
$dir = $uploads['basedir'] . '/' . $pathinfo['dirname'];
foreach ($attach_meta['sizes'] as $size => $value) {
$image = $dir . '/' . $value['file'];
$resource = imagecreatefromjpeg($image);
if ($size == 'spalsh') {
// set the jpeg quality for 'spalsh' size
imagejpeg($resource, $image, 100);
} elseif ($size == 'spalsh1') {
// set the jpeg quality for the 'splash1' size
imagejpeg($resource, $image, 30);
} else {
// set the jpeg quality for the rest of sizes
imagejpeg($resource, $image, 10);
}
// or you can skip a paticular image size
// and set the quality for the rest:
// if ($size == 'splash') continue;
imagedestroy($resource);
}
}
}
}
上記のコードは、新しくアップロードされた画像にのみ影響します。以前にアップロードした画像の品質を更新したい場合はregister_activation_hook
、プラグインを利用できます。wp-content/plugins
ディレクトリに新しいphpファイルを作成し、好きな名前を付け(update-jpeg-quality.php
たとえば)、次のコードを追加します。
<?php
/*
Plugin Name: Update JPEG Quality
Plugin URI: http://wordpress.stackexchange.com/questions/74103/set-jpeg-compression-for-specific-custom-image-sizes
Description: This plugin will change the jpeg image quality according to its size.
Author: Ahmad M
Version: 1.0
Author URI: http://wordpress.stackexchange.com/users/12961/ahmad-m
*/
register_activation_hook(__FILE__, 'ad_modify_jpeg_quality');
function ad_modify_jpeg_quality() {
$attachments = get_posts(array(
'numberposts' => -1,
'post_type' => 'attachment',
'post_mime_type' => 'image/jpeg'
));
if (empty($attachments)) return;
$uploads = wp_upload_dir();
foreach ($attachments as $attachment) {
$attach_meta = wp_get_attachment_metadata($attachment->ID);
if (!is_array($attach_meta['sizes'])) break;
$pathinfo = pathinfo($attach_meta['file']);
$dir = $uploads['basedir'] . '/' . $pathinfo['dirname'];
foreach ($attach_meta['sizes'] as $size => $value) {
$image = $dir . '/' . $value['file'];
$resource = imagecreatefromjpeg($image);
if ($size == 'spalsh') {
// set the jpeg quality for 'spalsh' size
imagejpeg($resource, $image, 100);
} elseif ($size == 'spalsh1') {
// set the jpeg quality for the 'splash1' size
imagejpeg($resource, $image, 30);
} else {
// set the jpeg quality for the rest of sizes
imagejpeg($resource, $image, 10);
}
imagedestroy($resource);
}
}
}
?>
次に、プラグインページにアクセスしてプラグインをヒットactivate
しUpdate JPEG Quality
ます。これにより、以前にアップロードしたすべての.jpeg
画像がループされ、プラグインで指定した値と条件に従って品質が調整されます。その後、このプラグインを安全に非アクティブ化して削除できます。本番サイトに適用する前に、まずテスト環境でテストしてください。