使用PHP中的函数获取图像的宽度和高度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用PHP中的函数获取图像的宽度和高度相关的知识,希望对你有一定的参考价值。

When you run this script you will see the result like this

Image width 379
Image height 344
Image type 2
Image attribute width="379" height="344"

You will get the width, height, type of an image and also attribute of an image, I use this function in my image upload form.
  1. <?php
  2.  
  3. list($width, $height, $type, $attr) = getimagesize("image_name.jpg");
  4.  
  5. echo "Image width " .$width;
  6. echo "<BR>";
  7. echo "Image height " .$height;
  8. echo "<BR>";
  9. echo "Image type " .$type;
  10. echo "<BR>";
  11. echo "Attribute " .$attr;
  12.  
  13. ?>

以上是关于使用PHP中的函数获取图像的宽度和高度的主要内容,如果未能解决你的问题,请参考以下文章

PHP - 在不加载图像的情况下获取有关图像(高度和宽度)的信息

Android获取片段中的布局高度和宽度

旋转后如何获取图像的宽度和高度?

php 从 url 获取宽度和高度 >=200 的所有图像更快

使用 PHP 获取 PDF 文件的高度和宽度

使用 Jcrop 裁剪并使用 PHP GD 保存时如何获取可变宽度和高度