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

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

I need to manually find DPI of new image.

  1. $input_width = 361;
  2. $input_height = 413;
  3. $input_dpi_x = 72;
  4. $input_dpi_y = 72;
  5. $output_width = 800;
  6. $output_height = $input_height * $output_width / $input_width;
  7. $output_dpi_x = ceil(($input_dpi_x / $input_width) * $output_width);
  8. $output_dpi_y = ceil(($input_dpi_y / $input_height) * $output_y_res);
  9. echo "Outpud_dpi_x = " . $output_dpi_x;
  10. //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 05: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.

    1. $output_dpi_x = $output_width * $input_dpi_x / $input_width; // 159.5567867...
    2. $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:

    1. $output_dpi_x = ceil($output_dpi_x); // 160
    2. $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.

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

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部