he intentado hacer esto:
Código PHP:
<img src="<?php
require_once '../ThumbLib.inc.php';
$thumb = PhpThumbFactory::create('01.jpg');
$thumb->resizePercent(18);
$thumb->show(); ?>" />
tambien:
Código PHP:
<?php
function resize(){
require_once '../ThumbLib.inc.php';
$thumb = PhpThumbFactory::create('01.jpg');
$thumb->resizePercent(18);
$thumb->show();
}
?>
<img src="<?php resize() ?>" />
tambien:
Código PHP:
<?php
$ruta= '01.jpg';
function resize($ruta){
require_once '../ThumbLib.inc.php';
$thumb = PhpThumbFactory::create($ruta);
$thumb->resizePercent(18);
$thumb->show();
}
?>
<img src="<?php resize($ruta) ?>" />
pero aun asi, no me lo trae.. es decir, al parecer no admite embeberlo en en tag HTML para mostrarlo como imagen..