wewior (OpenSolution)2011-11-30 14:11 | We've created new freeware plugin to Quick.Cart v4.x. |
baron_jon2011-12-26 10:16 | have you tested how it works with .png images? in files/ folder the png image looks to be alright (it has watermark), but in products than i enlarge the photo i see the blank white space instead of the watermark. |
wewior (OpenSolution)2011-12-28 12:42 | If you use .png files on your page and you don't use alpha channel, You can change blending mode in file "libraries/FotoJobs.php" from:
if( $sImgExt == 'png' ){
if( $sImgExt == 'png' ){ |
baron_jon2012-02-12 09:46 | This plugin doesn't work with big watermark's images. I tried to use 640x480 watermark and smaller and no results. This works with small watermarks only. Is there a slotution? I tried on v3.6. baronjon123@gmail.com |
wewior (OpenSolution)2012-02-13 08:19 | I think it depend also on your picture size i tried with 800x600 photo and 400x300 watermark and works fine. |
baron_jon2012-02-13 08:41 | You are right. Watermark must be at least 2x smaller then the image. This is not good. Maybe you know how to make watermark in the center of the image? |
baron_jon2012-02-14 08:38 | I found.
$iWmSteps = ( $this->iThumbX > $this->iThumbY ) ? floor( $this->iThumbX / $iWmX / 2 ) : floor( $this->iThumbY / $iWmY / 2 );
|