| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | Thumbnail generator |
script | PHP | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 2 | Thumbnail Masters |
script | CGI Perl | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 3 | Thumbnail Viewer |
script | PHP | $5.00 Additional Info: price is for download on donation basis |
View Detail
|
|||||||||
|
||||||||||||||
| 4 | Thumbnail AutoIndex 2.0 |
linux | Internet->HTTP | Free |
View Detail
|
|||||||||
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. Whats New in This Release: · fixed PHP5 MIME detection · fixed PHP5 If-Modified-Since handling · Etag support · fixed script real path detection · cosmetics |
||||||||||||||
| 5 | GD::Thumbnail 1.01 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
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. |
||||||||||||||
| 6 | PageFocus Thumbnail 1.60 |
windows | Graphic Apps->Converters Optimizers | $15 |
View Detail
|
|||||||||
PageFocus Thumbnail is an software for efficiently creating image thumbnails, re-sampling the image to reduce image size, or converting image file format. You can drag and drop to select files to convert, and a single button click to get the job done. The program can process (read) the following file types: BMP, GIF, JPG, PCD, PCX, PSD, PNG, TARGA, TIF It can also process PDF files if you install the open source software, Ghostscript. You can refer to programs help topic on PDF Support for more information. PageFocus Thumbnail writes to the following types: BMP, GIF, JPG, PNG, TIF Limitations: · 15 days trial |
||||||||||||||
| 7 | Thumbnail Creator 1.0b |
windows | Graphic Apps->Converters Optimizers | Free |
View Detail
|
|||||||||
Thumbnail Creator was designed as a freeware and simple tool you can use at thumbnail creation and image resizing. Here are some key features of "Thumbnail Creator": · Creation thumbnail on the set sizes of sides · Creation thumbnail by maximal value of side |
||||||||||||||
| 8 | Thumbnail Switcher 1.0 |
windows | Graphic Apps->Other | Free |
View Detail
|
|||||||||
Thumbnail Switcher is a simple tooll designed to a thumbnail viewer Thumbnail Switcher is a simple tooll designed to a thumbnail viewer. |
||||||||||||||
| 9 | Ez Thumbnail Maker 1.0 |
windows | Graphic Apps->Converters Optimizers | Free |
View Detail
|
|||||||||
Free thumbnail image generator, creates thumbnail images from your original JPG images. EZ Thumbnail Maker is a free thumbnail image generator. It will create thumbnail images from your original JPG images. EZ Thumbnail Maker only creating thumbnail images that you can use later on your web image gallery, there is no HTML page generated. Here are some key features of "Ez Thumbnail Maker": · Easy and simple steps · Adjustable JPEG Quality for web optimization · Three thumbnailing method · Automatic web-file naming with suffix · Auto Number file naming with prefix |
||||||||||||||
| 10 | Thumbnail Grabber 1.0 |
windows | Network Internet->Other | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 11 | Vnc Thumbnail Viewer 1.3 |
windows | Network Tools->Network Monitoring Info | FREE |
View Detail
|
|||||||||
Vnc Thumbnail Viewer gives you the ability to connect to and watch multiple computers at the same time using the VNC protocol. |
||||||||||||||
| 12 | Thumbnail Gallery Downloader 3.1 |
windows | Network Internet->Download Managers | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 13 | Thumbnail factory 1.16 |
windows | Web Development->Web Design Tools | $15 |
View Detail
|
|||||||||
Have you ever made thumbnail index pages?... so you know, it takes a lot of time... Now you can relax... most of routines are automated in Thumbnail factory Here are some key features of "Thumbnail factory": · Creates HTML page of thumbnails and links to the full images · Drag and drop images from different directories into table grid · Drag images to arrange tablegrid · Different customizable styles of thumbnails and images · Customizable HTML pages · Managing multiply profiles of thumbnail styles and options · Viewing generated pages with default web browser · FTP uploading Limitations: · table rows and columns are limited · all generated HTML pages contain information and link to Thumbnail factory site |
||||||||||||||
| 14 | GD::Image::Thumbnail 0.02 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
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); |
||||||||||||||
| 15 | Thumbnail Generator 1.4 |
windows | Windows Widgets->System Utilities | Free |
View Detail
|
|||||||||
Generates thumbnails from a folder of images. Options include thumbnail format, dimensions, and filename prefix. Requires ImageMagick to be installed. |
||||||||||||||
| 16 | Thumbnail Generator 1.1.2 |
windows | Graphic Apps->Other | Free |
View Detail
|
|||||||||
Create thumbnails of folders of images. Thumbnail Generator application was designed to help you create thumbnails of folders of images. Here are some key features of "Thumbnail Generator": · Fixed thumbnail size irrespective of original image size · Create thumbnails for a whole folder in one operation · Add watermarks to thumbnails |
||||||||||||||
| 17 | PDF Thumbnail Generator 1.02 |
windows | Graphic Apps->Editors | $n |
View Detail
|
|||||||||
|
||||||||||||||
| 18 | PDF Thumbnail Generator 1.02 |
windows | Business Finance->PDF Tools | Free |
View Detail
|
|||||||||
PDF Thumbnail Generator - Create thumbnail for your existing PDF files. Thumbnail can be generated from a bitmap (.BMP) or a JPEG (*.JPG) or even a EMF (Encapsulated Meta File). When thumbnails are created and embedded into your PDF files, you will see the thumbnails displayed on the left column of your PDF Reader or Viewer (usually Adobe Reader). With this freeware utility, you can decide whether to show thumbnails when PDF file is opened. Whats New in This Release: Now JPG, JPEG can be used as PDF thumbnail |
||||||||||||||
| 19 | Thumbnail Creator 1.6 |
windows | Graphic Apps->Digital Photo Tools | Free |
View Detail
|
|||||||||
PH Software Technologies Thumbnail Creator description Thumbnail Creator is a small tool that allows you to create thumbnails from your pictures. Thumbnail Creator is a small tool that allows you to create thumbnails from your pictures. Thumbnail Creator also includes a tool used for automaticly creating HTML web pages from your thumbnails. You can change some of the HTML page properties like the backcolor, size of thumbnails, open in new or same window and titles can be added. Here are some key features of "PH Software Technologies Thumbnail Creator": Generating thumbnails the most easy way · Generating thumbnails using this tool can be done very easy. First you have to select the directory where your pictures are stored, just fill in the directory in the Dir containing pictures that will be thumbnailed box or click on the ... button to select it using the direcory selection box. If you choose to use the directory selection box, the destenation path will be automaticly filled in for · Beside the directory settings you can also change the thumbnail generation options if you wish. If you choose to resize the pictures using the percent of original option, then all of the thumbnails will have diffrent sizes according to the size they originaly had. So if you wish to use the thumbnails on a webpage, its reccomended to use the Resize to option instead. The Resize to option will size all the thumbnials to the same fitting sizes, it will also automaticly crop the pictures when needed. · Using the JPEG Quality setting you are able to generate thumbnails that are smaller in filesize, remember that this setting will also affect the quality of the thumbnails. · When you have changed the settings to youre wishes you can use the Start button to start the thumbnail creation process. The creation of the thumbnails is fully automated, you can see the progress of the whole process in the Progress box. Creating thumbnail HTML pages · This thumbnail generator is also able to generate nicly formatted HTML pages of your thumbnials. To use this feature you have to enable the Create a formatted thumbnail HTML pages checkbox found in the Thumbnail HTML Page options box. When you choose to use this feature, some of the thumbnail options are locked. This means you are only able to change the thumbnail quality and change the size to a Lare, medium or small preset. Using the Page title option you can give your page a personalized name. You are also able to change the page text color and background color by clicking one of the available colors. The Open original in option lets you choose to open the original big pictures in a new window or the already open window displaying the thumbnails. · When done, use the Start button to start the automated process. |
||||||||||||||
| 20 | Webmaster Thumbnail Creator 2.3 |
windows | Web Development->Web Design Tools | Free |
View Detail
|
|||||||||
|
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
