Projects tagged ‘image’ and ‘overlay’


[5 total ]

1 Users
 

Wordpress plugin used to overlay images on the current page into neat Javascript-powered overlay popups. This plugin includes the new Lightbox JS v2.0.4 javascript written by Lokesh Dhakar and and was then transformed into a Wordpress Plugin by me.
Created 10 months ago.

1 Users
 

Wordpress plugin used to overlay images on the current page into neat Javascript-powered overlay popups. This plugin includes the new Slimbox 1.64 javascript written by Christophe Beils and got ... [More] transformed into a Wordpress Plugin by me. Slimbox is a 7kb visual clone of the popular Lightbox JS v2.0 by Lokesh Dhakar, written using the ultra compact mootools framework. It was designed to be small, efficient, more convenient and 100% compatible with the original Lightbox v2. [Less]
Created 10 months ago.

1 Users

WP FancyBox is a plugin for WordPress to overlay images on the page with zoom animation using the modified version of FancyBox (http://fancy.klade.lv). Screenshot in action Settings (Obviously ... [More] , the above screenshots don't use FancyBox to appear -- we can't do this in Google Code, so they are just plain links to Flickr. Sample page is coming...) Quick GuideTo display image in FancyBox, your img tag should include class size-thumbnail, e.g.: WordPress does this automatically if you insert image with Thumbnail size via admin panel. [Less]
Created 11 months ago.

0 Users

This project provides a simple way for you to apply custom watermarks to images on your Django-powered website. FeaturesOpacity: the filter allows you to specify the transparency level for your ... [More] watermark image Watermark positioning: you have several options for positioning watermarks on your images Absolute: you can specify exact pixel locations for your watermark Relative: you can use percentages to place your watermark Corners: you can position your watermark in the corners of your images Random: you can tell the filter to randomly generate a position for your watermark Center: you can place watermarks in the center of the target image Scaling: the watermark can be scaled to cover your images or specify a scaling factor to use Tiling: the watermark can be tiled across your images Greyscale: you can convert the watermark to be greyscale before having it applied to the target image. Rotation: you can rotate your watermark a certain number of degrees or have the rotation be random. CreditsI snagged the original watermarking code from http://code.activestate.com/recipes/362879/ and turned it into a Django pluggable application. Props to Shane Hathaway. Requirementsdjango-watermark requires a modern version of the Django framework. By modern I simply mean a version with the newforms-admin functionality. If you're running on Django 1.0 or later, you're good. django-watermark also relies upon the built-in django.contrib.admin and the Python Imaging Library (PIL). I built it using PIL 1.1.6, but it may work with previous versions. InstallationDownload django-watermark using one of the following methods: easy_installYou can download the package from the CheeseShop or use easy_install django-watermarkto download and install django-watermark. Package DownloadDownload the latest .tar.gz, .tar.bz2, or .zip file from the downloads section and extract it somewhere you'll remember. Use python setup.py install to install it. Checkout from SubversionExecute the following command (or use the equivalent function in a GUI such as TortoiseSVN), and make sure you're checking Pendulum out somewhere on the PYTHONPATH. svn co http://django-watermark.googlecode.com/svn/trunk/watermarker watermarkerVerifying InstallationThe easiest way to ensure that you have successfully installed Pendulum is to execute a command such as: python -c "import watermarker; print watermarker.get_version()"If that displays the version of django-watermark that you tried to install, you're good to roll. If you see something other than that, you probably need to check your PYTHONPATH environment variable. ConfigurationFirst of all, you must add this project to your list of INSTALLED_APPS in settings.py: INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', ... 'watermarker', ... )Run manage.py syncdb. This creates the tables in your database that are necessary for operation. While we're in this section, I might as well mention a settings variable that you can override: WATERMARKING_QUALITY. This should be an integer between 0 and 100. The default is 85. UsageAs mentioned above, you have several options when using django-watermark. The first thing you must do is load the filter for the template in which you wish to apply watermarks to your images. {% load watermark %}From the Django admin, go ahead and populate your database with some watermarks that you want to apply to your regular images. Simply specify a name for the watermark and upload the watermark image itself. It's probably not a good idea to put commas in your watermark names. Watermarks should be transparent PNG files for best results. I can't make any guarantees that other formats will work nicely. The first parameter to the watermark filter must be the name you specified for the watermark in the Django admin. You can then choose from a few other parameters to customize the application of the watermark. Here they are: positionThis one is quite customizable. First, you can plug your watermark into one corner of your images by using one of BR, BL, TR, and TL. These represent 'bottom-right', 'bottom-left', 'top-right', and 'top-left' respectively. Alternatively, you can use relative or absolute positioning for the watermark. Relative positioning uses percentages; absolute positioning uses exact pixels. You can mix and match these two modes of positioning, but you cannot mix and match relative/absolute with the corner positioning. When using relative/absolute positioning, the value for the position parameter is XxY, where X is the left value and Y is the top value. The left and top values must be separated with a lowercase x. If you wanted your watermark image to show up in the center of any image you want to watermark, you would use a position parameter such as position=50%x50% or even position=C. If you wanted the watermark to show up half-way between the left and right edges of the image and 100 pixels from the top, you would use a position parameter such as position=50%x100. Finally, you may tell the filter to generate a position for your watermark dynamically. To do this, use position=R. opacityThis parameter allows you to specify the transparency of the applied watermark. The value must be an integer between 0 and 100, where 0 is fully transparent and 100 is fully opaque. By default, the opacity is set at 50%. tileIf you want your watermark to tile across the entire image, you simply specify a parameter such as tile=1. scaleIf you'd like to have the watermark as big as possible on the target image and fully visible, you might want to use scale=F. If you want to specify a particular scaling factor, just use something like scale=1.43. greyscaleIf you want your watermark to be greyscale, you can specify the parameter greyscale=1 and all color saturation will go away. rotationSet this parameter to any integer between 0 and 359 (really any integer should work, but for your own sanity I recommend keeping the value between 0 and 359). If you want the rotation to be random, use rotation=R instead of an integer. Examples{{ image_url|watermark:"My Watermark,position=br,opacity=35" }}Looks for a watermark named "My Watermark", place it in the bottom-right corner of the target image, using a 35% transparency level. {{ image_url|watermark:"Your Watermark,position=tl,opacity=75" }}Looks for a watermark named "Your Watermark", place it in the top-left corner of the target image, using a 75% transparency level. {{ image_url|watermark:"The Watermark,position=43%x80%,opacity=40" }}Looks for a watermark named "The Watermark", places it at 43% on the x-axis and 80% of the y-axis of the target image, at a transparency level of 40%. {{ image_url|watermark:"The Watermark,position=R,opacity=10,rotation=45" }}Looks for a watermark named "The Watermark", randomly generates a position for it, at a transparency level of 10%, rotated 45 degrees. {{ image_url|watermark:"w00t,opacity=40,tile=1" }}Looks for a watermark called "w00t", tiles it across the entire target image, at a transparency level of 40%. [Less]
Created 12 months ago.

0 Users

Sideshow is a JavaScript program to overlay images on a web page. It is based on Slimbox, and is similar to this program in the following aspects: Requires jQuery 1.2.6 or later. Small footprint: ... [More] under 5 KB minified. Compatible with most browsers: Firefox 1.5+, Google Chrome, Internet Explorer 6+ and maybe others. The API of Sideshow is very similar to Slimbox. In fact, it was borrowed from it. The same mapping and filtering functions can be used. But there are a few differences: Sideshow does support images larger than the browsers viewport. This is what motivated it's development in the first place. Sideshow fixes the image on the viewport. As opposed to Slimbox, scrolling the page does not affect the image position (except when running on Internet Explorer 6). There is no autoload code in Sideshow. The plugin function must be invoked explicitly. Read SideshowUsage for more information. See it live here: http://joseisraelabrantes.com.br/en/photography/list. [Less]
Created 13 days ago.