Я создал форму, в которой есть изображение PNG в качестве водяного знака и основного изображения. Я должен открыть это в лайт-бокс. Мой код для этого показан ниже:
if(isset($_POST['submit']))
{
// Load the watermark and the photo to apply the watermark to
$stamp = imagecreatefrompng('store/left.png');
$im = imagecreatefromjpeg('store/Lighthouse.jpg');
// Set the margins for the stamp and get the height/width of the stamp image
$marge_right = 500;
$marge_bottom = 500;
$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);
}
и предварительный просмотр этого кода:
Я хочу сделать это, пока я в лайтбоксе. Как я могу это сделать?
<head>
<link rel="stylesheet" href="engine/css/vlightbox1.css" type="text/css" />
<link rel="stylesheet" href="engine/css/visuallightbox.css" type="text/css" media="screen" />
<script src="engine/js/jquery.min.js" type="text/javascript"></script>
<script src="engine/js/visuallightbox.js" type="text/javascript"></script>
<script src="engine/js/vlbdata.js" type="text/javascript"></script>
</head>
<body>
...
<div align="center">
<!-- Start VisualLightBox.com BODY section id=1 -->
<div id="vlightbox1">
...
</div>
<!-- End VisualLightBox.com BODY section -->
</div>
...
</body>
Других решений пока нет …