image editor
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2333
Random Image 1.0
This simple script searches a special directory for images, then displays a random one every time the page is loaded. more>>
This script is easy to set up. Simply use FTP to upload images in a special directory. They can be the same size or varying sizes. Then call the script from your SHTML web page using an "include. " Each load of the page will show a different image.
Requirements: Perl, Webserver
<<less Download (0.00KB)
Added: 2009-04-27 License: Commercial Price: $0.00
181 downloads
Image::Imlib2 1.13
Image::Imlib2 is a Perl interface to the Imlib2 image library. more>>
Image::Imlib2 is a Perl interface to the Imlib2 image library.
SYNOPSIS
use Image::Imlib2;
# create a new image
my $image = Image::Imlib2->new(200, 200);
# or load an image
$image = Image::Imlib2->load("foo.png");
# Enable the alpha channel support
$image->has_alpha(1);
# set a colour (rgba, so this is transparent orange)
$image->set_color(255, 127, 0, 127);
# draw a rectangle
$image->draw_rectangle(50, 50, 50, 50);
# draw a filled rectangle
$image->fill_rectangle(150, 50, 50, 50);
# draw a line
$image->draw_line(0, 0, 200, 50);
# set quality before saving
$image->set_quality(50);
# save out
$image->save(out.png);
# create a polygon
my $poly = Image::Imlib2::Polygon->new();
# add some points
$poly->add_point(0, 0);
$poly->add_point(100, 0);
$poly->add_point(100, 100);
$poly->add_point(0, 100);
# fill the polygon
$poly->fill();
# draw it closed on image
$image->draw_polygon($poly, 1);
# create a color range
my $cr = Image::Imlib2::ColorRange->new();
# add a color
my ($distance, $red, $green, $blue, $alpha) = (15, 200, 100, 50, 20);
$cr->add_color($distance, $red, $green, $blue, $alpha);
# draw it
my($x, $y, $width, $height, $angle) = (20, 30, 200, 200, 1);
$image->fill_color_range_rectangle($cr, $x, $y,
$width, $height, $angle);
Image::Imlib2 is a Perl port of Imlib2, a graphics library that does image file loading and saving as well as manipulation, arbitrary polygon support, etc. It does ALL of these operations FAST. It allows you to create colour images using a large number of graphics primitives, and output the images in a range of formats.
Image::Imlib2::Polygon and Image::Imlib2::ColorRange are described following Image::Imlib2 but may be referenced before their description.
Note that this is an early version of my attempt at a Perl interface to Imlib2. Currently, the API is just to test things out. Not everything is supported, but a great deal of functionality already exists. If you think the API can be tweaked to be a bit more intuitive, drop me a line!
Note that a development version of Imlib2 must be installed before installing this module.
<<lessSYNOPSIS
use Image::Imlib2;
# create a new image
my $image = Image::Imlib2->new(200, 200);
# or load an image
$image = Image::Imlib2->load("foo.png");
# Enable the alpha channel support
$image->has_alpha(1);
# set a colour (rgba, so this is transparent orange)
$image->set_color(255, 127, 0, 127);
# draw a rectangle
$image->draw_rectangle(50, 50, 50, 50);
# draw a filled rectangle
$image->fill_rectangle(150, 50, 50, 50);
# draw a line
$image->draw_line(0, 0, 200, 50);
# set quality before saving
$image->set_quality(50);
# save out
$image->save(out.png);
# create a polygon
my $poly = Image::Imlib2::Polygon->new();
# add some points
$poly->add_point(0, 0);
$poly->add_point(100, 0);
$poly->add_point(100, 100);
$poly->add_point(0, 100);
# fill the polygon
$poly->fill();
# draw it closed on image
$image->draw_polygon($poly, 1);
# create a color range
my $cr = Image::Imlib2::ColorRange->new();
# add a color
my ($distance, $red, $green, $blue, $alpha) = (15, 200, 100, 50, 20);
$cr->add_color($distance, $red, $green, $blue, $alpha);
# draw it
my($x, $y, $width, $height, $angle) = (20, 30, 200, 200, 1);
$image->fill_color_range_rectangle($cr, $x, $y,
$width, $height, $angle);
Image::Imlib2 is a Perl port of Imlib2, a graphics library that does image file loading and saving as well as manipulation, arbitrary polygon support, etc. It does ALL of these operations FAST. It allows you to create colour images using a large number of graphics primitives, and output the images in a range of formats.
Image::Imlib2::Polygon and Image::Imlib2::ColorRange are described following Image::Imlib2 but may be referenced before their description.
Note that this is an early version of my attempt at a Perl interface to Imlib2. Currently, the API is just to test things out. Not everything is supported, but a great deal of functionality already exists. If you think the API can be tweaked to be a bit more intuitive, drop me a line!
Note that a development version of Imlib2 must be installed before installing this module.
Download (0.026MB)
Added: 2007-08-14 License: Perl Artistic License Price:
805 downloads
Partition Image 0.6.6
Partition Image is a Linux/UNIX utility which saves partitions in many formats. more>>
Partition Image application is a Linux/UNIX utility which saves partitions in many formats (see below) to an image file.
The image file can be compressed in the GZIP/BZIP2 formats to save disk space, and split into multiple files to be copied on removable floppies (ZIP for example); partitions can be saved across the network since version 0.6.0.
Partition Image will only copy data from the used portions of the partition. For speed and efficiency, free blocks are not written to the image file.
This is unlike the dd command, which also copies empty blocks. Partition Image also works for large, very full partitions. For example, a full 1 GB partition can be compressed with gzip down to 400MB.
This is very useful to save partitions to an image in some cases:
- First you can restore your linux partition if there is a problem (virus, file system errors, manipulation error) . When you have a problem, you just have to restore the partition, and after 10 minutes, you have the original partition. You can write the image to a CD-R if you dont want the image to use hard-disk space.
- This utility can be used to install many identical PCs. For example, if you buy 50 PCs, with the same hardware, and you want to install the same linux systems on all 50 PCs, you will save a lot of time. Indeed, you just have to install on the first PC and create an image from it. For the 49 others, you can use the image file and Partition Images restore function.
<<lessThe image file can be compressed in the GZIP/BZIP2 formats to save disk space, and split into multiple files to be copied on removable floppies (ZIP for example); partitions can be saved across the network since version 0.6.0.
Partition Image will only copy data from the used portions of the partition. For speed and efficiency, free blocks are not written to the image file.
This is unlike the dd command, which also copies empty blocks. Partition Image also works for large, very full partitions. For example, a full 1 GB partition can be compressed with gzip down to 400MB.
This is very useful to save partitions to an image in some cases:
- First you can restore your linux partition if there is a problem (virus, file system errors, manipulation error) . When you have a problem, you just have to restore the partition, and after 10 minutes, you have the original partition. You can write the image to a CD-R if you dont want the image to use hard-disk space.
- This utility can be used to install many identical PCs. For example, if you buy 50 PCs, with the same hardware, and you want to install the same linux systems on all 50 PCs, you will save a lot of time. Indeed, you just have to install on the first PC and create an image from it. For the 49 others, you can use the image file and Partition Images restore function.
Download (0.52MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
815 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
SIR - Simple Image Resizer 1.9.3
SIR - Simple Image Resizer is a simple application for resizeing images. more>>
SIR - Simple Image Resizer is a simple application for resizeing images. SIR - Simple Image Resizer is inspired by GTPY - ImageResizer.
But I used C++/QT anda QImage class to convert the images.
SIR - Simple Image Resizer can convert into and from the following formats:
- JPEG
- PNG
- BMP
- GIF
- XPM
- PGM
- PBM
- PPM
To compile:
#qmake sir.pro
#make
Enhancements:
- Polish translation added (Thanks zoteek)
- Minor bug fixes
<<lessBut I used C++/QT anda QImage class to convert the images.
SIR - Simple Image Resizer can convert into and from the following formats:
- JPEG
- PNG
- BMP
- GIF
- XPM
- PGM
- PBM
- PPM
To compile:
#qmake sir.pro
#make
Enhancements:
- Polish translation added (Thanks zoteek)
- Minor bug fixes
Download (0.022MB)
Added: 2007-07-22 License: GPL (GNU General Public License) Price:
830 downloads
Image::BMP 1.13
Image::BMP is a bitmap parser/viewer. more>>
Image::BMP is a bitmap parser/viewer.
SYNOPSIS
use Image::BMP;
# Example one:
my $img = new Image::BMP(
file => some.bmp,
debug => 1,
);
$img->view_ascii;
# Example two:
my $img2 = new Image::BMP;
$img2->open_file(another.bmp);
my $color = $img2->xy(100,100); # Get pixel at 100,100
my ($r,$g,$b) = $img2->xy_rgb(100,200);
Image::BMP objects can parse and even ascii view bitmaps of the .BMP format. It can read most of the common forms of this format.
It can be used to:
Just get image info, dont read the whole image:
my $img = new Image::BMP(file => some.bmp);
print "Resolution: $img->{Width} x $img->{Height}n";
View images
(See C< SYNOPSIS > example one)
Read images and poke at pixels
(See C< SYNOPSIS > example two)
Parse through all pixel data
(See C< ADD_PIXEL > below)
It does not currently write bmap data, simply because I didnt have a use for that yet. Convince me and Ill add it.
Version restrictions:
4-bit RLE compression
- I havent seen an image like this yet, it wouldnt be hard to add.
bitfields compression
- I dont even know what that is..
RLE delta compression
- This isnt tested yet - I havent seen an image that uses this portion of RLE compression, so it currently does what I think is right and then prints a message asking you to send me the image/results.
<<lessSYNOPSIS
use Image::BMP;
# Example one:
my $img = new Image::BMP(
file => some.bmp,
debug => 1,
);
$img->view_ascii;
# Example two:
my $img2 = new Image::BMP;
$img2->open_file(another.bmp);
my $color = $img2->xy(100,100); # Get pixel at 100,100
my ($r,$g,$b) = $img2->xy_rgb(100,200);
Image::BMP objects can parse and even ascii view bitmaps of the .BMP format. It can read most of the common forms of this format.
It can be used to:
Just get image info, dont read the whole image:
my $img = new Image::BMP(file => some.bmp);
print "Resolution: $img->{Width} x $img->{Height}n";
View images
(See C< SYNOPSIS > example one)
Read images and poke at pixels
(See C< SYNOPSIS > example two)
Parse through all pixel data
(See C< ADD_PIXEL > below)
It does not currently write bmap data, simply because I didnt have a use for that yet. Convince me and Ill add it.
Version restrictions:
4-bit RLE compression
- I havent seen an image like this yet, it wouldnt be hard to add.
bitfields compression
- I dont even know what that is..
RLE delta compression
- This isnt tested yet - I havent seen an image that uses this portion of RLE compression, so it currently does what I think is right and then prints a message asking you to send me the image/results.
Download (0.010MB)
Added: 2007-07-20 License: Perl Artistic License Price:
828 downloads
Image Assistant 0.2.4
Image Assistant is a Firefox extension that launches an image in an external viewer. more>>
Image Assistant is a Firefox extension that launches an image in an external viewer, when user selects the context menu item provided, which is titled "Open Image..." and is located under View Image right-click menu item.
This allows for zooming, printing, and other rich functionality not available in the browser.
<<lessThis allows for zooming, printing, and other rich functionality not available in the browser.
Download (0.016MB)
Added: 2007-07-16 License: MPL (Mozilla Public License) Price:
893 downloads
Image::PBMlib 1.05
Image::PBMlib Perl module contains helper functions for PBM/PGM/PPM image file formats. more>>
Image::PBMlib Perl module contains helper functions for PBM/PGM/PPM image file formats.
SYNOPSIS
use Image::PBMlib;
... open(PPM, "< image.ppm")...
my $ref = readppmheader(*PPM);
my @pixels = readpixels_raw(*PPM, $$ref{type},
($$ref{width} * $$ref{height}) );
my @pixels = readpixels_dec(*PPM, $$ref{type},
($$ref{width} * $$ref{height}) );
my @rgb = hextriplettoraw("F00BA4");
my @rgb = dectriplettoraw("17:34:51");
my $header = makeppmheader($ref);
This is primarily a library for reading portable bitmap (PBM), portable graymap (PGM), and portable pixmap (PPM) files. These image formats are only the barest step up from raw data, and have a very simple format which is the key to be "portable". Writing out images in these formats is very easy.
Reading images in these formats is also easy, but not quite "very easy". Proper reading of the file needs to happen one byte at a time, since there is no fixed header length. Headers can also contain comments, which must be ignored. Then, once past the header, there are a total of six different ways that the data might need to be read: a raw and an ascii encoding of each image color level.
<<lessSYNOPSIS
use Image::PBMlib;
... open(PPM, "< image.ppm")...
my $ref = readppmheader(*PPM);
my @pixels = readpixels_raw(*PPM, $$ref{type},
($$ref{width} * $$ref{height}) );
my @pixels = readpixels_dec(*PPM, $$ref{type},
($$ref{width} * $$ref{height}) );
my @rgb = hextriplettoraw("F00BA4");
my @rgb = dectriplettoraw("17:34:51");
my $header = makeppmheader($ref);
This is primarily a library for reading portable bitmap (PBM), portable graymap (PGM), and portable pixmap (PPM) files. These image formats are only the barest step up from raw data, and have a very simple format which is the key to be "portable". Writing out images in these formats is very easy.
Reading images in these formats is also easy, but not quite "very easy". Proper reading of the file needs to happen one byte at a time, since there is no fixed header length. Headers can also contain comments, which must be ignored. Then, once past the header, there are a total of six different ways that the data might need to be read: a raw and an ascii encoding of each image color level.
Download (0.006MB)
Added: 2007-07-13 License: Perl Artistic License Price:
834 downloads
Mozvert image 0.0.1
Mozvert image is a Firefox extension that uses convert from ImageMagick for saving images to its preferred formats. more>>
Mozvert image is a Firefox extension that uses convert from ImageMagick for saving images to its preferred formats.
It adds the entry "Convert Image As..." after "Save Image As..." with 8 predefined formats: PNG, JPG, GIF, XPM, TIFF, BMP, PS (PostScript), XBM, ICO.
<<lessIt adds the entry "Convert Image As..." after "Save Image As..." with 8 predefined formats: PNG, JPG, GIF, XPM, TIFF, BMP, PS (PostScript), XBM, ICO.
Download (0.022MB)
Added: 2007-06-28 License: MPL (Mozilla Public License) Price:
850 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
KIWI Image System rev435
KIWI Image System provides a complete operating system image solution for Linux supported hardware platforms. more>>
KIWI Image System provides a complete operating system image solution for Linux supported hardware platforms as well as for virtualisation systems like Xen Qemu or VMware. The KIWI architecture was designed as a two level system. The first stage, based on a valid software package source, creates a so called physical extend according to the provided image description. The second stage creates from a required physical extend an operating system image. The result of the second stage is called a logical extend or short an image.
A normal installation process is starting from a given installation source and installs single pieces of software until the system is complete. During this process there may be manual user intervention required. However an operating system image represents an already completed installation encapsulated as a file and optionally includes the configuration for a specific task. Such an operating system starts working as soon as the image has been brought to a system storage device no matter if this is a volatile or non volatile storage. The process of creating an image takes place without user interaction.
This means all requirements of the encapsulated system has to be fulfilled before the image is created. According to this the so called image description tree stores all the information needed to create an image.
Main features:
- Distribution independent
- Support for virtualisation systems like Xen
- Support for deploying images over the network
- Support for VMware / Qemu images
- Support for USB-Stick systems
- Support for LiveCD/DVD systems
- Centralized image description based on XML
- Prebuild boot images for SUSE systems
- Prebuild PXE configuration usable with kiwi netboot images
- SUSE Linux on a 128MB flash card.. yes thats possible
<<lessA normal installation process is starting from a given installation source and installs single pieces of software until the system is complete. During this process there may be manual user intervention required. However an operating system image represents an already completed installation encapsulated as a file and optionally includes the configuration for a specific task. Such an operating system starts working as soon as the image has been brought to a system storage device no matter if this is a volatile or non volatile storage. The process of creating an image takes place without user interaction.
This means all requirements of the encapsulated system has to be fulfilled before the image is created. According to this the so called image description tree stores all the information needed to create an image.
Main features:
- Distribution independent
- Support for virtualisation systems like Xen
- Support for deploying images over the network
- Support for VMware / Qemu images
- Support for USB-Stick systems
- Support for LiveCD/DVD systems
- Centralized image description based on XML
- Prebuild boot images for SUSE systems
- Prebuild PXE configuration usable with kiwi netboot images
- SUSE Linux on a 128MB flash card.. yes thats possible
Download (MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
857 downloads
AJAX Image Dump System 1.1
AJAX Image Dump System is a image dump system written in PHP and Javascript using MYSQL databases, with AJAX functionality. more>>
AJAX Image Dump System or AIDS for short, is a image dump system written in PHP and Javascript using MYSQL databases, with AJAX functionality using the jquery library and the MOD_REWRITE Apache module to shorten down URL-addresses. The system also uses the XTemplate.
Enhancements:
- Fixed the bug causing the second image uploaded to fail, and send the user to the upload.php page.
- See https://sourceforge.net/tracker/index.php?func=detail&aid=1735653&group_id=198562&atid=965971 for more info regarding this bug.
- Got more of the system onto the xtemplatephp-system and added support for multiple languages, translation will begin shortly.
- Better support for adding other languages will come in one of the next releases. (See langNO.php for the current running language).
- Changed the link for the pictures after a uploading to point to the right page (removed .jpg at the end of the link).
<<lessEnhancements:
- Fixed the bug causing the second image uploaded to fail, and send the user to the upload.php page.
- See https://sourceforge.net/tracker/index.php?func=detail&aid=1735653&group_id=198562&atid=965971 for more info regarding this bug.
- Got more of the system onto the xtemplatephp-system and added support for multiple languages, translation will begin shortly.
- Better support for adding other languages will come in one of the next releases. (See langNO.php for the current running language).
- Changed the link for the pictures after a uploading to point to the right page (removed .jpg at the end of the link).
Download (0.50MB)
Added: 2007-06-21 License: GPL (GNU General Public License) Price:
855 downloads
DigikamImagePlugins 0.9.2
DigikamImagePlugins are a collection of plugins for digiKam 0.7.3 Image Editor and ShowFoto 0.2.0. more>>
DigikamImagePlugins are a collection of plugins for digiKam 0.7.3 Image Editor and ShowFoto 0.2.0 (digiKam stand alone image editor implementation).
DigikamImagePlugins add new image treatment options like color management, filters or special effects.
Main features:
Image improvements:
- icon Adjust levels : a tool to adjust the photograph histogram levels manually.
- icon Adjust curves : a tool to adjust the photograph colors using curves.
- icon Noise Reduction : a photograph noise reduction filter.
- icon Unsharp : a photograph unsharp mask filter to unblur picture without increase noise.
- icon Lens Distortion : a tool for correct lens spherical aberration on photograph.
- icon Anti Vignetting : a tool for correct vignetting on photograph.
- icon Channel Mixer : a tool to mix the photograph color channels (CVS only).
- icon White Balance : a tool to adjust white color temperature balance of photograph (CVS only).
- icon Photograph Restoration : a tool to reduce photograph artefacts using CImg library (CVS only).
- icon Photograph Inpainting : a tool to remove unwanted photograph area using CImg library (CVS only).
Transformation tools:
- icon Free Rotation : a plugin to rotate a photograph with a free angle in degrees.
- icon Shear Tool : a plugin to shear a photograph horizontally and vertically.
- icon Perpective Tool : a plugin to adjust the photograph perpective.
- icon Blowup Photograph : a plugin to blowup a photograph without less image quality using CImg library (CVS only).
Image tools:
- icon Template Superimpose : a tool for superimpose a template on photograph.
- icon Add Border : a tool for add border around a photograph.
- icon Insert Text : a tool for insert text under a photograph (CVS only).
- icon Apply Texture : a tool to apply a decorative texture to a photograph (CVS only).
Special effects:
- icon Solarize : a plugin to solarize a photograph.
- icon Oil Paint : simulate oil painting on photograph (using Pieter Voloshyn algorithm).
- icon Emboss : an effect filter to emboss photograph (using Pieter Voloshyn algorithm).
- icon Rain Drops : adding the visual effect of raindrops on photograph (using Pieter Voloshyn algorithm).
- icon Charcoal : simulate charcoal drawing on photograph.
- icon FilmGrain : simulate film grain on photograph.
- icon Infrared : simulate infrared film effect on photograph (CVS only).
- icon Blur FX : apply bluring special effects on photograph (using Pieter Voloshyn algorithms - CVS only).
- icon Distortion FX : apply distortion special effects on photograph (using Pieter Voloshyn algorithms - CVS only).
Installation:
export WANT_AUTOCONF_2_5=1
export KDEDIR=KDE_installation_dir_on_your_system
make -f Makefile.cvs
./configure --enable-debug=full
make
su
make install
<<lessDigikamImagePlugins add new image treatment options like color management, filters or special effects.
Main features:
Image improvements:
- icon Adjust levels : a tool to adjust the photograph histogram levels manually.
- icon Adjust curves : a tool to adjust the photograph colors using curves.
- icon Noise Reduction : a photograph noise reduction filter.
- icon Unsharp : a photograph unsharp mask filter to unblur picture without increase noise.
- icon Lens Distortion : a tool for correct lens spherical aberration on photograph.
- icon Anti Vignetting : a tool for correct vignetting on photograph.
- icon Channel Mixer : a tool to mix the photograph color channels (CVS only).
- icon White Balance : a tool to adjust white color temperature balance of photograph (CVS only).
- icon Photograph Restoration : a tool to reduce photograph artefacts using CImg library (CVS only).
- icon Photograph Inpainting : a tool to remove unwanted photograph area using CImg library (CVS only).
Transformation tools:
- icon Free Rotation : a plugin to rotate a photograph with a free angle in degrees.
- icon Shear Tool : a plugin to shear a photograph horizontally and vertically.
- icon Perpective Tool : a plugin to adjust the photograph perpective.
- icon Blowup Photograph : a plugin to blowup a photograph without less image quality using CImg library (CVS only).
Image tools:
- icon Template Superimpose : a tool for superimpose a template on photograph.
- icon Add Border : a tool for add border around a photograph.
- icon Insert Text : a tool for insert text under a photograph (CVS only).
- icon Apply Texture : a tool to apply a decorative texture to a photograph (CVS only).
Special effects:
- icon Solarize : a plugin to solarize a photograph.
- icon Oil Paint : simulate oil painting on photograph (using Pieter Voloshyn algorithm).
- icon Emboss : an effect filter to emboss photograph (using Pieter Voloshyn algorithm).
- icon Rain Drops : adding the visual effect of raindrops on photograph (using Pieter Voloshyn algorithm).
- icon Charcoal : simulate charcoal drawing on photograph.
- icon FilmGrain : simulate film grain on photograph.
- icon Infrared : simulate infrared film effect on photograph (CVS only).
- icon Blur FX : apply bluring special effects on photograph (using Pieter Voloshyn algorithms - CVS only).
- icon Distortion FX : apply distortion special effects on photograph (using Pieter Voloshyn algorithms - CVS only).
Installation:
export WANT_AUTOCONF_2_5=1
export KDEDIR=KDE_installation_dir_on_your_system
make -f Makefile.cvs
./configure --enable-debug=full
make
su
make install
Download (3.5MB)
Added: 2007-06-21 License: GPL (GNU General Public License) Price:
860 downloads
Show the Image 0.4
Show the Image is a Firefox extension that shows the largest image in the page. more>>
Show the Image is a Firefox extension that shows the largest image in the page.
A very simple extension that can be used to show the largest image on the page - what you want to look at - without all the banners and layout around it.
After installing the extension you can add a new button to the toolbar by right-clicking on the toolbar, clicking customize and dragging the icon into place.
Left-clicking the button (or pressing Control+Q) will take you to the largest image in the current page, left-clicking (or pressing Control+Q) again will take you back again.
Middle-clicking the button (or pressing Control+Shift+Q) will open the largest image in the current page in a new tab, middle-clicking (or pressing Control+Shift+Q) while looking at the image on its own will close the tab if more than one is open.
Right clicking the button will go through all the tabs to the right of the current one, displaying the largest image in each.
Right clicking on a link will give the option to "Show Image following this link" which will open the largest image found at that link in a new tab.
<<lessA very simple extension that can be used to show the largest image on the page - what you want to look at - without all the banners and layout around it.
After installing the extension you can add a new button to the toolbar by right-clicking on the toolbar, clicking customize and dragging the icon into place.
Left-clicking the button (or pressing Control+Q) will take you to the largest image in the current page, left-clicking (or pressing Control+Q) again will take you back again.
Middle-clicking the button (or pressing Control+Shift+Q) will open the largest image in the current page in a new tab, middle-clicking (or pressing Control+Shift+Q) while looking at the image on its own will close the tab if more than one is open.
Right clicking the button will go through all the tabs to the right of the current one, displaying the largest image in each.
Right clicking on a link will give the option to "Show Image following this link" which will open the largest image found at that link in a new tab.
Download (0.010MB)
Added: 2007-06-20 License: MPL (Mozilla Public License) Price:
887 downloads
GNU Paint 2.0.3.1
GNU Paint (gpaint) is a simple, easy-to-use paint program for GNOME, the GNU Desktop. more>>
GNU Paint (gpaint) is a simple, easy-to-use paint program for GNOME, the GNU Desktop. Gpaint starts as a port of xpaint and takes advantages of features unique to the GNOME environment. The project is licensed under the GNU GPL, version 2 or later.
Main features:
- Drawing tools--ovals, freehand, polygon, text, with fill or shallow for polygons and closed freehand.
- Cut and paste by selecting irregular regions or polygons.
- Print support using gnome-print (still flaky, will be improved upon next release)
- Modern, ease-to-use user interface with tool and color palettes
- Editing multiple image at the same time without runnng multiple instance of the image editor
- All image processing features present in xpaint
Enhancements:
- pt_BR and de translations were added.
- A rectangular selection tool was added.
- Small bugs were fixed.
<<lessMain features:
- Drawing tools--ovals, freehand, polygon, text, with fill or shallow for polygons and closed freehand.
- Cut and paste by selecting irregular regions or polygons.
- Print support using gnome-print (still flaky, will be improved upon next release)
- Modern, ease-to-use user interface with tool and color palettes
- Editing multiple image at the same time without runnng multiple instance of the image editor
- All image processing features present in xpaint
Enhancements:
- pt_BR and de translations were added.
- A rectangular selection tool was added.
- Small bugs were fixed.
Download (0.36MB)
Added: 2007-06-14 License: GPL (GNU General Public License) Price:
865 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 image editor 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