animated butterflies
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 130
Animated Counter 1.1
Animated Counter provides a nice animated counter. more>>
Animated Counter provides a nice animated counter.
Each time when a page is reloaded the counter increases the digits "live".
<<lessEach time when a page is reloaded the counter increases the digits "live".
Download (0.031MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
916 downloads
Animated rotation 1
Animated rotation is a GIMP plugin that can build an new animated image by rotation of a layer. more>>
Animated rotation is a GIMP plugin that can build an new animated image by rotation of a layer. You can give the angle of rotation and the number of increments.
<<less Download (MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
1193 downloads
Animated Gallery 1.2
Animated Gallery is a GIMP plugin that creates an animated gallery by overlaying multiple animations. more>>
Animated Gallery is a GIMP plugin that creates an animated gallery by overlaying multiple animations frame-by-frame onto the current image background and saving the resulting combined images.
Written using python-fu and gimp 2.2.3
The purpose of the plug-in is to create an animated gallery (e.g for a DVD menu) by overlaying up to 5 animations frame-by-frame onto the current image background and then flattening and saving the combined frames.
The script takes parameters giving the filenames of the first frame of each source animation (or "OFF" to disable a feed). The frames themselves should be sequentially numbered (e.g. frame_000123.jpg). It should work with all image types the gimp can load (tested with .jpg and .ppm). Note that if a frame is missing in an animation, the previous one is repeated.
I have included an option for rounding the corners of the source frames (using the script-fu rounded rectangle function). If you want other similar functionality (e.g. fade to black at sequence end) I would recommend you to have a look at the source code - python is very easy to learn, and the script is fairly well documented.
Usage:
In order to make a DVD menu with animated chapter images, you would normally merge a number of short animated frame sequences(one per chapter), shrunk down to say 80 pixels high, onto a 720x576 background image (for 4:3 PAL). Obviously you should create all the static parts of the menu (text, drop shadows, button outlines etc) on the background image prior to calling the script. A suitable example background template is provided on the gimp plug-ins registry page for the project.
In order to create an actual DVD menu, you will of course need to use an authoring tool such as the excellent and highly flexible dvdauthor package (make sure you use at least version 0.6.11 however, as previous ones have a problem with spumux not correctly recognising transparent bitmaps). There is a very good HowTo at http://mightylegends.zapto.org/dvd/dvdauthor_howto.php
Installation:
Download the script to the .gimp-2.2/plug-ins/ directory (or equivalent) under your home directory; make it executable (chmod +x animated_gallery.py) and restart the gimp. It should appear as an option under the python-fu -> alchemy menu.
<<lessWritten using python-fu and gimp 2.2.3
The purpose of the plug-in is to create an animated gallery (e.g for a DVD menu) by overlaying up to 5 animations frame-by-frame onto the current image background and then flattening and saving the combined frames.
The script takes parameters giving the filenames of the first frame of each source animation (or "OFF" to disable a feed). The frames themselves should be sequentially numbered (e.g. frame_000123.jpg). It should work with all image types the gimp can load (tested with .jpg and .ppm). Note that if a frame is missing in an animation, the previous one is repeated.
I have included an option for rounding the corners of the source frames (using the script-fu rounded rectangle function). If you want other similar functionality (e.g. fade to black at sequence end) I would recommend you to have a look at the source code - python is very easy to learn, and the script is fairly well documented.
Usage:
In order to make a DVD menu with animated chapter images, you would normally merge a number of short animated frame sequences(one per chapter), shrunk down to say 80 pixels high, onto a 720x576 background image (for 4:3 PAL). Obviously you should create all the static parts of the menu (text, drop shadows, button outlines etc) on the background image prior to calling the script. A suitable example background template is provided on the gimp plug-ins registry page for the project.
In order to create an actual DVD menu, you will of course need to use an authoring tool such as the excellent and highly flexible dvdauthor package (make sure you use at least version 0.6.11 however, as previous ones have a problem with spumux not correctly recognising transparent bitmaps). There is a very good HowTo at http://mightylegends.zapto.org/dvd/dvdauthor_howto.php
Installation:
Download the script to the .gimp-2.2/plug-ins/ directory (or equivalent) under your home directory; make it executable (chmod +x animated_gallery.py) and restart the gimp. It should appear as an option under the python-fu -> alchemy menu.
Download (MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
679 downloads
GD::Image::AnimatedGif 0.05
GD::Image::AnimatedGif is a Perl extension for creating animated gifs with GD. more>>
GD::Image::AnimatedGif is a Perl extension for creating animated gifs with GD.
SYNOPSIS
use GD::Image::AnimatedGif;
# setup the image
my $image = GD::Image->new(42,21);
my $white = $image->colorAllocate(255,255,255);
$image->transparent($white);
# setup some font goodies
my $fontcolor = $image->colorAllocate(0,0,0);
my $font = GD::Font->Small();
# setup some settings into variables
my $loop = 0;
my $speed = 42; # 1/100 of a sec
my $x_font = 10; # from right (x or y ??)
my $y_font = 2; # from top (x or $y ??)
print "Content-type: image/gifnn";
print $image->animated_gif($loop,$font,$fontcolor,$speed,$x_font,$y_font,[qw(text per frame)],&optional_frame_handler);
or
print $image->animated_gif_easy(0,0,@array,&optional_frame_handler);
So you can have this be your entire script, actual animation creation is on one line:
#!/usr/bin/perl
use strict;
use warnings;
use GD::Image::AnimatedGif;
print "Content-type: image/gifnn";
print GD::Image->new(50,20)->animated_gif_easy(0,[qw(10 9 8 7 6 5 4 3 2 1 0 Liftoff!)]);
<<lessSYNOPSIS
use GD::Image::AnimatedGif;
# setup the image
my $image = GD::Image->new(42,21);
my $white = $image->colorAllocate(255,255,255);
$image->transparent($white);
# setup some font goodies
my $fontcolor = $image->colorAllocate(0,0,0);
my $font = GD::Font->Small();
# setup some settings into variables
my $loop = 0;
my $speed = 42; # 1/100 of a sec
my $x_font = 10; # from right (x or y ??)
my $y_font = 2; # from top (x or $y ??)
print "Content-type: image/gifnn";
print $image->animated_gif($loop,$font,$fontcolor,$speed,$x_font,$y_font,[qw(text per frame)],&optional_frame_handler);
or
print $image->animated_gif_easy(0,0,@array,&optional_frame_handler);
So you can have this be your entire script, actual animation creation is on one line:
#!/usr/bin/perl
use strict;
use warnings;
use GD::Image::AnimatedGif;
print "Content-type: image/gifnn";
print GD::Image->new(50,20)->animated_gif_easy(0,[qw(10 9 8 7 6 5 4 3 2 1 0 Liftoff!)]);
Download (0.004MB)
Added: 2007-04-24 License: Perl Artistic License Price:
915 downloads
Image Viewer 2.2.1
Image Viewer is a tool for viewing, converting, grabbing, and printing images. more>>
Image Viewer is an image viewer with real-time interactive pan and zoom viewing that uses the GTK+ toolkit and Imlib (or Imlib2).
Image Viewer can open and save to any image format supported by Imlib, rectangular crop, grab the screen, print, and display on the root window.
Main features:
- View
- Convert
- Grab (Screenshot)
- Print
- Rotate
- Crop
- Resize
- Display on Desktop
Enhancements:
- A bug was fixed in the saving of animated GIF images in which looping was not an option.
- The disposal method support for GIF images was improved.
<<lessImage Viewer can open and save to any image format supported by Imlib, rectangular crop, grab the screen, print, and display on the root window.
Main features:
- View
- Convert
- Grab (Screenshot)
- Rotate
- Crop
- Resize
- Display on Desktop
Enhancements:
- A bug was fixed in the saving of animated GIF images in which looping was not an option.
- The disposal method support for GIF images was improved.
Download (0.89MB)
Added: 2007-07-30 License: GPL (GNU General Public License) Price:
829 downloads
KMerlin 1.3 Beta 4
KMerlin provides a MSN chat client. more>>
KMerlin provides a MSN chat client.
KMerlin is an MSN chat client which includes a number of funny smilies and lots of nice features.
Enhancements:
- Tested with KDE3.1 and Qt3.1.1
- This release is almost rewritten,
- New GUI
- New preferences
- New Notification system
- Animated System tray icons
<<lessKMerlin is an MSN chat client which includes a number of funny smilies and lots of nice features.
Enhancements:
- Tested with KDE3.1 and Qt3.1.1
- This release is almost rewritten,
- New GUI
- New preferences
- New Notification system
- Animated System tray icons
Download (1.3MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
930 downloads
JImage-Analyst 1.0
JImage-Analyst is a JAVA based library for extracting meta information from various image file formats. more>>
JImage-Analyst is a JAVA based library for extracting meta information from various image file formats.
Main features:
- Supported Image formats: BMP, CUR, GIF, ICO, IFF, JPEG, PCX, PNG, PNM (PBM, PGM, PPM), PSD, RAS, SWF, TGA, TIFF, XCF
- The following information are available:
- The format
- The mime type
- Dimension (width / height)
- Physical width and height (in DPI and inch)
- Bits per pixel
- Whether the image is progressive
- Comments from the image (such as in JPEG files)
- Number of images (such as with animated GIFs)
- High speed and low memory consumption
- No dependencies on 3rd party libraries
- No dependencies on AWT classes
- An architecture that allows to ass further formats very easily
Examples:
File file = new File("test.gif");
JImageAnalyst analyst = JImageAnalystFactory.getDefaultInstance();
ImageInfo imageInfo = analyst.analyze(file);
System.out.println("Format: " + imageInfo.getFormat());
System.out.println("MIME-Type: " + imageInfo.getMimeType());
System.out.println("Width: " + imageInfo.getWidth());
System.out.println("Height: " + imageInfo.getHeight());
System.out.println("BitsPerPixel: " + imageInfo.getBitsPerPixel());
// ... more information is available in imageInfo ...
<<lessMain features:
- Supported Image formats: BMP, CUR, GIF, ICO, IFF, JPEG, PCX, PNG, PNM (PBM, PGM, PPM), PSD, RAS, SWF, TGA, TIFF, XCF
- The following information are available:
- The format
- The mime type
- Dimension (width / height)
- Physical width and height (in DPI and inch)
- Bits per pixel
- Whether the image is progressive
- Comments from the image (such as in JPEG files)
- Number of images (such as with animated GIFs)
- High speed and low memory consumption
- No dependencies on 3rd party libraries
- No dependencies on AWT classes
- An architecture that allows to ass further formats very easily
Examples:
File file = new File("test.gif");
JImageAnalyst analyst = JImageAnalystFactory.getDefaultInstance();
ImageInfo imageInfo = analyst.analyze(file);
System.out.println("Format: " + imageInfo.getFormat());
System.out.println("MIME-Type: " + imageInfo.getMimeType());
System.out.println("Width: " + imageInfo.getWidth());
System.out.println("Height: " + imageInfo.getHeight());
System.out.println("BitsPerPixel: " + imageInfo.getBitsPerPixel());
// ... more information is available in imageInfo ...
Download (0.009MB)
Added: 2006-11-27 License: LGPL (GNU Lesser General Public License) Price:
1065 downloads
Image::ParseGIF 0.2
Image::ParseGIF can parse a GIF image into its compenent parts. more>>
Image::ParseGIF can parse a GIF image into its compenent parts.
SYNOPSIS
use Image::ParseGIF;
$gif = new Image::ParseGIF ("image.gif") or die "failed to parse: $@n";
# write out a deanimated version, showing only the first frame
$gif->deanimate(0);
# same again, manually printing each part
print $gif->header;
print $gif->part(0);
print $gif->trailer;
# or, without passing scalars around:
$gif->print_header;
$gif->print_part(0);
$gif->print_trailer;
# send an animated gif frame by frame
# - makes for a progress bar which really means something
$gif = new Image::ParseGIF ("progress.gif") or die "failed to parse: $@n";
$gif->print_header;
$gif->print_percent(0.00); # starting...
do_some_work_stage1();
$gif->print_percent(0.10); # 10% complete
do_some_work_stage2();
$gif->print_percent(0.25); # 25% complete
do_some_work_stage3();
$gif->print_percent(0.70); # 70% complete
do_some_work_stage4();
$gif->print_percent(1.00); # done!
$gif->print_trailer;
This module parses a Graphics Interchange Format (GIF) image into its component parts. A GIF is essentially made up of one or more images - multiple images typically are used for animated gifs.
<<lessSYNOPSIS
use Image::ParseGIF;
$gif = new Image::ParseGIF ("image.gif") or die "failed to parse: $@n";
# write out a deanimated version, showing only the first frame
$gif->deanimate(0);
# same again, manually printing each part
print $gif->header;
print $gif->part(0);
print $gif->trailer;
# or, without passing scalars around:
$gif->print_header;
$gif->print_part(0);
$gif->print_trailer;
# send an animated gif frame by frame
# - makes for a progress bar which really means something
$gif = new Image::ParseGIF ("progress.gif") or die "failed to parse: $@n";
$gif->print_header;
$gif->print_percent(0.00); # starting...
do_some_work_stage1();
$gif->print_percent(0.10); # 10% complete
do_some_work_stage2();
$gif->print_percent(0.25); # 25% complete
do_some_work_stage3();
$gif->print_percent(0.70); # 70% complete
do_some_work_stage4();
$gif->print_percent(1.00); # done!
$gif->print_trailer;
This module parses a Graphics Interchange Format (GIF) image into its component parts. A GIF is essentially made up of one or more images - multiple images typically are used for animated gifs.
Download (0.018MB)
Added: 2006-08-01 License: Perl Artistic License Price:
1181 downloads
KDE DVD Authoring Wizard 1.4.6
KDE DVD Authoring Wizard will allow you to create a DVD from one or more DVD compatible MPEG-2 files. more>>
KDE DVD Authoring Wizard will allow you to create a DVD from one or more DVD compatible MPEG-2 files. All you need to do is add one or multiple files to the playlist and answer the questions that follow.
You can add a menu that will contain animated thumbnails of the files in the playlist. Creating a menu is optional.
Main features:
- Playlist editor
- DVD menu with multiple pages
- Animated thumbnails in the menu
- Customizable menu graphics
- Add soundtrack from OGG or MP3
- Antialiased graphics prevent flickering on TV
- Both Widescreen and standard 4:3 support
- ISO DVD Image creation
<<lessYou can add a menu that will contain animated thumbnails of the files in the playlist. Creating a menu is optional.
Main features:
- Playlist editor
- DVD menu with multiple pages
- Animated thumbnails in the menu
- Customizable menu graphics
- Add soundtrack from OGG or MP3
- Antialiased graphics prevent flickering on TV
- Both Widescreen and standard 4:3 support
- ISO DVD Image creation
Download (0.55MB)
Added: 2007-05-30 License: GPL (GNU General Public License) Price:
890 downloads

NConvert for Linux 4.90
NConvert is a batch utility for converting graphic files. more>> Come to discover NConvert, a batch utility to convert graphic files! Support of more than 400 graphics formats!
NConvert is a batch utility for converting graphic files.
It has the features :
-Import about 400 graphic file formats
-Export about 40 graphic file formats
-Multipage TIFF, Animated GIF, Animated ICO support
-Resize
-Adjust brightness, contrast...
-Modify number of colors
-Apply filters (blur, average, emboss, ...)
-Apply effects (lens, wave, ...)
-And many many other things...
Note: Download 1 is for Linux x86,and download 2 is forLinux x86 64bit.<<less
Download (738KB)
Added: 2009-04-04 License: Freeware Price: Free
211 downloads
One-Wire Weather 0.82.0
One-Wire Weather is a client program for Dallas Semiconductor / AAG 1-wire weather station kits. more>>
One-Wire Weather is a client program for Dallas Semiconductor / AAG 1-wire weather station kits, providing a graphical (animated) display to monitor outside temperature, wind speed and direction, rainfall, and humidity.
Extra temperature sensors may be added. A 1-wire "hub" may be used for improved reliability and range. Weather data may be logged to CSV files, parsed to command line programs, sent to the Henriksen Windows client, or uploaded to Web servers at Dallas, The Weather Underground, and HAMweather.
Enhancements:
- Changes to libusb calls, to operate correctly with recent Linux kernels.
- Added facility for waveform slew/timing adjustment for DS2490.
- Locale now set to POSIX when creating output for wunderground, &c - so you can log e.g. with comma as decimal separator, but wunderground gets a full stop.
- Rain from a remote source is integrated for upload (but please could people check if this works for you).
- Initial support for DS2760 - e.g. AAG TAI8560 thermocouple adapter (but the thermocouple Voltage isnt interpreted yet).
- Added facility for placing control characters in parser strings, as C-style escape sequences.
- Added dailyrain statistic for wunderground uploads, &c.
- Implemented rapid update for wunderground.
<<lessExtra temperature sensors may be added. A 1-wire "hub" may be used for improved reliability and range. Weather data may be logged to CSV files, parsed to command line programs, sent to the Henriksen Windows client, or uploaded to Web servers at Dallas, The Weather Underground, and HAMweather.
Enhancements:
- Changes to libusb calls, to operate correctly with recent Linux kernels.
- Added facility for waveform slew/timing adjustment for DS2490.
- Locale now set to POSIX when creating output for wunderground, &c - so you can log e.g. with comma as decimal separator, but wunderground gets a full stop.
- Rain from a remote source is integrated for upload (but please could people check if this works for you).
- Initial support for DS2760 - e.g. AAG TAI8560 thermocouple adapter (but the thermocouple Voltage isnt interpreted yet).
- Added facility for placing control characters in parser strings, as C-style escape sequences.
- Added dailyrain statistic for wunderground uploads, &c.
- Implemented rapid update for wunderground.
Download (0.43MB)
Added: 2007-07-12 License: Artistic License Price:
844 downloads
send2kflickr 0.1
send2kflickr is the first attempt to create a KIPI plugin which uses KFlickr. more>>
send2kflickr is the first attempt to create a KIPI plugin which uses KFlickr.
The functionality is limited but this is due to limitations in the KIPI API. For example I would of liked to of been able to add tags set in Digikam automatically in the photo however the KIPI API does not provide access to these tags.
NOTE: If you are a kflickr user you will notice that your user settings are not set. You will have to Authenticate send2kflickr with flickr.com to get these.
KFlickr is now available as a KIPI plugin. Thats right you will now be able to upload your photos directly from digikam, kphotoalbum and others using the same interface you have grown to love. So far photo title and description are supported. I am working on getting further support included but I am finding the KIPI API a bit limited. You can grab the software here?.
KFlickr offers many features such as:
- Drag-n-drop from other applications (such as Konqueror and DigiKam?)
- Easy editing of your photo properties (title, description, privacy, tags)
- Access to your Flickr.com list of tags
- Support for more than one user
- large Image preview
- support for the new flickr? authentication
- Batch editing of photos
- Proxy server support
- Support for JPG, PNG and (non-animated) GIF photo formats
- Photo rotate
- Photo resize before upload
- Konqueror Service menu
- Now a KPart (allows for future integration into other apps)
- Now supports DCOP (again allow for future integration into other apps)
- Unicode support
<<lessThe functionality is limited but this is due to limitations in the KIPI API. For example I would of liked to of been able to add tags set in Digikam automatically in the photo however the KIPI API does not provide access to these tags.
NOTE: If you are a kflickr user you will notice that your user settings are not set. You will have to Authenticate send2kflickr with flickr.com to get these.
KFlickr is now available as a KIPI plugin. Thats right you will now be able to upload your photos directly from digikam, kphotoalbum and others using the same interface you have grown to love. So far photo title and description are supported. I am working on getting further support included but I am finding the KIPI API a bit limited. You can grab the software here?.
KFlickr offers many features such as:
- Drag-n-drop from other applications (such as Konqueror and DigiKam?)
- Easy editing of your photo properties (title, description, privacy, tags)
- Access to your Flickr.com list of tags
- Support for more than one user
- large Image preview
- support for the new flickr? authentication
- Batch editing of photos
- Proxy server support
- Support for JPG, PNG and (non-animated) GIF photo formats
- Photo rotate
- Photo resize before upload
- Konqueror Service menu
- Now a KPart (allows for future integration into other apps)
- Now supports DCOP (again allow for future integration into other apps)
- Unicode support
Download (0.037MB)
Added: 2006-08-07 License: GPL (GNU General Public License) Price:
1173 downloads
RasterImageManipulator 0.1
RasterImageManipulator is a free program for image processing and fractal exploration. more>>
RasterImageManipulator is a free program for image processing and fractal exploration. It has many features for customizing the appearance of fractal images.
These include special filters, a palette editor, gradient palette creator, and animated palette cycling.
Enhancements:
- The fractal buffer handling was cleaned up, and support for animated GIF export was added to the color cycling component.
- Build issues with Java 1.5 were fixed.
<<lessThese include special filters, a palette editor, gradient palette creator, and animated palette cycling.
Enhancements:
- The fractal buffer handling was cleaned up, and support for animated GIF export was added to the color cycling component.
- Build issues with Java 1.5 were fixed.
Download (0.51MB)
Added: 2005-09-15 License: GPL (GNU General Public License) Price:
1500 downloads
ChaNT 1.0.1
ChaNT is a flexible, powerful, cross-browser and easy to use open source web-based chat system written in PHP and JavaScript. more>>
ChaNT is a flexible, powerful, cross-browser and easy to use open source web-based chat system written in PHP and JavaScript. Support for BBCode, 3D Animated Smileys with a IM like toolbar for formatting your chat messages. This project does not require any browser plugins like Java or Flash. Also it not requires MySQL, all data stored in ordinary files.
ChaNT included privacy features such as traffic encryption(client-server-client) and client side password hashing. It have powerful admin control panel and can integrated with many forums and CMS. ChaNT supports all major browsers such as Internet Explorer, Firefox, Opera, Safari and Mozilla. It has a minimalistic and an elegant user interface which looks and feels a lot like a IM desktop application, since it uses AJAX. ChaNT is very fast, light weight and makes chatting more fun.
You can bookmark this page and return at any time to find the latest ChaNT updates as they`re released.
How does it work?
The ChaNT client side functioning on JavaScript XMLHttpRequest object to asynchronously communicate with the server-side. Server response parsed and used to update the chat window content. By generating the HTML locally within the browser, and only bringing down JavaScript calls and the actual data, AJAX web pages can appear to load relatively quickly since the payload coming down is much smaller in size.
<<lessChaNT included privacy features such as traffic encryption(client-server-client) and client side password hashing. It have powerful admin control panel and can integrated with many forums and CMS. ChaNT supports all major browsers such as Internet Explorer, Firefox, Opera, Safari and Mozilla. It has a minimalistic and an elegant user interface which looks and feels a lot like a IM desktop application, since it uses AJAX. ChaNT is very fast, light weight and makes chatting more fun.
You can bookmark this page and return at any time to find the latest ChaNT updates as they`re released.
How does it work?
The ChaNT client side functioning on JavaScript XMLHttpRequest object to asynchronously communicate with the server-side. Server response parsed and used to update the chat window content. By generating the HTML locally within the browser, and only bringing down JavaScript calls and the actual data, AJAX web pages can appear to load relatively quickly since the payload coming down is much smaller in size.
Download (1.3MB)
Added: 2007-05-01 License: GPL (GNU General Public License) Price:
907 downloads
KTrayNetworker 0.8c
KTrayNetworker is an application to view network activity on your network device such as eth0. more>>
This program will help you to view network activity on your network device such as eth0, ppp0 and so on.
It put animated, graduated, icons near the KDE tray.
<<lessIt put animated, graduated, icons near the KDE tray.
Download (0.57MB)
Added: 2005-05-27 License: GPL (GNU General Public License) Price:
1611 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above animated butterflies search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed