thumbnails
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 224
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
Thunar Thumbnailers 0.1.1
Thunar Thumbnailers is a plugin for Thunar file manager, that can generate thumbnails of files inside the file manager. more>>
Thunar Thumbnailers is a plugin for Thunar file manager, that can generate thumbnails of files inside the file manager.
Thunar uses external utilities - so called thumbnailers - to generate previews of certain files. Thunar ships with thumbnailers to generate previews of image and font files and can automatically use available GNOME thumbnailers if it was build with support for gconf.
However, even then, there are several file types for which no thumbnailer exists. The thunar-thumbnailers project provides additional thumbnailers for Thunar, that also cover less common file formats.
Supported Formats
Thunar-thumnbnailers generates thumbnails for the following formats:
- EPS
- Postscript
- Fig (.fig)
- LaTeX (requires tetex)
- Raw Digital Camera Images (requires dcraw)
- Grace (requires grace)
And in the near future, hopefully:
- Video files (using ffmpegthumbnailer)
- Icon files (.ico)
Enhancements:
- Added an option --disable-update-mime-database to configure to make life easier for packagers
<<lessThunar uses external utilities - so called thumbnailers - to generate previews of certain files. Thunar ships with thumbnailers to generate previews of image and font files and can automatically use available GNOME thumbnailers if it was build with support for gconf.
However, even then, there are several file types for which no thumbnailer exists. The thunar-thumbnailers project provides additional thumbnailers for Thunar, that also cover less common file formats.
Supported Formats
Thunar-thumnbnailers generates thumbnails for the following formats:
- EPS
- Postscript
- Fig (.fig)
- LaTeX (requires tetex)
- Raw Digital Camera Images (requires dcraw)
- Grace (requires grace)
And in the near future, hopefully:
- Video files (using ffmpegthumbnailer)
- Icon files (.ico)
Enhancements:
- Added an option --disable-update-mime-database to configure to make life easier for packagers
Download (0.076MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
961 downloads
imdb-thumbnailer 0.7.3
A video thumbnailer that sets film covers as thumbnails. more>>
imdb-thumbnailer 0.7.3 offers you a powerful and convenient video thumbnailer that sets film covers as thumbnails. This is a video thumbnailer that searches imdb for covers based on the file names. It works for movies in the specified paths (recursively). For the rest of the cases or if no cover is found the default thumbnailer is used.
Enhancements:
- Fixed: Not working recursively
- Fixed: Wrong version number
Requirements: ImageMagick
<<less Added: 2009-02-14 License: GPL Price: FREE
29 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
gThumb 2.10.5
gThumb is an image viewer written for the GNOME environment. more>>
gThumb is an image viewer written for the GNOME environment. gThumb lets you browse your hard disk, showing you thumbnails of image files.
It also lets you view single files (including GIF animations), organize images in catalogs, print images, view slideshows, set your desktop background, and more. gThumb also
Main features:
Image Viewer
- View single images (including GIF animations). Supported image types are: BMP, JPEG, GIF, PNG, TIFF, ICO, XPM.
- View EXIF data attached to JPEG images.
- View in fullscreen mode.
- View images rotated, flipped, in black and white.
Image Browser
- Browse your hard disk showing you thumbnails of image files.
- Thumbnails are saved in the same database used by Nautilus so you dont waste disk space.
- Automatically update the content of a folder.
- Copy, move, delete images and folders.
- Bookmarks of folders and catalogs.
Image Organizer
- Add comments to images.
- Organize images in catalogs, catalogs in libraries.
- Print images and comments.
- Search for images on you hard disk and save the result as a catalog. Search criteria remain attached to the catalog so you can update it when you want.
Image Editor
- Change image hue, saturation, lightness, contrast and adjust colors.
- Scale and rotate images.
- Save images in the following formats: JPEG, PNG, TIFF, TGA.
Advanced Tool
- Import images from a digital camera.
- Slide Shows.
- Set an image as Desktop background.
- Create index image.
- Create web albums.
- Rename images in series.
- Convert image format.
- Change images date and time.
- JPEG lossless transformations.
- Find duplicated images.
- Write images to CD/DVD.
- Fully documented.
Bonobo Component
- Image viewer component. Differences with the EOG component: display GIF animations; print the image and its comment.
Enhancements:
- Fixed bug #448644 - Image brightness-contrast doesnt trigger save-ability.
<<lessIt also lets you view single files (including GIF animations), organize images in catalogs, print images, view slideshows, set your desktop background, and more. gThumb also
Main features:
Image Viewer
- View single images (including GIF animations). Supported image types are: BMP, JPEG, GIF, PNG, TIFF, ICO, XPM.
- View EXIF data attached to JPEG images.
- View in fullscreen mode.
- View images rotated, flipped, in black and white.
Image Browser
- Browse your hard disk showing you thumbnails of image files.
- Thumbnails are saved in the same database used by Nautilus so you dont waste disk space.
- Automatically update the content of a folder.
- Copy, move, delete images and folders.
- Bookmarks of folders and catalogs.
Image Organizer
- Add comments to images.
- Organize images in catalogs, catalogs in libraries.
- Print images and comments.
- Search for images on you hard disk and save the result as a catalog. Search criteria remain attached to the catalog so you can update it when you want.
Image Editor
- Change image hue, saturation, lightness, contrast and adjust colors.
- Scale and rotate images.
- Save images in the following formats: JPEG, PNG, TIFF, TGA.
Advanced Tool
- Import images from a digital camera.
- Slide Shows.
- Set an image as Desktop background.
- Create index image.
- Create web albums.
- Rename images in series.
- Convert image format.
- Change images date and time.
- JPEG lossless transformations.
- Find duplicated images.
- Write images to CD/DVD.
- Fully documented.
Bonobo Component
- Image viewer component. Differences with the EOG component: display GIF animations; print the image and its comment.
Enhancements:
- Fixed bug #448644 - Image brightness-contrast doesnt trigger save-ability.
Download (2.8MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
854 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
Themus 0.1.5
Themus is a collection of theme utilities for GNOME. more>>
Themus is a collection of theme utilities for GNOME 2.2.
Main features:
- Being able to navigate in Nautilus to themes:/// to view your installed themes.
- Thumbnails for themes in Nautilus.
- A tab in the Nautilus properties for themes.
- Drag and drop support for themes; if you drag a theme into the Nautilus window, it will be installed; if you drag a theme out of the window, the theme file will be saved (though not an entire theme archive).
<<lessMain features:
- Being able to navigate in Nautilus to themes:/// to view your installed themes.
- Thumbnails for themes in Nautilus.
- A tab in the Nautilus properties for themes.
- Drag and drop support for themes; if you drag a theme into the Nautilus window, it will be installed; if you drag a theme out of the window, the theme file will be saved (though not an entire theme archive).
Download (0.35MB)
Added: 2005-04-25 License: GPL (GNU General Public License) Price:
1642 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
DynAlbum 1.5
Dynalbum is a fully dynamic automatic Web photo album generator. more>>
Dynalbum is a fully dynamic automatic Web photo album generator. The album includes an index page with thumbnails, navigation tools on each album page, and four sizes of each picture.
The entire album is dynamically generated from a directory of JPEGs, TIFFs, PNGs, and GIFs when it is accessed. Unlike other photo album generators, it doesnt clutter files with thumbnails and static HTML.
DynAlbum generates each page and each scaled image (including thumbnails) dynamically every time it is accessed. This means that theres no need to keep static copies of anything but the original pictures.
INSTALLATION:
Copy the dynalbum.py program to the file "index.py" in your image directory. You need to enable mod_python for this directory. This can be accomplished either in your httpd.conf (/etc/httpd/conf/httpd.conf or /etc/httpd/conf.d/python.conf) or in a ".htaccess" file.
The .htaccess file is placed in your image and adusts web server parameters for that directory. In order to use a .htaccess file you may need to enable support using the "AllowOverride" directive in the global apache configuration.
httpd.conf example:
DirectoryIndex index.py
AddHandler python-program .py
PythonHandler mod_python.publisher
PythonInterpPerDirectory On
.htaccess file example:
DirectoryIndex index.py
AddHandler python-program .py
PythonHandler mod_python.publisher
PythonInterpPerDirectory On
and change the relevant instance of "AllowOverride None"
in httpd.conf to "AllowOverride All" to enable .htaccess
support in Apache.
Enhancements:
- Generates multi-page image indexes
- Dynamically generates ZIP archives
<<lessThe entire album is dynamically generated from a directory of JPEGs, TIFFs, PNGs, and GIFs when it is accessed. Unlike other photo album generators, it doesnt clutter files with thumbnails and static HTML.
DynAlbum generates each page and each scaled image (including thumbnails) dynamically every time it is accessed. This means that theres no need to keep static copies of anything but the original pictures.
INSTALLATION:
Copy the dynalbum.py program to the file "index.py" in your image directory. You need to enable mod_python for this directory. This can be accomplished either in your httpd.conf (/etc/httpd/conf/httpd.conf or /etc/httpd/conf.d/python.conf) or in a ".htaccess" file.
The .htaccess file is placed in your image and adusts web server parameters for that directory. In order to use a .htaccess file you may need to enable support using the "AllowOverride" directive in the global apache configuration.
httpd.conf example:
DirectoryIndex index.py
AddHandler python-program .py
PythonHandler mod_python.publisher
PythonInterpPerDirectory On
.htaccess file example:
DirectoryIndex index.py
AddHandler python-program .py
PythonHandler mod_python.publisher
PythonInterpPerDirectory On
and change the relevant instance of "AllowOverride None"
in httpd.conf to "AllowOverride All" to enable .htaccess
support in Apache.
Enhancements:
- Generates multi-page image indexes
- Dynamically generates ZIP archives
Download (0.014MB)
Added: 2006-10-25 License: GPL (GNU General Public License) Price:
1094 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
mplayer-snapshot 0.3
mplayer-snapshot creates one big thumbnail from movie using mplayer. more>>
mplayer-snapshot creates one big thumbnail from movie using mplayer. Its a small program to take images from movies using mplayer as banked. I didnt test it on all video formats so suggestions are welcome.
<<less Download (0.46MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
499 downloads
phpAlbum.net 0.4.1.14
phpAlbum.net is a PHP scritp which allows you create your personal Photo Album / Gallery just in a seconds. more>>
phpAlbum.net is a PHP scritp that allows you create your personal Photo Album or Image Gallery just in a seconds.
All you need is a webspace and FTP access to this. No database is needed. After a few click-installation with phpAlubm.net Installer you are ready to use it, upload your photos create new directories /galleries.
Main features:
- Automatic thumbnails and resized photos generation
- Commenting of pictures
- Screenshots for files to be downloaded, movie, audio, exe or whatever
- Password protection for your private galleries
- Admin section for creating new directories, uploading photos (works also with safe_mode=on)
- NEW! Uploading ZIP Files with creating directory structure
- Short and long description of galleries/directories and photos
- Higly customizable layout, separated layout(HTML) code from functional one, this allows easy creation of new themes
- Caching of all generated thumbnails and resized photos
- Transparent logo and icons processing with any background color also for IE
- Access logging, with exclude strings
- And last but not least, you can help us with your suggestions to creat an usable easy to install php photo album script.
Enhancements:
- Many features were added since the 0.3.x versions, including user management, IPTC support, e-cards, an improved setup section, better speed, and better security.
<<lessAll you need is a webspace and FTP access to this. No database is needed. After a few click-installation with phpAlubm.net Installer you are ready to use it, upload your photos create new directories /galleries.
Main features:
- Automatic thumbnails and resized photos generation
- Commenting of pictures
- Screenshots for files to be downloaded, movie, audio, exe or whatever
- Password protection for your private galleries
- Admin section for creating new directories, uploading photos (works also with safe_mode=on)
- NEW! Uploading ZIP Files with creating directory structure
- Short and long description of galleries/directories and photos
- Higly customizable layout, separated layout(HTML) code from functional one, this allows easy creation of new themes
- Caching of all generated thumbnails and resized photos
- Transparent logo and icons processing with any background color also for IE
- Access logging, with exclude strings
- And last but not least, you can help us with your suggestions to creat an usable easy to install php photo album script.
Enhancements:
- Many features were added since the 0.3.x versions, including user management, IPTC support, e-cards, an improved setup section, better speed, and better security.
Download (0.31MB)
Added: 2007-06-26 License: Free for non-commercial use Price:
850 downloads
KPhoTools 0.2.1
PhoTools is an Image Album generation tool. more>>
KPhoTools is a program for KDE which helps you creating fast online photo galleries in HTML.
KPhoTools is an Image Album generation tool. It creates an HTML Album containing your Images in HTML which can be published as webpage. It can rotate/resize images, blend logos, create thumbnails, and create albums in several styles.
Main features:
- Rotating images
- Rezising images
- Create thumbnails
- Image filters (*)
- Several styles
- Logo Blending
Features of the albums are:
- Simple and clean indexing
- Nice overview of your pics
- Slideshows
- No PHP needed! (only HTML & Javascript)
- Preloading (no empty boxes on screen)
- Not present pics wont be loaded (box will be shown)
- Screenshot function
- Screenshots from desktop
- Screenshots from selected areas on your desktop
- Screenshots of single windows
<<lessKPhoTools is an Image Album generation tool. It creates an HTML Album containing your Images in HTML which can be published as webpage. It can rotate/resize images, blend logos, create thumbnails, and create albums in several styles.
Main features:
- Rotating images
- Rezising images
- Create thumbnails
- Image filters (*)
- Several styles
- Logo Blending
Features of the albums are:
- Simple and clean indexing
- Nice overview of your pics
- Slideshows
- No PHP needed! (only HTML & Javascript)
- Preloading (no empty boxes on screen)
- Not present pics wont be loaded (box will be shown)
- Screenshot function
- Screenshots from desktop
- Screenshots from selected areas on your desktop
- Screenshots of single windows
Download (0.69MB)
Added: 2005-09-14 License: GPL (GNU General Public License) Price:
1501 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 thumbnails 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