Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/87.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何使用jquery/html5/php在图像上放置一些文本并用文本保存图像_Php_Jquery_Html5 Canvas - Fatal编程技术网

如何使用jquery/html5/php在图像上放置一些文本并用文本保存图像

如何使用jquery/html5/php在图像上放置一些文本并用文本保存图像,php,jquery,html5-canvas,Php,Jquery,Html5 Canvas,嗨,我正在做一个小任务,这是有关生成一个贺卡在这个我需要选择一个图像,并从提供文本中选择一个文本我需要把选定的文本放在图像上,保存并发送给用户,我想做的html5,jquery,php 在php中,任何建议都称为“水印” 你试过什么吗?? <?php // Load the stamp and the photo to apply the watermark to $stamp = imagecreatefrompng('stamp.png'); $im = imagecreatefrom

嗨,我正在做一个小任务,这是有关生成一个贺卡在这个我需要选择一个图像,并从提供文本中选择一个文本我需要把选定的文本放在图像上,保存并发送给用户,我想做的html5,jquery,php

在php中,任何建议都称为“水印”


你试过什么吗??
<?php
// Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng('stamp.png');
$im = imagecreatefromjpeg('photo.jpeg');

// Set the margins for the stamp and get the height/width of the stamp image
$marge_right = 10;
$marge_bottom = 10;
$sx = imagesx($stamp);
$sy = imagesy($stamp);

// Copy the stamp image onto our photo using the margin offsets and the photo 
// width to calculate positioning of the stamp. 
imagecopy($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp));

// Output and free memory
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>