doubingjian2006 2012-10-11 23:08
浏览 81
已采纳

PHP调整图像大小保持宽高比到精确大小

I need to manually find DPI of new image.

$input_width = 361;
$input_height = 413;

$input_dpi_x = 72;
$input_dpi_y = 72;

$output_width = 800;
$output_height = $input_height * $output_width / $input_width;

$output_dpi_x = ceil(($input_dpi_x / $input_width) * $output_width);
$output_dpi_y = ceil(($input_dpi_y / $input_height) * $output_y_res);

echo "Outpud_dpi_x = " . $output_dpi_x;
//Outpud_dpi_x = 160

Why when i resize image i get 802 instead of 800?

and i must use DPI dont ask why

  • 写回答

1条回答 默认 最新

  • douwendu2460 2012-10-12 13:44
    关注

    The answer is all in the math... Let's just focus on the width for simplicity.

    Pulling back the layers a little bit, start with scaling operations (reordered to help with loss of precision). Here, I'm calculating the output DPI value and verifying the result by solving the original equation for $output_width.

    $output_dpi_x = $output_width * $input_dpi_x / $input_width;  // 159.5567867...
    $output_width = $output_dpi_x * $input_width / $input_dpi_x;  // 800
    

    You can see with this non-corrected value for DPI, we arrive back at 800 for the width value. When we round up to the next number (using the ceil operator), it changes the results. By unwinding the math, we can see why you end up with 802px in the output:

    $output_dpi_x = ceil($output_dpi_x);  // 160
    $output_width = $output_dpi_x * $input_width / $input_dpi_x;  // 802.22222222...
    

    Of course, images can't contain partial pixels, so your resized image is rounded down to 802px.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 划分vlan后不通了
  • ¥15 GDI处理通道视频时总是带有白色锯齿
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大
  • ¥15 单片机无法进入HAL_TIM_PWM_PulseFinishedCallback回调函数