Click to See Complete Forum and Search --> : asp and php
pelegk1
10-07-2006, 04:07 PM
i want to create a water mark in php
and then call if from asp so the php will return a water mark image and the asp will use it to display iit on its page - how can i do this?
thnaks in advance
peleg
<Eddie>
10-08-2006, 11:51 AM
First create the script in PHP that will watermark the image. A good example is at SitePoint (http://www.sitepoint.com/article/watermark-images-php). To call this from an external service such as a remote ASP page, the HTML is:
<img width="100" height="100" alt="pic" src="http://www.site.com/watermark.php?image=4.jpg">You'll need to make the call fit the infrastructure of your web environment but it's not a hard to do.
pelegk1
10-09-2006, 07:25 AM
ok 1 more thing
iwant to encryopt and decryp random image names
how can i create 2 function 1 ecryptes the name and 1 decrypts withought the use of a db?
thnaks in advance
peleg