如何修改php制作SimpleImage

时间:2016-01-10 09:46:53

标签: javascript php jquery html facebook

在php制作SimpleImage的修改 我想对代码进行一些调整 工作代码是包含单个图像中文本的图像的汇编



		// making SimpleImage instances of selected friends including main image
		$img = new abeautifulsite\SimpleImage('main.jpg');
		$img1 = new abeautifulsite\SimpleImage('main2.jpg');
		$img2 = new abeautifulsite\SimpleImage('main3.jpg');
		$img3 = new abeautifulsite\SimpleImage('main4.jpg');
		$img4 = new abeautifulsite\SimpleImage('https://graph.facebook.com/1020534352325130/picture');
		$img1->resize(150, 150);
		$img2->resize(150, 150);
		$img3->resize(150, 150);
		$img4->resize(50, 50);
		$img->overlay($img1, 'bottom left', 1, 30, -25);
		$img->overlay($img2, 'bottom', 1, 0, -25);
		$img->overlay($img3, 'bottom right', 1, -30, -25);
		$img->overlay($img4, 'top', 1, 0, 25);
		$img->text('message', 'fb.OTF', 18, '#FFFFFF', 'top', 0, 20);
		$img->save('./dir/' . $_SESSION['gameid2'] . '.jpg');




在php制作SimpleImage的修改 我想对消息进行换行,但添加了这个发生的服务器错误500



$img->text('<?php echo $user['name']; ?>', 'fb.OTF', 18, '#FFFFFF', 'top', 0, 20);
&#13;
&#13;
&#13;

我还记得使用变量的图像,但发生了错误

&#13;
&#13;
$img4 = new abeautifulsite\SimpleImage('https://graph.facebook.com/<?php echo $user['id']; ?>/picture');
&#13;
&#13;
&#13;

此代码在使用时效果很好

&#13;
&#13;
<img src="https://graph.facebook.com/<?php echo $user['id']; ?>/picture" />
<?php echo $user['name']; ?>
&#13;
&#13;
&#13;

请帮忙 再见

1 个答案:

答案 0 :(得分:1)

问题在于<?php代码的展示位置。而不是:

$img->text('<?php echo $user['name']; ?>', 'fb.OTF', 18, '#FFFFFF', 'top', 0, 20);

试试这个:

<?php
$img->text($user['name'], 'fb.OTF', 18, '#FFFFFF', 'top', 0, 20);
?>

而不是这个:

$img4 = new abeautifulsite\SimpleImage('https://graph.facebook.com/<?php echo $user['id']; ?>/picture');

试试这个:

<?php
$img4 = new abeautifulsite\SimpleImage('https://graph.facebook.com/' . $user['id'] . '/picture');
?>

当然,如果你的代码已经在PHP块中,你可以省略上面例子中的<?php ?>标签。