You can find nice collections of zoom image in jquery plugins from the list of undermentioned urls. http://www.professorcloud.com/mainsite/cloud-zoom.htm http://www.tripwiremagazine.com/2010/02/15-jquery-plugins-to-create-stunning-image-zoom-effects.html http://www.denbagus.net/jquery-image-zoom-and-tutorial/ Read More »
Monthly Archives: June 2010
jqzoom not working
Hi All, I used jqzoom in one of my website and found that it stopped working. jqzoom not working as the binding facility of jquery was not getting executed. So I tried cloud zoom and its working fine. So if anyone trying to use jqzoom keep in mind that it conflicts with jquery. And for cloud zoom you can find ... Read More »
change image color using php
You can change image color using PHP GD library to sepia or b/w or grayscale. Here is the sample example. Change Color to Greyscale //to black and white if(!file_exists('dw-bw.png')) { $img = imagecreatefrompng('dw-manipulate-me.png'); imagefilter($img,IMG_FILTER_GRAYSCALE); imagepng($img,'db-bw.png'); imagedestroy($img); } Change Color to B/W //to negative if(!file_exists('dw-negative.png')) { $img = imagecreatefrompng('dw-manipulate-me.png'); imagefilter($img,IMG_FILTER_NEGATE); imagepng($img,'db-negative.png'); imagedestroy($img); } Change Color to Sepia //to black and white, ... Read More »