Alguem conhece alguma funcao que me mostre o tamanho ( Widht X Height) d um arquivo swf?
Nenhuma descrição foi enviada.
comentários (0)
suspender
Lista de Respostas:
03/05/2004 10:39pm
(~20 anos atrás)
(~20 anos atrás)
$aMatriz = getimagesize($swf);
onde $swf é o endereço relativo do swf no seu servidor.
Essa função irá retornar uma matriz.
Precisa usar o indice 0 e 1 da matriz
$iWidth = $aMatriz[0];
$iHeight = $aMatriz[1];
maiores informações
http://www.php.net/getimagesize
onde $swf é o endereço relativo do swf no seu servidor.
Essa função irá retornar uma matriz.
Precisa usar o indice 0 e 1 da matriz
$iWidth = $aMatriz[0];
$iHeight = $aMatriz[1];
maiores informações
http://www.php.net/getimagesize
11/05/2005 3:31pm
(~19 anos atrás)
(~19 anos atrás)
?
//Tamanho da imagem ou swf
$caminho = 'album/img/foto8.jpg';
list($w,$h,,$trr) = getimagesize($caminho);
echo "Width=".$w;
echo "<BR>";
echo "Height=".$h;
echo "<BR>";
echo $trr;
echo "<BR>";
?>
//Tamanho da imagem ou swf
$caminho = 'album/img/foto8.jpg';
list($w,$h,,$trr) = getimagesize($caminho);
echo "Width=".$w;
echo "<BR>";
echo "Height=".$h;
echo "<BR>";
echo $trr;
echo "<BR>";
?>