Main > Free Download Search >

Free the gimp 2.6.6 software for linux

the gimp 2.6.6

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 443
The Gimp 2.6.6

The Gimp 2.6.6


The Gimp is a freely distributed yet brilliant piece of software for such tasks as photo retouching, image composition and image authoring. more>> <<less
Added: 2009-03-17 License: GPL Price: FREE
99838 downloads
 
Other version of The Gimp
The Gimp 2.4.0 RC1The GIMP is the GNU Image Manipulation Program. It is a freely distributed piece of software for ... a convenient frame-as-layer format - MNG support - Frame Navigator (in GAP, the GIMP Animation
License:GPL (GNU General Public License)
Download (16MB)
100334 downloads
Added: 2007-08-16
License:GPL (GNU General Public License)
Download (17.7MB)
100346 downloads
Added: 2007-07-13
Formulas Rendering Plug-In for the Gimp 2 0.9.7

Formulas Rendering Plug-In for the Gimp 2 0.9.7


Formulas Rendering Plug-In for the Gimp 2 is a simple plugin that allows you to change the values of each color channel of layer more>>
Formulas Rendering Plug-In for the Gimp 2 is a simple plugin that allows you to change the values of each color channel of each pixel of a layer by using mathematical expressions. It is able to handle RGB* and Gray* images.

Available operators are: +, -, *, /, ^, and %. There are many functions available, such as sin, cos, sqrt, abs, min, max. A few constants are provided (pi, e, j), and a lot of pre-defined variables are usable (w for images width, h for images height, x and y for cartesian coordinates in the image, etc.).

<<less
Download (0.16MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1182 downloads
eLearniX 2.6.6

eLearniX 2.6.6


eLearniX is a bootable CD desktop environment to help people learn and use Linux. more>>
eLearniX project is a bootable CD desktop environment to help people learn and use Linux.

It features the latest 2.6 Linux kernel, GNOME 2.4, lots of applications, and an install script to install to a dedicated hard drive or a 256MB+ Compact Flash card.
<<less
Download (268MB)
Added: 2006-01-14 License: GPL (GNU General Public License) Price:
1382 downloads
JGimp 0.8.5

JGimp 0.8.5


JGimp is a framework to write 100% Java-based plug-ins and extensions for the GIMP and Film GIMP. more>>
JGimp is a framework to write 100% Java-based plug-ins and extensions for the GIMP and Film GIMP.
Main features:
- lug-ins for the GIMP can be written in Java and use Javas existing set of widgets for the plug-ins user interface. One of the included sample plug-ins (see figure to the right) displays a plug-in dialog box using Swing widgets, complete with a real-time preview
- Java applications can use the GIMP as an image manipulation "engine," essentially embedding the GIMPs capabilities in the Java application. Possible uses of this capability include:
- Creating new graphics applications in Java using the GIMP to perform the underlying image manipulation
- Server-client architectures where JGimp is used to wrap a server around the GIMPs capabilities. Client applications, such as applets or web-based applications can access the server across the network
Two sample plug-ins illustrate how to use this architecture to write plug-ins, ImageDividerPlugIn and DesaturatePlugIn. These plug-ins demonstrate all the aspects necessary to write a Java-based plug-in: how it is installed in the GIMP, how to make PDB calls, and how to read and write pixels from images in the GIMP.
<<less
Download (0.44MB)
Added: 2005-09-20 License: GPL (GNU General Public License) Price:
1496 downloads
gimpShop 2.2.11

gimpShop 2.2.11


gimpShop is a fork of GIMP which changes the layout of the user interface to resemble Adobe Photoshop. more>>
gimpShop project is a fork of GIMP which changes the layout of the user interface to resemble Adobe Photoshop.
Version 2.2 is an update on GIMP 2.0. GIMP 2.2 is fully backward compatible to GIMP 2.0. Plug-ins and scripts written for GIMP 2.0 will continue to work and dont need to be changed nor recompiled to be used with GIMP 2.2. We do however hope that plug-in authors will update their plug-ins for GIMP 2.2 and adapt the GUI changes we did with this version.
GIMP 2.2 replaces GIMP 2.0. It is advised that you uninstall GIMP 2.0 before installing GIMP 2.2. If you want to keep GIMP 2.0 installed in parallel to GIMP 2.2, you have to choose a separate prefix which is not in your default library search path.
This code has already seen quite some testing but a lot has changed since version GIMP 2.0 and we could very well have introduced new bugs. If you find any , make sure you report them at bugzilla.gnome.org (after checking that it isnt reported already).
The GIMP 2.2 API is guaranteed to be backward compatible (source and binary) with the GIMP 2.0 API. If you find that your 2.0 plug-in break when used with the GIMP 2.2 libraries, or if you cannot compile a GIMP 2.0 plug-in against the GIMP 2.2 header files, please report that as a
bug.
Enhancements:
- Keeping up with GIMP releases.
<<less
Download (13.4MB)
Added: 2006-08-11 License: GPL (GNU General Public License) Price:
3904 downloads
gimphp 0.2.0

gimphp 0.2.0


gimphp is a PHP Class library to write Gimp scripts directly in PHP. more>>
gimphp is a PHP Class library to write Gimp scripts directly in PHP.

To realize the Cultural Association Milug cards it was created a web-application that is based on PHP to use Gimp as a graphic engine. It work with gimuse server to produce cards.

<<less
Download (1.8MB)
Added: 2006-05-05 License: GPL (GNU General Public License) Price:
1267 downloads
GIMP# 0.12

GIMP# 0.12


GIMP# is an API wrapper around GIMP, written in C#. more>>
GIMP# is an API wrapper around GIMP, written in C#. However, its not just a wrapper. GIMP# project also adds a thin layer which adds C# specific features, like iterating through a collection. An example of this is an iteration through the guides of an image. In C# this looks like:

foreach (Guide guide in image.Guides)
{
// Do something
}

In C this would have been:

gint32 guide_ID = 0:
while ((guide_ID = gimp_image_find_next_guide(image_ID, guide_ID)) != 0)
{
// Do something
}

GIMP# also offers a base plug-in class which does the difficult stuff for you. Implementing a new plug-in is just a matter of overriding a few virtual methods. See the samples directory for examples of how to do this.

Gimp# fills the niche between scripting languages (easy to write, slow) and C (harder to write, fast). If you need a quick and dirty plug-in where speed doesnt matter that much, write it in any of the scripting languages that come with GIMP (Scheme, Perl, etc.). Scripting languages are very well fitted for calling existing functionality, shortening manual tasks.

You probably dont want pixel manipulation in Scheme. In C, on the other hand, it takes a lot more time to create a plug-in for several reasons: building the GUI is time consuming. Secondly, pixel handling is not completely trivial. You have to know how to traverse through the tiles of an image, etc. Typically the actual algorithm is only a very small (5 - 20 %) part of the total code. Gimp# is not as fast as C, but much faster than a scripting language. Building a decent GUI is much easier than in C.

<<less
Download (0.77MB)
Added: 2007-05-03 License: LGPL (GNU Lesser General Public License) Price:
904 downloads
ingimp 2.2.17.20070716

ingimp 2.2.17.20070716


ingimp is a version of the GNU Image Manipulation Program that has been instrumented to collect real-time usability data. more>>
ingimp is a version of the GNU Image Manipulation Program that has been instrumented to collect real-time usability data. The project is not a plug-in but a complete, standalone version of the GIMP.
All usability data is automatically transmitted to this website for anyone to download and analyze. We also provide our own analyses (see below). ingimp is part of human-computer interaction (HCI) research at the University of Waterloo investigating new forms of sustainable open usability.
Not only do we provide numerical summarizations of overall ingimp usage, we also provide personalized mirrors of your own personal, usage. Each ingimp user has an online persona that grows to reflect how they use ingimp. For example, if you are an artist who makes heavy use of the pencil tool, your persona will be seen clutching a pencil. Just use ingimp as you would the normal version of the GIMP and use the "Website + Stats" button at start-up to view your own persona along with a summary of your own usage of ingimp.
Enhancements:
- This release is up to date with GIMP 2.2.17.
<<less
Download (18.7MB)
Added: 2007-07-18 License: GPL (GNU General Public License) Price:
828 downloads
Glame 2.0.1

Glame 2.0.1


Glame is a multi-track wave-editor with synthesis capabilities. more>>
Glame is a multi-track wave-editor with synthesis capabilities.

Glame is targeted to be the GIMP for audio processing. Glame supports non destructive multitrack editing, recording and mixing; realtime effects using native or LADSPA plugins; OSS, ALSA or SGI audio and WAV, Mp3 and Ogg file formats.

<<less
Download (1.6MB)
Added: 2005-07-19 License: GPL (GNU General Public License) Price:
1559 downloads
Gimp::Fu 1.211

Gimp::Fu 1.211


Gimp::Fu is a easy to use framework for Gimp scripts. more>>
Gimp::Fu is a "easy to use" framework for Gimp scripts.

SYNOPSIS

use Gimp;
use Gimp::Fu;

(this module uses Gtk, so make sure its correctly installed)

Currently, there are only three functions in this module. This fully suffices to provide a professional interface and the ability to run this script from within the Gimp and standalone from the commandline.

In general, a Gimp::Fu script looks like this:

#!/path/to/your/perl

use Gimp;
use Gimp::Fu;

register , sub {
your code;
}

exit main;

(This distribution comes with example scripts. One is examples/example-fu.pl, which is small Gimp::Fu-script you can take as starting point for your experiments)

<<less
Download (0.26MB)
Added: 2006-07-13 License: Perl Artistic License Price:
1200 downloads
Gimp::Lib 1.211

Gimp::Lib 1.211


Gimp::Lib is an interface to libgimp (as opposed to Gimp::Net). more>>
Gimp::Lib is an interface to libgimp (as opposed to Gimp::Net).

SYNOPSIS

use Gimp; # internal use only

This is the package that interfaces to The Gimp via the libgimp interface, i.e. the normal interface to use with the Gimp. You dont normally use this module directly, look at the documentation for the package "Gimp".

<<less
Download (0.26MB)
Added: 2006-10-26 License: Perl Artistic License Price:
1096 downloads
Gimp::UI 1.211

Gimp::UI 1.211


Gimp::UI is a simulation of libgimpui, and more! more>>
Gimp::UI is a "simulation of libgimpui", and more!

Due to the braindamaged (read: "unusable") libgimpui API, I had to reimplement all of it in perl.

$option_menu = new Gimp::UI::ImageMenu
$option_menu = new Gimp::UI::LayerMenu
$option_menu = new Gimp::UI::ChannelMenu
$option_menu = new Gimp::UI::DrawableMenu (constraint_func, active_element, var);

$button = new Gimp::UI::PatternSelect;
$button = new Gimp::UI::BrushSelect;
$button = new Gimp::UI::GradientSelect;

$button = new Gimp::UI::ColorSelectButton;

<<less
Download (0.26MB)
Added: 2006-10-26 License: Perl Artistic License Price:
1096 downloads
Gimp::OO 1.211

Gimp::OO 1.211


Gimp::OO is a Perl module with pseudo-OO for Gimp functions. more>>
Gimp::OO is a Perl module with pseudo-OO for Gimp functions.

SYNOPSIS

use Gimp; # Gimp::OO is now part of Gimp.

As you might have noticed, you can sort most gimp functions fall into three groups, depending on the name-prefix: gimp_, plug_in_, extension_ etc..

Whats more, there are functions groups like gimp_image_ or gimp_selection_, operating on a common object, Images and Selection in this case.

If you only had the plain syntax, your scripts would quickly aquire the "vertical gimp syndrome":

gimp_palette_set_foreground(...)
gimp_layer_new(...)
gimp_palette_set_background(...)
gimp_image_add_layer(...)

etc. Of course, your fingers will suffer from severe injuries as well.

A solution to this situation is to use OO-syntax. Gimp plays some (very) dirty tricks and provides a number of classes, like Gimp::Image and Gimp::Palette that allow shorter identifiers to be used (all these appear with the Gimp:: prefix as well as without, i.e. Gimp::Palette is the same class as Palette).

If you call a method, Gimp tries to find a gimp function by prepending a number of prefixes until it finds a valid function:

$image = Gimp->image_new(...); # calls gimp_image_new(...)
$image = Image->new(...); # calls gimp_image_new as well
$image = new Image(...); # the same in green
Palette->set_foreground(...) # calls gimp_palette_set_foreground(..)

Return values from functions are automatically blessed (through The Magic Autobless feature ;) to their corresponding classes, i.e.

$image = new Image(...); # $image is now blessed to Gimp::Image
$image->height; # calls gimp_image_height($image)
$image->flatten; # likewise gimp_flatten($image)
$image->histogram(...); # calls gimp_histogram($image,...), since
# gimp_image_histogram does not exist
The class argument ($image in the above examples) is prepended to the argument list.

Another shortcut: many functions want a (redundant) image argument, like

$image->shear ($layer, ...)

Since all you want is to shear the $layer, not the $image, this is confusing as well. In cases like this, Gimp allows you to write:

$layer->shear (...)

And automatically infers the additional IMAGE-type argument.

As the (currently) last goodie, if the first argument is of type INT32, its name is "run_mode" and there are no other ambiguties, you can omit it, i.e. these three calls are equivalent:

plug_in_gauss_rle (RUN_NONINTERACTIVE, $image, $layer, 8, 1, 1);
plug_in_gauss_rle ($image, $layer, 8, 1, 1);
plug_in_gauss_rle ($layer, 8, 1, 1);

You can call all sorts of sensible and not-so-sensible functions, so this feature can be abused:

patterns_list Image; # will call gimp_patterns_list
quit Plugin; # will quit the Gimp, not an Plugin.

there is no image involved here whatsoever...

<<less
Download (0.26MB)
Added: 2006-10-26 License: Perl Artistic License Price:
1093 downloads
Gimp::Net 1.211

Gimp::Net 1.211


Gimp::Net is a communication module for the gimp-perl server. more>>
Gimp::Net is a communication module for the gimp-perl server.

For Gimp::Net (and thus commandline and remote scripts) to work, you first have to install the "Perl-Server" extension somewhere where Gimp can find it (e.g in your .gimp/plug-ins/ directory). Usually this is done automatically while installing the Gimp extension. If you have a menu entry < Xtns/Perl-Server > then it is probably installed.

The Perl-Server can either be started from the < Xtns > menu in Gimp, or automatically when a perl script cant find a running Perl-Server.

When started from within The Gimp, the Perl-Server will create a unix domain socket to which local clients can connect. If an authorization password is given to the Perl-Server (by defining the environment variable GIMP_HOST before starting The Gimp), it will also listen on a tcp port (default 10009).

Since the password is transmitted in cleartext, using the Perl-Server over tcp effectively lowers the security of your network to the level of telnet. Even worse: the current Gimp::Net-protocol can be used for denial of service attacks, i.e. crashing the Perl-Server. There also *might* be buffer-overflows (although I do care a lot for these).

<<less
Download (0.26MB)
Added: 2006-10-26 License: Perl Artistic License Price:
1093 downloads
Gimp::Pod 1.211

Gimp::Pod 1.211


Gimp::Pod is a Perl module to evaluate pod documentation embedded in scripts. more>>
Gimp::Pod is a Perl module to evaluate pod documentation embedded in scripts.

SYNOPSIS

use Gimp::Pod;

$pod = new Gimp::Pod;
$text = $pod->format ();
$html = $pod->format (html);
$synopsis = $pod->section (SYNOPSIS);
$author = $pod->author;
@sections = $pod->sections;

Gimp::Pod can be used to find and parse embedded pod documentation in gimp-perl scripts. At the moment only the formatted text can be fetched, future versions might have more interesting features.

<<less
Download (0.26MB)
Added: 2006-10-26 License: Perl Artistic License Price:
1093 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5