我正在制作一个自定义主题并让网站完成了很多工作。我正在使用自定义字段的类型,我用它来上传稍后放入旋转木马的图像。我发现当我上传图像1069x1060时,它没有被裁剪或触摸,并且图像的整个内容都是可见的。现在当我上传图片850x700时,图像被裁剪,整个区域不可见
这可以在http://blog.jmrowe.com/portfolio看到,只需查看旋转图片,您就会发现其中一个被裁剪,无法看到整个内容。
另外,我在设置 - >下取消选中“将缩略图缩放到精确尺寸(通常缩略图是比例)”选项媒体和这没有帮助。我没有添加任何自定义要素图像尺寸。
奇怪的是,当我选择在微小预览屏幕中显示的图像时,图像未被裁剪。但是,当实际访问该站点时,将裁剪该图像。我还选择使用“全尺寸”
有人可以帮忙吗?
我正在使用类型自定义字段插件来实际在主题中显示这些:
<?php if (!((get_post_meta($post->ID, 'wpcf-portfoliopicture1', TRUE))=='')): ?>
<div class="row">
<div class="span8">
<div class="span6 offset1" style="padding-left:20px;">
<?php
$param['height']=350;
$param['width']=325;
$param['alt']=types_render_field("portfoliotitle1",$param2);
$param['title']=types_render_field("portfoliotitle1",$param2);
?>
<ul class="round">
<li><?php echo(types_render_field("portfoliopicture1", $param)); ?></li>
<?php
$param['alt']=types_render_field("portfoliotitle2",$param2);
$param['title']=types_render_field("portfoliotitle2",$param2);
?>
<li><?php echo(types_render_field("portfoliopicture2", $param)); ?></li>
<?php
$param['alt']=types_render_field("portfoliotitle3",$param2);
$param['title']=types_render_field("portfoliotitle3",$param2);
?>
<li><?php echo(types_render_field("portfoliopicture3", $param)); ?></li>
</ul>
</div>
</div>
</div>
<?php endif; ?>
我注意到我进入wp-includes / media.php并转到函数image_resize_dimensions
我可以编辑一些功能,它不会自动裁剪图像..但是,它也不会调整它们的大小,所以原生照片1000px x 900px只是那个
我很确定问题出在下面的wp-includes \ media.php函数中:
function image_resize_dimensions($orig_w, $orig_h, $dest_w, $dest_h, $crop = false) {
if ($orig_w <= 0 || $orig_h <= 0)
return false;
// at least one of dest_w or dest_h must be specific
if ($dest_w <= 0 && $dest_h <= 0)
return false;
// plugins can use this to provide custom resize dimensions
$output = apply_filters( 'image_resize_dimensions', null, $orig_w, $orig_h, $dest_w, $dest_h, $crop );
if ( null !== $output )
return $output;
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 = floor( ($orig_w - $crop_w) / 2 );
$s_y = 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 );
}
我知道我不应该搞乱核心文件,但是当我这样做会影响我的问题,但我无法弄清楚将会解决什么问题。这个函数由插件调用(类型 - 自定义类型和字段),这是裁剪发生的地方
答案 0 :(得分:0)
我刚刚完成并浏览了文件。根据你所说的,尽管代码正确,但显然抓取了一个错误的图像尺寸(通过includes / fields / image.php中的说明确认)
你可以玩一下自定义插件。我发现wp_handle_upload会覆盖上传过程。
if ( ! function_exists( 'wp_handle_upload' ) ) require_once( ABSPATH . 'wp-admin/includes/file.php' );
$uploadedfile = $_FILES['file'];
$upload_overrides = array( 'test_form' => false );
$movefile = wp_handle_upload( $uploadedfile, $upload_overrides );
if ( $movefile ) {
echo "File is valid, and was successfully uploaded.\n";
var_dump( $movefile);
} else {
echo "Possible file upload attack!\n";
}
除此之外,我不得不与开发者讨论你的问题。如果没有登录您的网站,我找不到任何其他帮助。 :)希望你最好,我会看这个页面。