使用PHP中的函数获取图像的宽度和高度
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用PHP中的函数获取图像的宽度和高度相关的知识,希望对你有一定的参考价值。
When you run this script you will see the result like thisImage 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.
<?php echo "Image width " .$width; echo "<BR>"; echo "Image height " .$height; echo "<BR>"; echo "Image type " .$type; echo "<BR>"; echo "Attribute " .$attr; ?>
以上是关于使用PHP中的函数获取图像的宽度和高度的主要内容,如果未能解决你的问题,请参考以下文章
PHP - 在不加载图像的情况下获取有关图像(高度和宽度)的信息