Este es el código, bueno, la parte donde se encuentra el problema :)
Código PHP:
$max_width = 600;
$max_height = 800;
list($width, $height) = getimagesize($content);
$ratioh = $max_height/$height;
$ratiow = $max_width/$width;
$ratio = min($ratioh, $ratiow);
// New dimensions
$width = intval($ratio*$width);
$height = intval($ratio*$height);
return $width . $height . ' - ' . $content . '<div class="bbcode_swf">
<embed src="' . htmlspecialchars($content) . '" quality="high" type="application/x-shockwave-flash" allownetworking="internal" allowscriptaccess="never" autoplay="false" wmode="transparent" width="' . $width . '" height="' . $height . '"></embed></div>';
Esto me devuelve en pantalla:
Código code:
Ver original00 - [url]http://blubik.com/locatorswf.swf[/url]