gpt4 book ai didi

PHP 获取 SWF 文件的尺寸

转载 作者:行者123 更新时间:2023-12-03 00:44:49 24 4
gpt4 key购买 nike

我正在尝试加载 swf 文件并动态确定其高度和宽度。有没有人知道可以使用 PHP 读取 swf 文件的尺寸?

以下是对任何需要它的人有效的方法:

$aInfo = getimagesize($sFile);
list($iWidth, $iHeight) = $aInfo;

最佳答案

使用getimagesize

示例:

php -r "print_r(getimagesize('http://adsatt.espn.go.com/ad/sponsors/ibm/Oct_2010/ibm0-728x90-0160.swf'));"
Array(    [0] => 728    [1] => 90    [2] => 13    [3] => width="728" height="90"    [mime] => application/x-shockwave-flash)

PS:module gd is required

关于PHP 获取 SWF 文件的尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4496536/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com