thumbnail
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 227
GD::Thumbnail 1.01
GD::Thumbnail is a thumbnail maker for GD. more>>
GD::Thumbnail is a thumbnail maker for GD.
SYNOPSIS
use GD::Thumbnail;
my $thumb = GD::Thumbnail->new;
my $raw = $thumb->create(test.jpg, 80, 2);
my $mime = $thumb->mime;
warn sprintf "Dimension: %sx%sn", $thumb->width, $thumb->height;
open IMG, ">thumb.$mime" or die "Error: $!";
binmode IMG;
print IMG $raw;
close IMG;
or
use CGI qw(:standard);
use GD::Thumbnail;
my $thumb = GD::Thumbnail->new;
my $raw = $thumb->create(test.jpg, 80, 2);
my $mime = $thumb->mime;
binmode STDOUT;
print header(-type => "image/$mime");
print $raw;
This a thumbnail maker. Thumbnails are smaller versions of the original image/graphic/picture and are used for preview purposes, where bigger images can take a long time to load. They are also used in image galleries to preview a lot of images at a time.
This module also has the capability to add information strips about the original image. Original images size (in bytes) and resolution & mime type can be added to the thumbnails upper and lower parts. This feature can be useful for web software (image galleries or forums).
This is a Yet Another type of module. There are several other thumbnail modules on CPAN, but they simply dont have the features I need, so this module is written to increase the thumbnail population on CPAN.
The module can raise an exception if something goes wrong. So, you may have to use an eval block to catch them.
<<lessSYNOPSIS
use GD::Thumbnail;
my $thumb = GD::Thumbnail->new;
my $raw = $thumb->create(test.jpg, 80, 2);
my $mime = $thumb->mime;
warn sprintf "Dimension: %sx%sn", $thumb->width, $thumb->height;
open IMG, ">thumb.$mime" or die "Error: $!";
binmode IMG;
print IMG $raw;
close IMG;
or
use CGI qw(:standard);
use GD::Thumbnail;
my $thumb = GD::Thumbnail->new;
my $raw = $thumb->create(test.jpg, 80, 2);
my $mime = $thumb->mime;
binmode STDOUT;
print header(-type => "image/$mime");
print $raw;
This a thumbnail maker. Thumbnails are smaller versions of the original image/graphic/picture and are used for preview purposes, where bigger images can take a long time to load. They are also used in image galleries to preview a lot of images at a time.
This module also has the capability to add information strips about the original image. Original images size (in bytes) and resolution & mime type can be added to the thumbnails upper and lower parts. This feature can be useful for web software (image galleries or forums).
This is a Yet Another type of module. There are several other thumbnail modules on CPAN, but they simply dont have the features I need, so this module is written to increase the thumbnail population on CPAN.
The module can raise an exception if something goes wrong. So, you may have to use an eval block to catch them.
Download (0.025MB)
Added: 2006-08-25 License: Perl Artistic License Price:
1158 downloads
Thumbnail AutoIndex 2.0
Thumbnail AutoIndex is a thumbnail index generation script designed to be a companion to mod_autoindex for Apache. more>>
Thumbnail AutoIndex is a thumbnail index generation script designed to be a companion to mod_autoindex for Apache. Thumbnail AutoIndex script generates a thumbnail index of images contained in a directory that is much like mod_autoindex generated indexes.
Enhancements:
- fixed PHP5 MIME detection
- fixed PHP5 If-Modified-Since handling
- Etag support
- fixed script real path detection
- cosmetics
<<lessEnhancements:
- fixed PHP5 MIME detection
- fixed PHP5 If-Modified-Since handling
- Etag support
- fixed script real path detection
- cosmetics
Download (0.005MB)
Added: 2006-04-24 License: GPL (GNU General Public License) Price:
1287 downloads
GD::Image::Thumbnail 0.02
GD::Image::Thumbnail is a Perl extension for creating thumbnailed images with GD. more>>
GD::Image::Thumbnail is a Perl extension for creating thumbnailed images with GD.
SYNOPSIS
use GD::Image::Thumbnail;
my $img = GD::Image->new(100,20);
my $thm = $img->thumbnail; # same as { factor => 0.20 }
my $thm = $img->thumbnail($n); # same as { side => $n }
my $thm = $img->thumbnail({ factor => 0.25 });
my $thm = $img->thumbnail({ factor => 0.25, small => 1 });
my $thm = $img->thumbnail({ side => $n });
my $thm = $img->thumbnail({ side => $n, small => 1 });
my $thm = $img->thumbnail({ w => $w });
my $thm = $img->thumbnail({ h => $h });
my $thm = $img->thumbnail({ w => $w, h => $h });
my $thm = $img->thumbnail({ w => $w, small => 1 });
my $thm = $img->thumbnail({ h => $h, small => 1 });
my $thm = $img->thumbnail({ w => $w, h => $h, small => 1 });
thumb() ^
thumb() is shortcut for thumbnail() - useful for people who like to bite their nails :)
$img->thumbnail(@thm_args)
and
$img->thumb(@thm_args);
are doing the same thing
OPTIONS
factor => $n
This makes a thumbnail $n (0.20 by default) times the size of the original. Only a two decimal place number between 0 and 1 are allowed. If a factor is given side, h, and w are all ignored
side => $n
Makes the side that will result in a larger thumbnail $n pixels (or opposite if small => 1). If side is given then h and w are ignored.
w => $x and h => $y
You can specify one or both of these. If only one is given it makes that side that dimention. If you specify both, the side that will result in a larger thumbnail (based on the images orientation and *not* the values of w and h if different), is used (or opposite if small => 1).
small => 1
If true make the images the smallest possible. This will round down instead of up when rounding is necessary and will help decide which side gets set to the given value.
$img->thumbnail(10); # 100 x 25 image becomes 40 x 10
$img->thumbnail({ side => 10, small => 1}); # 100 x 25 image becomes 10 x 2
resample => 1
If true use copyResampled() instead of copyResized() See GDs documentation about the difference. This can also be turned on by specifying a true value as the second argument:
$img->thumbnail($n, 1);
$img->thumbnail({ factor => $n }, 1);
<<lessSYNOPSIS
use GD::Image::Thumbnail;
my $img = GD::Image->new(100,20);
my $thm = $img->thumbnail; # same as { factor => 0.20 }
my $thm = $img->thumbnail($n); # same as { side => $n }
my $thm = $img->thumbnail({ factor => 0.25 });
my $thm = $img->thumbnail({ factor => 0.25, small => 1 });
my $thm = $img->thumbnail({ side => $n });
my $thm = $img->thumbnail({ side => $n, small => 1 });
my $thm = $img->thumbnail({ w => $w });
my $thm = $img->thumbnail({ h => $h });
my $thm = $img->thumbnail({ w => $w, h => $h });
my $thm = $img->thumbnail({ w => $w, small => 1 });
my $thm = $img->thumbnail({ h => $h, small => 1 });
my $thm = $img->thumbnail({ w => $w, h => $h, small => 1 });
thumb() ^
thumb() is shortcut for thumbnail() - useful for people who like to bite their nails :)
$img->thumbnail(@thm_args)
and
$img->thumb(@thm_args);
are doing the same thing
OPTIONS
factor => $n
This makes a thumbnail $n (0.20 by default) times the size of the original. Only a two decimal place number between 0 and 1 are allowed. If a factor is given side, h, and w are all ignored
side => $n
Makes the side that will result in a larger thumbnail $n pixels (or opposite if small => 1). If side is given then h and w are ignored.
w => $x and h => $y
You can specify one or both of these. If only one is given it makes that side that dimention. If you specify both, the side that will result in a larger thumbnail (based on the images orientation and *not* the values of w and h if different), is used (or opposite if small => 1).
small => 1
If true make the images the smallest possible. This will round down instead of up when rounding is necessary and will help decide which side gets set to the given value.
$img->thumbnail(10); # 100 x 25 image becomes 40 x 10
$img->thumbnail({ side => 10, small => 1}); # 100 x 25 image becomes 10 x 2
resample => 1
If true use copyResampled() instead of copyResized() See GDs documentation about the difference. This can also be turned on by specifying a true value as the second argument:
$img->thumbnail($n, 1);
$img->thumbnail({ factor => $n }, 1);
Download (0.003MB)
Added: 2007-04-24 License: Perl Artistic License Price:
914 downloads
Mplayer-video-thumbnailer 1.3-3
Mplayer-video-thumbnailer is a shell script for thumbnails preview in nautilus. more>>
Mplayer-video-thumbnailer is a shell script for thumbnails preview in nautilus.
A shell script which can ganrate thumbnails of video files in nautilus using mplayer.
<<lessA shell script which can ganrate thumbnails of video files in nautilus using mplayer.
Download (0.004MB)
Added: 2006-12-22 License: GPL (GNU General Public License) Price:
1050 downloads
Thumbs 0.6.3
Thumbs is a Firefox extension that shows the first thumbnail from each linked gallery. more>>
Thumbs is a Firefox extension that shows the first thumbnail from each linked gallery. After installing, use Customize Toolbars to add the Thumbs toolbar button, or select some links and right-click.
The Options window requires Firefox 1.5 Beta; it doesnt work in Firefox 1.0.x. Everything else should work, and you can still use about:config to tweak the options if want.
<<lessThe Options window requires Firefox 1.5 Beta; it doesnt work in Firefox 1.0.x. Everything else should work, and you can still use about:config to tweak the options if want.
Download (0.021MB)
Added: 2007-07-09 License: MPL (Mozilla Public License) Price:
1077 downloads
Nailer 0.1
Nailer project is a Glib application that uses MPlayer to generate thumbnails of video media files. more>>
Nailer project is a Glib application that uses MPlayer to generate thumbnails of video media files.
Nailer takes 3 command line arguments. The first two are manadatory and the third is optional.
nailer input output [size]
input - is any video file that mplayer supports
output - is either the name of the png or jpeg file you want the output to go into
size - is the size in the X axis of the thumbnail you want to generate
nailer can be used to replace totem-video-thumbnailer and comes with the nautilus configuration file to do so.
<<lessNailer takes 3 command line arguments. The first two are manadatory and the third is optional.
nailer input output [size]
input - is any video file that mplayer supports
output - is either the name of the png or jpeg file you want the output to go into
size - is the size in the X axis of the thumbnail you want to generate
nailer can be used to replace totem-video-thumbnailer and comes with the nautilus configuration file to do so.
Download (0.32MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
869 downloads
Fetchgals 5.6
Fetchgals is a Web spider that locates and optionally downloads free pictures and movies from the internet. more>>
Fetchgals is a Web spider that locates and optionally downloads free pictures and movies from the internet.
Today, commercial porn sites are advertised like this: somebody puts together a thumbnail gallery, i.e. a web page with small thumbnail pictures linking to free full-size images or movies, and provides a link to the pay site. These thumbnail galleries are listed on central websites called Thumbnail Gallery Posts (TGPs). Unfortunately, many TGPs add a layer of redirects, popups, spyware and viruses. Fetchgals is designed to eliminate the TGP.
The fetchgals distribution comes with a huge list of TGPs. This list was generated by a separate script called findtgps, which is also included in the distribution. Fetchgals visits these TGPs in order to locate thumbnail galleries. The images and movies of these galleries can then be downloaded. Since theres a couple hundred gigabytes of free porn on the internet at any given time, fetchgals constantly monitors local disk space to avoid overruns. Alternatively, fetchgals can create local HTML pages that link to the known galleries; this minimizes disk and bandwidth usage.
The script is written in perl and uses multiple threads to maximize throughput. Both fetchgals and findtgps are in the public domain.
<<lessToday, commercial porn sites are advertised like this: somebody puts together a thumbnail gallery, i.e. a web page with small thumbnail pictures linking to free full-size images or movies, and provides a link to the pay site. These thumbnail galleries are listed on central websites called Thumbnail Gallery Posts (TGPs). Unfortunately, many TGPs add a layer of redirects, popups, spyware and viruses. Fetchgals is designed to eliminate the TGP.
The fetchgals distribution comes with a huge list of TGPs. This list was generated by a separate script called findtgps, which is also included in the distribution. Fetchgals visits these TGPs in order to locate thumbnail galleries. The images and movies of these galleries can then be downloaded. Since theres a couple hundred gigabytes of free porn on the internet at any given time, fetchgals constantly monitors local disk space to avoid overruns. Alternatively, fetchgals can create local HTML pages that link to the known galleries; this minimizes disk and bandwidth usage.
The script is written in perl and uses multiple threads to maximize throughput. Both fetchgals and findtgps are in the public domain.
Download (0.085MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1224 downloads
Tonality 1.4.1
Tonality is a GUI-driven utility that streamlines the typical B&W image conversion process. more>>
Tonality is a GUI-driven utility that streamlines the typical Black and White image conversion process. It thumbnails images in B&W for quick preview.
It allows previews based on individual color channels. It also makes adjusting individual channel contributions without changing the overall exposure easy.
Main features:
- Integrated file browser/preview
- Thumbnails displayed optionaly in B&W
- Single button click to preview conversion using a single channel
- Simple interface to adjust color channel contributions without changing the exposure
- Individual channels can be "locked"
Installation:
Extract archive file
tar xzvf tonality-x.x.tar.gz
cd tonality-x.x
Create Makefile using qmake.
qmake tonality.pro > Makeffile
Build application
make
Install application
su
cp tonlaity /usr/local/bin
Enhancements:
- A SEGV which occurred if clicking was done very quickly in file browser was fixed.
- A problem where typing very quickly could result in some keypresses not being registered was fixed.
- Thumbnail logic was changed to not store scaled images if they are below the minimum icon size.
<<lessIt allows previews based on individual color channels. It also makes adjusting individual channel contributions without changing the overall exposure easy.
Main features:
- Integrated file browser/preview
- Thumbnails displayed optionaly in B&W
- Single button click to preview conversion using a single channel
- Simple interface to adjust color channel contributions without changing the exposure
- Individual channels can be "locked"
Installation:
Extract archive file
tar xzvf tonality-x.x.tar.gz
cd tonality-x.x
Create Makefile using qmake.
qmake tonality.pro > Makeffile
Build application
make
Install application
su
cp tonlaity /usr/local/bin
Enhancements:
- A SEGV which occurred if clicking was done very quickly in file browser was fixed.
- A problem where typing very quickly could result in some keypresses not being registered was fixed.
- Thumbnail logic was changed to not store scaled images if they are below the minimum icon size.
Download (0.025MB)
Added: 2005-11-11 License: GPL (GNU General Public License) Price:
1442 downloads
MPlayerThumbs for Kubuntu 0.5b
MPlayerThumbs for Kubuntu is a thumbnail generator for video files on Konqueror. more>>
MPlayerThumbs for Kubuntu is a thumbnail generator for video files on Konqueror.
Unlike the original konqueror plugin (in my gentoo box is artsplugin-xine), it DOESNT depend neither on xine nor arts, instead it uses only mplayer.
You can take advantage of this on x86_64 systems, where you can use a 32bit mplayer to load win32codecs. To configure the location of your mplayer binary launch mplayerthumbsconfig.
Also its faster than the xine plugin, since it can seek and play only a limited number of frames.
MPlayerThumbs for Kubuntu catches a random frame from 15% to 70%, checking also how contrasted is the image, and dropping bad frames.
<<lessUnlike the original konqueror plugin (in my gentoo box is artsplugin-xine), it DOESNT depend neither on xine nor arts, instead it uses only mplayer.
You can take advantage of this on x86_64 systems, where you can use a 32bit mplayer to load win32codecs. To configure the location of your mplayer binary launch mplayerthumbsconfig.
Also its faster than the xine plugin, since it can seek and play only a limited number of frames.
MPlayerThumbs for Kubuntu catches a random frame from 15% to 70%, checking also how contrasted is the image, and dropping bad frames.
Download (0.074MB)
Added: 2006-12-11 License: GPL (GNU General Public License) Price:
1052 downloads
Tavia 0.2.5d
Tavia is a Web browser that is based on khtml. more>>
Tavia is a Web browser that is based on khtml.
- Its an unstable version
- If a problem is found, please report to me.
- KDE3.2(.*) is required for compile.
Main features:
- Multi Document Interface support.
- The view management by the button with thumbnail.
- Like Konqueror, parts is changed dynamically and can be used.
- History and Bookmarks was implemented.
- thumbnail is zoomed by pushing center button of mouse.
Enhancements:
- added a button rearrangement support.
- added a button color setting.
- and fixed some bugs.
<<less- Its an unstable version
- If a problem is found, please report to me.
- KDE3.2(.*) is required for compile.
Main features:
- Multi Document Interface support.
- The view management by the button with thumbnail.
- Like Konqueror, parts is changed dynamically and can be used.
- History and Bookmarks was implemented.
- thumbnail is zoomed by pushing center button of mouse.
Enhancements:
- added a button rearrangement support.
- added a button color setting.
- and fixed some bugs.
Download (0.846MB)
Added: 2006-06-15 License: GPL (GNU General Public License) Price:
1227 downloads
Photo Novilab 0.5.1
Photo Novilab provides a Web image gallery generation program. more>>
Photo Novilab provides a Web image gallery generation program.
Photo Novilab is an highly customizable program written in PHP that lets you create photo galleries on your Web site simply by uploading the images.
It creates a thumbnail gallery and has the capability to insert a button to send the photo link by email.
It also features the ability to view how many times a picture has been viewed.
<<lessPhoto Novilab is an highly customizable program written in PHP that lets you create photo galleries on your Web site simply by uploading the images.
It creates a thumbnail gallery and has the capability to insert a button to send the photo link by email.
It also features the ability to view how many times a picture has been viewed.
Download (MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
959 downloads
Album::Tutorial 1.05
Album::Tutorial is a Perl module on how to use the Album program. more>>
Album::Tutorial is a Perl module on how to use the Album program.
SYNOPSIS
This tutorial describes the basic use of the Album program to create and maintain browser based photo albums.
Getting started
To get started, create a new directory and cd to it. Create a subdirectory large and put some pictures there. If you have installed the album tool in your execution path, you can now execute it as follows:
$ album -v
No info.dat, adding images from large
info.dat: Cannot update (does not exist)
Number of entries = 7 (7 added)
mkdir thumbnails
mkdir icons
mkdir css
Creating icons: first-gr.png first.png ... sound.png movie.jpg
Creating style sheets: common.css index.css ... journal.css
im023.jpg: thumbnail OK
im024.jpg: thumbnail OK
im025.jpg: thumbnail OK
im026.jpg: thumbnail OK
im027.jpg: thumbnail OK
im028.jpg: thumbnail OK
im029.jpg: thumbnail OK
Creating pages for 7 images
(Needed to write 7 image pages)
Creating pages for 1 index
(Needed to write 1 index page)
Your results will vary, but be similar to this example run. What you can see is that album found 7 images in the large directory, created thumbnails, icons and css directories, created thumbnails by resizing the images, and finally created the HTML pages. You can inspect your first photo album by opening file index.html with your favorite browser. You can click on any image to see the larger version. Navigation buttons are provided to the left of the image.
It is interesting to run album again:
$ album -v
No info.dat, adding images from large
info.dat: Cannot update (does not exist)
Number of entries = 7 (7 added)
.......[7]
Creating pages for 7 images
(No image pages needed updating)
Creating pages for 1 index
(No index pages needed updating)
album tries to avoid doing unnecessary work as much as possible. In this case, all thumbnails and image and index pages are up to date. The line of periods shows progress, one period for each image processed.
<<lessSYNOPSIS
This tutorial describes the basic use of the Album program to create and maintain browser based photo albums.
Getting started
To get started, create a new directory and cd to it. Create a subdirectory large and put some pictures there. If you have installed the album tool in your execution path, you can now execute it as follows:
$ album -v
No info.dat, adding images from large
info.dat: Cannot update (does not exist)
Number of entries = 7 (7 added)
mkdir thumbnails
mkdir icons
mkdir css
Creating icons: first-gr.png first.png ... sound.png movie.jpg
Creating style sheets: common.css index.css ... journal.css
im023.jpg: thumbnail OK
im024.jpg: thumbnail OK
im025.jpg: thumbnail OK
im026.jpg: thumbnail OK
im027.jpg: thumbnail OK
im028.jpg: thumbnail OK
im029.jpg: thumbnail OK
Creating pages for 7 images
(Needed to write 7 image pages)
Creating pages for 1 index
(Needed to write 1 index page)
Your results will vary, but be similar to this example run. What you can see is that album found 7 images in the large directory, created thumbnails, icons and css directories, created thumbnails by resizing the images, and finally created the HTML pages. You can inspect your first photo album by opening file index.html with your favorite browser. You can click on any image to see the larger version. Navigation buttons are provided to the left of the image.
It is interesting to run album again:
$ album -v
No info.dat, adding images from large
info.dat: Cannot update (does not exist)
Number of entries = 7 (7 added)
.......[7]
Creating pages for 7 images
(No image pages needed updating)
Creating pages for 1 index
(No index pages needed updating)
album tries to avoid doing unnecessary work as much as possible. In this case, all thumbnails and image and index pages are up to date. The line of periods shows progress, one period for each image processed.
Download (0.049MB)
Added: 2006-11-17 License: Perl Artistic License Price:
1071 downloads
Fotoblog 0.01
Fotoblog is a web based picture gallery that automatically receives and publishes real-time pictures from your mobile phone. more>>
v Every picture is published along with the text sent from the mobile phone.
Main features:
- POP3 support
- STDIN support (when piped directly from sendmail)
- image pagination with a configurable number of columns and images per page
- an image rotation function via the Web
- photo tag editing via the Web
- automatic thumbnail generation
- a user access log with originating IP and network display (php-whois required)
- user account maintenance via the Web
- a photo search function
- multi-language support
- EXIM support (for extracting the real picture date and time).
<<lessMain features:
- POP3 support
- STDIN support (when piped directly from sendmail)
- image pagination with a configurable number of columns and images per page
- an image rotation function via the Web
- photo tag editing via the Web
- automatic thumbnail generation
- a user access log with originating IP and network display (php-whois required)
- user account maintenance via the Web
- a photo search function
- multi-language support
- EXIM support (for extracting the real picture date and time).
Download (0.015MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1081 downloads
Kitty Hooch Photo Manager 0.3
Kitty Hooch Photo Manager can process photos where you need to copy, resize, create a thumbnail and write some text. more>>
Kitty Hooch Photo Manager is something I wrote for myself I thought Id share. I use it to process photos where I need to copy, resize, create a thumbnail and write some text. I got sick of gimping (sick of gimp really) and automated this to produce text files or PHP strings too.
If you call it from Quanta it will even regester everything in your project so its one step from picking a list of photos and commenting on them to uploading. Sorry, you have to write your own PHP libraries.
This requires ImageMagick. I just added the thumbnailing and I know how to make it a lot faster, but Im too tired to do it now. In case youre wondering if you can do anything with Kommander, this is EXACTLY the type of thing I had in mind for it. This may not be what you need, but with a few minutes of editing the output patterns it may be a dream come true. Enjoy.
<<lessIf you call it from Quanta it will even regester everything in your project so its one step from picking a list of photos and commenting on them to uploading. Sorry, you have to write your own PHP libraries.
This requires ImageMagick. I just added the thumbnailing and I know how to make it a lot faster, but Im too tired to do it now. In case youre wondering if you can do anything with Kommander, this is EXACTLY the type of thing I had in mind for it. This may not be what you need, but with a few minutes of editing the output patterns it may be a dream come true. Enjoy.
Download (0.073MB)
Added: 2006-09-12 License: GPL (GNU General Public License) Price:
1139 downloads
Emblems Hack 0.2
Emblems Hack is a simple hack to kdelibs-3.5.5 (and 3.5.6) that adds basic emblem support, like in GNOME. more>>
Emblems Hack is a simple hack to kdelibs-3.5.5 (and 3.5.6) that adds basic emblem support, like in GNOME. (It doesnt use the same format, though.)
There is currently no GUI to select emblems for files, so to set an emblem, run this command: attr -s emblem -V icon-name file
icon-name can be either a valid KDE icon name or an absolute path (e.g. /home/user/icon.png).
Currently, emblems are not drawn on thumbnail previews. Ill attempt to fix this in the next version.
<<lessThere is currently no GUI to select emblems for files, so to set an emblem, run this command: attr -s emblem -V icon-name file
icon-name can be either a valid KDE icon name or an absolute path (e.g. /home/user/icon.png).
Currently, emblems are not drawn on thumbnail previews. Ill attempt to fix this in the next version.
Download (MB)
Added: 2007-01-30 License: GPL (GNU General Public License) Price:
1007 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 thumbnail 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