(PHP 5 >= 5.4.0, PHP 7)
getimagesizefromstring — ���ַ����л�ȡͼ��ߴ���Ϣ
$imagedata
[, array &$imageinfo
] ) : arrayͬ getimagesize() ������ ������ getimagesizefromstring() ��һ��������ͼ�����ݵ��ַ������������ļ�����
���ڱ�������ι����ĸ�����Ϣ��μ� getimagesize() ������
imagedata
ͼ�����ݵ��ַ�����ʾ��
imageinfo
�μ� getimagesize() ������
�μ� getimagesize() ������
Example #1 getimagesizefromstring() ��������
<?php
$img = '/path/to/test.png';
// ���ļ���ʽ��
$size_info1 = getimagesize($img);
// ���ַ�����ʽ��
$data = file_get_contents($img);
$size_info2 = getimagesizefromstring($data);
?>