将PHP GD图像作为弹出窗口(模态)输出后,将其输出到浏览器

时间:2015-01-13 15:55:13

标签: javascript php jquery twitter-bootstrap

我一直在尝试使用php gd库将文本写入图像的项目。我成功生成了图像并将其输出到浏览器。我想知道的是......有没有办法让我可以在同一页面上弹出图像而不加载并在php文件中显示图像,其中包含用于创建和写入图像文本的代码?在此先感谢您的帮助。

我的代码:

<?php 

//Set content type
header('Content-type: image/jpeg');

// Create image from existing image
$jpgImage = imagecreatefromjpeg('file.jpg');

// Allocate color for text
$white = imagecolorallocate($jpgImage, 255, 255, 255);

// Set Path to Font File
$font = 'arialbd.ttf';

// Text to print to image
$text = 'Testing text output';

// Print Text On Image
imagettftext($jpgImage, 75, 0, 50, 400, $white, $font, $text);



// Send Image to Browser
imagejpeg($jpgImage);

// Clear Memory
imagedestroy($jpgImage);

?> 

可以使用Bootstrap 3来完成此任务吗?谢谢

0 个答案:

没有答案