답변:
중간 이미지 생성은 매우 견고합니다. image_resize()
코드에 가깝게 유지하고 후크가 완전히 없습니다.
이것에 대한 유일한 옵션은 wp_generate_attachment_metadata
WP 생성 이미지를 연결하고 자신의 이미지로 덮어 쓰는 것입니다 ( image_resize()
포크 가 약간 필요함 ).
나중에 코드를 공유 할 수 있도록 작업에 필요합니다.
자, 여기는 거칠지 만 작동하는 예입니다. 이런 식으로 자르기를 설정하려면에 대한 이해가 필요합니다 imagecopyresampled()
.
add_filter('wp_generate_attachment_metadata', 'custom_crop');
function custom_crop($metadata) {
$uploads = wp_upload_dir();
$file = path_join( $uploads['basedir'], $metadata['file'] ); // original image file
list( $year, $month ) = explode( '/', $metadata['file'] );
$target = path_join( $uploads['basedir'], "{$year}/{$month}/".$metadata['sizes']['medium']['file'] ); // intermediate size file
$image = imagecreatefromjpeg($file); // original image resource
$image_target = wp_imagecreatetruecolor( 44, 44 ); // blank image to fill
imagecopyresampled($image_target, $image, 0, 0, 25, 15, 44, 44, 170, 170); // crop original
imagejpeg($image_target, $target, apply_filters( 'jpeg_quality', 90, 'image_resize' )); // write cropped to file
return $metadata;
}
image_resize
기능 이 변경 됩니다. Rarst는 크기 조정 프로세스에 연결해야한다는 점을 지적했지만 직접 이미지 크기를 직접 만들었습니다.
워드 프레스 코덱스에 대한 답이 아래에 있습니다.
이미지를 자르고 자르기 위치를 정의하여 이미지 크기를 설정하십시오.
add_image_size( 'custom-size', 220, 220, array( 'left', 'top' ) ); // Hard crop left top
자르기 위치를 설정할 때 배열의 첫 번째 값은 x 축 자르기 위치이고 두 번째 값은 y 축 자르기 위치입니다.
x_crop_position은 'left' 'center'또는 'right'를 허용합니다. y_crop_position은 'top', 'center'또는 'bottom'을 허용합니다. 기본적으로 하드 자르기 모드를 사용할 때이 값은 '가운데'로 설정됩니다.
또한 코덱은 자르기 위치의 작동 방식을 보여주는 페이지를 참조합니다.
http://havecamerawilltravel.com/photographer/wordpress-thumbnail-crop
핵심을 해킹 할 필요가없는이 문제에 대한 해결책을 개발했습니다 : http://bradt.ca/archives/image-crop-position-in-wordpress/
또한 코어에 패치를 제출했습니다 : http://core.trac.wordpress.org/ticket/19393
티켓에 Cc로 자신을 추가하여 코어에 추가 될 수 있도록 지원하십시오.
플러그인 섬네일 자르기 위치 를 사용하여 섬네일의 자르기 위치 를 선택할 수 있습니다 .
이 코드를 functions.php에 추가 한 다음 "썸네일 재생성"플러그인 ( https://wordpress.org/plugins/regenerate-thumbnails/ )을 사용하십시오.
function px_image_resize_dimensions( $payload, $orig_w, $orig_h, $dest_w, $dest_h, $crop ){
// Change this to a conditional that decides whether you want to override the defaults for this image or not.
if( false )
return $payload;
if ( $crop ) {
// crop the largest possible portion of the original image that we can size to $dest_w x $dest_h
$aspect_ratio = $orig_w / $orig_h;
$new_w = min($dest_w, $orig_w);
$new_h = min($dest_h, $orig_h);
if ( !$new_w ) {
$new_w = intval($new_h * $aspect_ratio);
}
if ( !$new_h ) {
$new_h = intval($new_w / $aspect_ratio);
}
$size_ratio = max($new_w / $orig_w, $new_h / $orig_h);
$crop_w = round($new_w / $size_ratio);
$crop_h = round($new_h / $size_ratio);
$s_x = 0; // [[ formerly ]] ==> floor( ($orig_w - $crop_w) / 2 );
$s_y = 0; // [[ formerly ]] ==> floor( ($orig_h - $crop_h) / 2 );
} else {
// don't crop, just resize using $dest_w x $dest_h as a maximum bounding box
$crop_w = $orig_w;
$crop_h = $orig_h;
$s_x = 0;
$s_y = 0;
list( $new_w, $new_h ) = wp_constrain_dimensions( $orig_w, $orig_h, $dest_w, $dest_h );
}
// if the resulting image would be the same size or larger we don't want to resize it
if ( $new_w >= $orig_w && $new_h >= $orig_h )
return false;
// the return array matches the parameters to imagecopyresampled()
// int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h
return array( 0, 0, (int) $s_x, (int) $s_y, (int) $new_w, (int) $new_h, (int) $crop_w, (int) $crop_h );
}
add_filter( 'image_resize_dimensions', 'px_image_resize_dimensions', 10, 6 );