is it difficult to do? or is there an easy way to manually run a watermark utility on a linux server based folder of images, where it would only watermark images it hadn't watermarked already?
php to auto-watermark images?
Collapse
X
-
php to auto-watermark images?
__________________
Looking for a custom TUBE SCRIPT that supports massive traffic, load balancing, billing support, and h264 encoding? Hit up Konrad!
Looking for designs for your websites or custom tubesite design? Hit up Zuzana Designs
Check out the #1 WordPress SEO Plugin: CyberSEO SuiteTags: None -
actually is there an open source code snippet you could recommend that might be integratable into an already existing image upload script?
__________________
Looking for a custom TUBE SCRIPT that supports massive traffic, load balancing, billing support, and h264 encoding? Hit up Konrad!
Looking for designs for your websites or custom tubesite design? Hit up Zuzana Designs
Check out the #1 WordPress SEO Plugin: CyberSEO Suite -
__________________
Looking for a custom TUBE SCRIPT that supports massive traffic, load balancing, billing support, and h264 encoding? Hit up Konrad!
Looking for designs for your websites or custom tubesite design? Hit up Zuzana Designs
Check out the #1 WordPress SEO Plugin: CyberSEO SuiteComment
-
I can not answer you, but I hope someone can, here is a bump for you.
I remember once in time asking almost the same questions here, but back then it was so much simple comparing to today. My stupid questions made me lots of cash over the years. I stop asking questions here and now my business are almost dead.......Fuck it dude, lets go bowling
Comment
-
Here's some quick code that should help you out:
Modify as needed of course.Code:$watermark = imagecreatefrompng("path/to/watermark/file/here); imageAlphaBlending($watermark, false); imageSaveAlpha($watermark, true); $image_string = @file_get_contents($thumb_dest); $image = @imagecreatefromstring($image_string); $imageWidth=imageSX($image); $imageHeight=imageSY($image); $watermarkWidth=imageSX($watermark); $watermarkHeight=imageSY($watermark); $coordinate_X = ( $imageWidth - 5) - ( $watermarkWidth); $coordinate_Y = ( $imageHeight - 5) - ( $watermarkHeight); imagecopy($image, $watermark, $coordinate_X, $coordinate_Y, 0, 0, $watermarkWidth, $watermarkHeight); imagejpeg ($image, $thumb_dest, 100); imagedestroy($image); imagedestroy($watermark);Skype variuscr - Email varius AT gmailComment
-
Comment
-
-
thanks for the ideas
__________________
Looking for a custom TUBE SCRIPT that supports massive traffic, load balancing, billing support, and h264 encoding? Hit up Konrad!
Looking for designs for your websites or custom tubesite design? Hit up Zuzana Designs
Check out the #1 WordPress SEO Plugin: CyberSEO SuiteComment


AIM: GrouchyGfy
Comment