cd image editors
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4375
Semi-Batched-Image-Editor 0.9
Semi-Batched-Image-Editor program is an image editor for Linux. more>>
Semi-Batched-Image-Editor program is an image editor for Linux.
The problem: Got a huge amount of scanned pictures (from your digital camera, or as Picture-CD from your favorite lab)? Want to rotate some of them to the right orientation? Select a good detail? Scale to a given output format? Want to do this with as less as possible mouseclicks?
The solution: SeBIE - the Semi-Batched-Image-Editor.
Main features:
- Input filename selection via regular expressions.
- Create output filename via regular expression and substitution.
- Select image details with a given proportion.
- Scale to a given output format when saving.
- Apply some color correction (at the moment only gamma curve correction is possible).
Why Semi-Batched? Because SeBIE is not fully batch processing. A rest of user interaction is still needed (and wanted).
SeBIE is written in C using the gdk/gtk (glib-2.0.7/gtk+-2.0.9) toolkit.
Installation:
Get the source distribution from the download page and unpack:
tar -xvzf sebie-0.9.tar.gz
Change to the sebie source directory:
cd sebie-0.9
Run the configure script:
./configure
Build the executable:
make all
And install it as root:
make install
Start the application using the command sebie....
Enhancements:
- Add events delete_event and destroy to main window.
- Handling resizable drawing area.
<<lessThe problem: Got a huge amount of scanned pictures (from your digital camera, or as Picture-CD from your favorite lab)? Want to rotate some of them to the right orientation? Select a good detail? Scale to a given output format? Want to do this with as less as possible mouseclicks?
The solution: SeBIE - the Semi-Batched-Image-Editor.
Main features:
- Input filename selection via regular expressions.
- Create output filename via regular expression and substitution.
- Select image details with a given proportion.
- Scale to a given output format when saving.
- Apply some color correction (at the moment only gamma curve correction is possible).
Why Semi-Batched? Because SeBIE is not fully batch processing. A rest of user interaction is still needed (and wanted).
SeBIE is written in C using the gdk/gtk (glib-2.0.7/gtk+-2.0.9) toolkit.
Installation:
Get the source distribution from the download page and unpack:
tar -xvzf sebie-0.9.tar.gz
Change to the sebie source directory:
cd sebie-0.9
Run the configure script:
./configure
Build the executable:
make all
And install it as root:
make install
Start the application using the command sebie....
Enhancements:
- Add events delete_event and destroy to main window.
- Handling resizable drawing area.
Download (0.087MB)
Added: 2006-02-06 License: GPL (GNU General Public License) Price:
1358 downloads
create Image 1.0
create Image is an amarok script that can create an image of the current playlist and save the files to an iso image. more>>
create Image is an amarok script that can create an image of the current playlist and save the files to an iso image.
The iso image is found in the respective home folders.
<<lessThe iso image is found in the respective home folders.
Download (0.010MB)
Added: 2007-01-11 License: GPL (GNU General Public License) Price:
1023 downloads
Image Create for PHP 1.1.1
Image Create for PHP is a project which allows you to render text into an image on the fly. more>>
Image Create for PHP is a project which allows you to render text into an image on the fly.
Image Create for PHP is a stand-alone script that allows you to create dynamic text images easily.
<<lessImage Create for PHP is a stand-alone script that allows you to create dynamic text images easily.
Download (0.005MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
966 downloads
Resize Image 1
Resize Image is a service menu which adds the ability to resize an image to a new size. more>>
Resize Image is a service menu which adds the ability to resize an image to a new size.
Requires ImageMagick, KDialog and bash.
<<lessRequires ImageMagick, KDialog and bash.
Download (MB)
Added: 2006-10-24 License: LGPL (GNU Lesser General Public License) Price:
1102 downloads
Edit by Text Editors 0.1
Edit by Text Editors allows you to open a file with Kate, Kwrite, Kedit, Khexedit by a KDE service menu. more>>
Edit by Text Editors allows you to open a file with Kate, Kwrite, Kedit, Khexedit by a KDE service menu.
To install the service menu you must copy editby.desktop in ~/.kde/share/apps/konqueror/servicemenus
<<lessTo install the service menu you must copy editby.desktop in ~/.kde/share/apps/konqueror/servicemenus
Download (MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
814 downloads
Image Download 1.0.2
Image Download allows you to download All the Picuture In the Page. more>>
Image Download allows you to download All the Picuture In the Page.
Filter by width ,height, type.
Auto Create Sub Folder ,auto rename
Auto log Download Infomation.
<<lessFilter by width ,height, type.
Auto Create Sub Folder ,auto rename
Auto log Download Infomation.
Download (0.009MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
1000 downloads
Imager::Tutorial 0.54
Imager::Tutorial is an introduction to Imager. more>>
Imager::Tutorial is an introduction to Imager.
Before you start
If you have the necessary knowledge, install the image format libraries you want Imager image file support for, and Imager itself, otherwise arrange to have it done.
You will also want some sort of image viewer tool, whether an image editor like Photoshop or the GIMP, or a web browser.
Hello Boxes! - A Simple Start
As with any perl program its useful to start with a #! line, and to enable strict mode:
#!/usr/bin/perl -w
# you might to use warnings; instead of the -w above
use strict;
These lines will be omitted in further examples.
As with any module, you need to load it:
use Imager;
Now create a image to draw on:
my $image = Imager->new(xsize => 100, ysize => 100);
and draw a couple of filled rectangles on it:
$image->box(xmin => 0, ymin => 0, xmax => 99, ymax => 99,
filled => 1, color => blue);
$image->box(xmin => 20, ymin => 20, xmax => 79, ymax => 79,
filled => 1, color => green);
Since the first box fills the whole image, it can be simplified to:
$image->box(filled => 1, color => blue);
and save it to a file:
$image->write(file=>tutorial1.ppm)
or die Cannot save tutorial1.ppm: , $image->errstr;
So our completed program is:
use Imager;
my $image = Imager->new(xsize => 100, ysize => 100);
$image->box(filled => 1, color => blue);
$image->box(xmin => 20, ymin => 20, xmax => 79, ymax => 79,
filled => 1, color => green);
$image->write(file=>tutorial1.ppm)
or die Cannot save tutorial1.ppm: , $image->errstr;
<<lessBefore you start
If you have the necessary knowledge, install the image format libraries you want Imager image file support for, and Imager itself, otherwise arrange to have it done.
You will also want some sort of image viewer tool, whether an image editor like Photoshop or the GIMP, or a web browser.
Hello Boxes! - A Simple Start
As with any perl program its useful to start with a #! line, and to enable strict mode:
#!/usr/bin/perl -w
# you might to use warnings; instead of the -w above
use strict;
These lines will be omitted in further examples.
As with any module, you need to load it:
use Imager;
Now create a image to draw on:
my $image = Imager->new(xsize => 100, ysize => 100);
and draw a couple of filled rectangles on it:
$image->box(xmin => 0, ymin => 0, xmax => 99, ymax => 99,
filled => 1, color => blue);
$image->box(xmin => 20, ymin => 20, xmax => 79, ymax => 79,
filled => 1, color => green);
Since the first box fills the whole image, it can be simplified to:
$image->box(filled => 1, color => blue);
and save it to a file:
$image->write(file=>tutorial1.ppm)
or die Cannot save tutorial1.ppm: , $image->errstr;
So our completed program is:
use Imager;
my $image = Imager->new(xsize => 100, ysize => 100);
$image->box(filled => 1, color => blue);
$image->box(xmin => 20, ymin => 20, xmax => 79, ymax => 79,
filled => 1, color => green);
$image->write(file=>tutorial1.ppm)
or die Cannot save tutorial1.ppm: , $image->errstr;
Download (0.83MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1094 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
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
Image::ExifTool::QuickTime 6.42
Image::ExifTool::QuickTime is a Perl module to read QuickTime and MP4 meta information. more>>
Image::ExifTool::QuickTime is a Perl module to read QuickTime and MP4 meta information.
SYNOPSIS
This module is used by Image::ExifTool
This module contains routines required by Image::ExifTool to extract information from QuickTime and MP4 video files.
<<lessSYNOPSIS
This module is used by Image::ExifTool
This module contains routines required by Image::ExifTool to extract information from QuickTime and MP4 video files.
Download (1.0MB)
Added: 2006-11-16 License: Perl Artistic License Price:
1082 downloads
Mount ISO image 0.9.1
Mount ISO Image is an advanced script which allows to perform multiple operations with ISO, NRG, UDF (DVD), CUE/BIN images. more>>
Mount ISO Image is an advanced script which allows to perform multiple operations with ISO, NRG (Nero Burning ROM), UDF (DVD), CUE/BIN, CCD/IMG/SUB (CloneCD), XDVDFS (XBOX) images.
Mount/unmount operations can be performed in two different ways: using kdesu or sudo. During the installation youll be offered to choose a variant to use.
Note: If you prefer to use sudo, you should first choose to "Setup sudo config" in installation menu.
Usage:
ISO9660 (CD) and UDF (DVD) images
Mount:
Right-click an ".ISO" file and choose "Actions -> Manage ISO -> Mount Image". Image file will be mounted to folder on Desktop, the corresponding folder will be opened and raised.
Unmount:
Right-click an ".ISO" file and choose "Actions -> Manage ISO -> Unmount Image". The corresponding folder will be removed from the desktop automagically.
Calculate MD5 sum:
Right-click an ".ISO" file, choose "Actions -> Manage ISO -> Calculate MD5 sum" and wait for completion - it may take several minutes for a standard 650 Mb image on a slow machine.
Create ISO/UDF image from directory:
Right-click a folder that you wish an ISO or UDF image to be created from and choose "Actions -> Manage ISO -> Create ISO (or UDF) image". Image will be created either in parent directory of this folder (if user is allowed to write there) or on the Desktop.
Warning: Check if you have enough free space on target partition before creating an ISO!
Create ISO/UDF image from CD/DVD drive:
Right-click any suitable directory (resulting file will be stored there), select "Actions -> Manage ISO -> Create ISO-image from CD-ROM" and select the name of ISO image in the filename selection dialog. If it suggests you put the resulting image on the Desktop instead of the selected directory, it means that current user has no permission to write in this directory.
Note: This feature requires a working CD/DVD drive
Warning: Check if you have enough free space on target partition before creating an ISO!
NRG (Nero Burning ROM) images
Mount:
Right-click an ".NRG" file and choose "Actions -> Manage NRG -> Mount Image". Image file will be mounted to folder on Desktop, the corresponding folder will be opened and raised.
Unmount:
Right-click an ".NRG" file and choose "Actions -> Manage NRG -> Unmount Image". The corresponding folder will be removed from the desktop automagically. You can also right-click this very folder on your to unmount.
Calculate MD5 sum:
Right-click an ".NRG" file, choose "Actions -> Manage NRG -> Calculate MD5 sum" and wait for completion - it may take several minutes for a standard 650 Mb image on a slow machine.
Convert NRG image to ISO
Right-click an ".NRG" file and choose "Actions -> Manage NRG -> Convert to ISO" to convert the image to a standard ISO.
Warning: Check if you have enough free space before converting!
CUE/BIN images
Mount:
Right-click a ".CUE" file and choose "Actions -> Manage CUE/BIN -> Mount Image". Image file will be mounted to folder on Desktop, the corresponding folder will be opened and raised.
Note: This feature requires the use of cdemu utility, available here: http://cdemu.sourceforge.net
If it is not installed on your system, you will need to compile it from source or find a suitable package.
Unmount:
Right-click a ".CUE" file and choose "Actions -> Manage CUE/BIN -> Unmount Image". The corresponding folder will be removed from the desktop automagically. You can also right-click this very folder on your to unmount.
Convert CUE/BIN image to ISO:
Right-click a ".CUE" file and choose "Actions -> Manage CUE/BIN -> Convert to ISO" to convert the image to a standard ISO.
Note: This feature requires bchunk utility, available here: http://he.fi/bchunk
If it is not installed on your system, you will need to compile it from source or find a suitable package.
Warning: Check if you have enough free space before converting!
CCD/IMG/SUB (CloneCD) images
Convert CloneCD image to ISO:
Right-click a ".CCD" file and choose "Actions -> Manage CloneCD -> Convert to ISO" to convert the image to a standard ISO.
Note: This feature requires ccd2iso utility, available here: http://sourceforge.net/projects/ccd2iso
If it is not installed on your system, you will need to compile it from source or find a suitable package.
Warning: Check if you have enough free space before converting!
XDVDFS (XBOX) images
Create XDVDFS image from directory:
Right-click a folder that you wish an XDVDFS image to be created from and choose "Actions -> Manage ISO -> Create XDVDFS image". Image will be created either in parent directory of this folder (if user is allowed to write there) or on the Desktop.
Note: This feature requires extract-xiso utility, available here
Warning: Check if you have enough free space on target partition before creating an ISO!
Installation:
tar -jxf mount-iso-image-0.9.tar.bz2
cd mount-iso-image-0.9
./install.sh
Please follow installer instructions
Translations:
- Czech (by Jozef Riha)
- Danish (by Kalna and BK)
- French (by MrYouP)
- German (by Xenonite and seraphyn)
- Hungarian (by Marcel Hilzinger and Vince Pinter)
- Italian (by marcosegato)
- Polish (by Lukasz Purgal)
- Portuguese/brazilean (by Groo and Dherik)
- Romanian (by Spoiala Cristian)
- Russian (by Jinjiru)
- Slovak (by Jozef Riha)
- Spanish (by mrthc)
<<lessMount/unmount operations can be performed in two different ways: using kdesu or sudo. During the installation youll be offered to choose a variant to use.
Note: If you prefer to use sudo, you should first choose to "Setup sudo config" in installation menu.
Usage:
ISO9660 (CD) and UDF (DVD) images
Mount:
Right-click an ".ISO" file and choose "Actions -> Manage ISO -> Mount Image". Image file will be mounted to folder on Desktop, the corresponding folder will be opened and raised.
Unmount:
Right-click an ".ISO" file and choose "Actions -> Manage ISO -> Unmount Image". The corresponding folder will be removed from the desktop automagically.
Calculate MD5 sum:
Right-click an ".ISO" file, choose "Actions -> Manage ISO -> Calculate MD5 sum" and wait for completion - it may take several minutes for a standard 650 Mb image on a slow machine.
Create ISO/UDF image from directory:
Right-click a folder that you wish an ISO or UDF image to be created from and choose "Actions -> Manage ISO -> Create ISO (or UDF) image". Image will be created either in parent directory of this folder (if user is allowed to write there) or on the Desktop.
Warning: Check if you have enough free space on target partition before creating an ISO!
Create ISO/UDF image from CD/DVD drive:
Right-click any suitable directory (resulting file will be stored there), select "Actions -> Manage ISO -> Create ISO-image from CD-ROM" and select the name of ISO image in the filename selection dialog. If it suggests you put the resulting image on the Desktop instead of the selected directory, it means that current user has no permission to write in this directory.
Note: This feature requires a working CD/DVD drive
Warning: Check if you have enough free space on target partition before creating an ISO!
NRG (Nero Burning ROM) images
Mount:
Right-click an ".NRG" file and choose "Actions -> Manage NRG -> Mount Image". Image file will be mounted to folder on Desktop, the corresponding folder will be opened and raised.
Unmount:
Right-click an ".NRG" file and choose "Actions -> Manage NRG -> Unmount Image". The corresponding folder will be removed from the desktop automagically. You can also right-click this very folder on your to unmount.
Calculate MD5 sum:
Right-click an ".NRG" file, choose "Actions -> Manage NRG -> Calculate MD5 sum" and wait for completion - it may take several minutes for a standard 650 Mb image on a slow machine.
Convert NRG image to ISO
Right-click an ".NRG" file and choose "Actions -> Manage NRG -> Convert to ISO" to convert the image to a standard ISO.
Warning: Check if you have enough free space before converting!
CUE/BIN images
Mount:
Right-click a ".CUE" file and choose "Actions -> Manage CUE/BIN -> Mount Image". Image file will be mounted to folder on Desktop, the corresponding folder will be opened and raised.
Note: This feature requires the use of cdemu utility, available here: http://cdemu.sourceforge.net
If it is not installed on your system, you will need to compile it from source or find a suitable package.
Unmount:
Right-click a ".CUE" file and choose "Actions -> Manage CUE/BIN -> Unmount Image". The corresponding folder will be removed from the desktop automagically. You can also right-click this very folder on your to unmount.
Convert CUE/BIN image to ISO:
Right-click a ".CUE" file and choose "Actions -> Manage CUE/BIN -> Convert to ISO" to convert the image to a standard ISO.
Note: This feature requires bchunk utility, available here: http://he.fi/bchunk
If it is not installed on your system, you will need to compile it from source or find a suitable package.
Warning: Check if you have enough free space before converting!
CCD/IMG/SUB (CloneCD) images
Convert CloneCD image to ISO:
Right-click a ".CCD" file and choose "Actions -> Manage CloneCD -> Convert to ISO" to convert the image to a standard ISO.
Note: This feature requires ccd2iso utility, available here: http://sourceforge.net/projects/ccd2iso
If it is not installed on your system, you will need to compile it from source or find a suitable package.
Warning: Check if you have enough free space before converting!
XDVDFS (XBOX) images
Create XDVDFS image from directory:
Right-click a folder that you wish an XDVDFS image to be created from and choose "Actions -> Manage ISO -> Create XDVDFS image". Image will be created either in parent directory of this folder (if user is allowed to write there) or on the Desktop.
Note: This feature requires extract-xiso utility, available here
Warning: Check if you have enough free space on target partition before creating an ISO!
Installation:
tar -jxf mount-iso-image-0.9.tar.bz2
cd mount-iso-image-0.9
./install.sh
Please follow installer instructions
Translations:
- Czech (by Jozef Riha)
- Danish (by Kalna and BK)
- French (by MrYouP)
- German (by Xenonite and seraphyn)
- Hungarian (by Marcel Hilzinger and Vince Pinter)
- Italian (by marcosegato)
- Polish (by Lukasz Purgal)
- Portuguese/brazilean (by Groo and Dherik)
- Romanian (by Spoiala Cristian)
- Russian (by Jinjiru)
- Slovak (by Jozef Riha)
- Spanish (by mrthc)
Download (0.011MB)
Added: 2005-10-26 License: GPL (GNU General Public License) Price:
832 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 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
GNU VCDImager/VCDRip 0.7.23
GNU VCDImager/VCDRip is a VCD (VideoCD) BIN/CUE CD image creation and ripping tool. more>>
GNU VCDImager is a program for making Video CD (and Super Video CD, a.k.a. SVCD) images out of MPEG movie files.
The images it creates are ready to use with programs which understand BIN/CUE images, such as cdrdao. GNU VCDRip allows for reversing the process, ripping mpeg tracks from (Super) Video CDs.
Main features:
- Free software available under the GNU Public License
- Support for Video CD 1.1 and 2.0 disc formats
- Support for the Super Video CD 1.0 disc format
- Full PBC (playback control) support (play lists, selection lists and end lists)
- Support for segment play items
- Automatic padding of MPEG streams on the fly
- Support for 99-minute (out-of-specification) CD-R media
- Extraction of Video CDs into files (incl. the PBC information)
- Runs on all major UNIX flavors and on Win32
- Use of XML for the description of Video CDs
<<lessThe images it creates are ready to use with programs which understand BIN/CUE images, such as cdrdao. GNU VCDRip allows for reversing the process, ripping mpeg tracks from (Super) Video CDs.
Main features:
- Free software available under the GNU Public License
- Support for Video CD 1.1 and 2.0 disc formats
- Support for the Super Video CD 1.0 disc format
- Full PBC (playback control) support (play lists, selection lists and end lists)
- Support for segment play items
- Automatic padding of MPEG streams on the fly
- Support for 99-minute (out-of-specification) CD-R media
- Extraction of Video CDs into files (incl. the PBC information)
- Runs on all major UNIX flavors and on Win32
- Use of XML for the description of Video CDs
Download (0.96MB)
Added: 2005-07-12 License: GPL (GNU General Public License) Price:
1577 downloads
KnoppiXMAME 1.3 beta 19
KnoppiXMAME is a bootable CD/DVD image with hardware automatic probing and configuration for playing MAME games. more>>
KnoppiXMAME is a bootable CD/DVD image with hardware automatic probing and configuration for playing MAME games.
No games are included, but they can be added to the ISO image, as well as new versions of X-MAME, gxmame, and the Linux kernel.
<<lessNo games are included, but they can be added to the ISO image, as well as new versions of X-MAME, gxmame, and the Linux kernel.
Download (116MB)
Added: 2005-05-19 License: GPL (GNU General Public License) Price:
1621 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 cd image editors 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