Hi there, thanks for replied..
I found one way out to use anylink on another site using php.
Ex:
<page>
<img src="images.php?src=http://another_web.com/story/chapter-12/page-2.jpg" />
</page>
In megazine.swf dir, create a php file named images.php
This is php code:
function load_img($src) {
$im = @imagecreatefromjpeg($src);
if (!$im) {
$im = imagecreatetruecolor(400, 600);
$bgc = imagecolorallocate($im, 255, 255, 0);
$tc = imagecolorallocate($im, 0, 255, 0);
imagefilledrectangle($im, 10, 570, 390 , 590, $bgc);
imagestring($im, 5, 100, 225, "ERROR: FILE NOT FOUND!", $tc);
imagestring($im, 2, 40, 573, "Copyright 2007-2009 florian Nucke. All rights reserved.", imagecolorallocate($im, 0, 0, 0));
}
return $im;
}
$img = load_img(urldecode($_GET['src']));
header('Content-Type: image/jpeg');
imagejpeg($img);
imagedestroy($img);