Sync docs to grab as-of-yet untranslated Albanian magic docs

This commit is contained in:
Bill Kendrick 2024-01-26 23:44:59 -08:00
parent 298c7566a3
commit 5cda0092ba
245 changed files with 10444 additions and 0 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,695 @@
/* tp_magic_example.c
An example of a "Magic" tool plugin for Tux Paint
janar 16, 2024
*/
/* Inclusion of header files */
/* ---------------------------------------------------------------------- */
#include <stdio.h>
#include <string.h> // For "strdup()"
#include <libintl.h> // For "gettext()"
#include "tp_magic_api.h" // Tux Paint "Magic" tool API header
#include "SDL_image.h" // For IMG_Load(), to load our PNG icon
#include "SDL_mixer.h" // For Mix_LoadWAV(), to load our sound effects
/* Tool Enumerations: */
/* ---------------------------------------------------------------------- */
/* What tools we contain: */
enum
{
TOOL_ONE, // Becomes '0'
TOOL_TWO, // Becomes '1'
NUM_TOOLS // Becomes '2'
};
/* Lists of filenames for sounds and icons to load at startup: */
const char *sound_filenames[NUM_TOOLS] = {
"tool_one.wav",
"tool_two.wav"
};
const char *icon_filenames[NUM_TOOLS] = {
"tool_one.png",
"tool_two.png"
};
/*
NOTE: We use a macro called "gettext_noop()" below in some arrays of
strings (char *'s) that hold the names and descriptions of our "Magic"
tools. This allows the strings to be localized into other languages.
*/
/* A list of names for the tools */
const char *tool_names[NUM_TOOLS] = {
gettext_noop("A tool"),
gettext_noop("Another tool")
};
/* How to group the tools with other similar tools, within the 'Magic' selector: */
const int tool_groups[NUM_TOOLS] = {
MAGIC_TYPE_PAINTING,
MAGIC_TYPE_DISTORTS
};
/* A list of descriptions of the tools */
const char *tool_descriptions[NUM_TOOLS] = {
gettext_noop("This is example tool number 1."),
gettext_noop("This is example tool number 2.")
};
/* Our global variables: */
/* ---------------------------------------------------------------------- */
/* Sound effects: */
Mix_Chunk *sound_effects[NUM_TOOLS];
/* The current color (an "RGB" -- red, green, blue -- value) the user has
selected in Tux Paint (for tool 1): */
Uint8 example_r, example_g, example_b;
/* The size the user has selected in Tux Paint (for tool 2): */
Uint8 example_size;
/* Our local function prototypes: */
/* ---------------------------------------------------------------------- */
/*
These functions are called by other functions within our plugin, so we
provide a 'prototype' of them, so the compiler knows what they accept and
return. This lets us use them in other functions that are declared
_before_ them.
*/
void example_drag(magic_api * api, int which, SDL_Surface * canvas,
SDL_Surface * snapshot, int old_x, int old_y, int x, int y,
SDL_Rect * update_rect);
void example_line_callback(void *pointer, int which, SDL_Surface * canvas,
SDL_Surface * snapshot, int x, int y);
/* Setup Functions: */
/* ---------------------------------------------------------------------- */
/*
API Version check
The running copy of Tux Paint that has loaded us first asks us what version
of the Tux Paint 'Magic' tool plugin API we were built against. If it
deems us compatible, we'll be used!
All we need to do here is return "TP_MAGIC_API_VERSION", which is defined
(#define) in the header file "tp_magic_api.h".
*/
Uint32 example_api_version(void)
{
return (TP_MAGIC_API_VERSION);
}
/*
Initialization
This happens once, when Tux Paint starts up and is loading all of the
'Magic' tool plugins. (Assuming what we returned from api_version was
acceptable!)
All we're doing in this example is loading our sound effects, which we'll
use later (in example_click(), example_drag(), and example_release()) when
the user is using our Magic tools.
The memory we allocate here to store the sounds will be freed (aka
released, aka deallocated) when the user quits Tux Paint, when our
example_shutdown() function is called.
*/
int example_init(magic_api * api, Uint8 disabled_features, Uint8 complexity_level)
{
int i;
char filename[1024];
for (i = 0; i < NUM_TOOLS; i++)
{
/*
Assemble the filename from the "sound_filenames[]" array into a full path
to a real file.
Use "api->data_directory" to figure out where our sounds should be. (The
"tp-magic-config --dataprefix" command would have told us when we installed
our plugin and its data.)
*/
snprintf(filename, sizeof(filename), "%ssounds/magic/%s", api->data_directory,
sound_filenames[i]);
printf("Trying to load %s sound file\n", filename);
/* Try to load the file! */
sound_effects[i] = Mix_LoadWAV(filename);
}
return (1);
}
/*
Report our tool count
Tux Paint needs to know how many 'Magic' tools we'll be providing. Return
that number here. (We simply grab the value of 'NUM_TOOLS' from our 'enum'
above!)
When Tux Paint is starting up and loading plugins, it will call some of the
following setup functions once for each tool we report.
*/
int example_get_tool_count(magic_api * api)
{
return (NUM_TOOLS);
}
/*
Load our icons
When Tux Paint is starting up and loading plugins, it asks us to provide
icons for the 'Magic' tool buttons.
*/
SDL_Surface *example_get_icon(magic_api * api, int which)
{
char filename[1024];
/*
Assemble the filename from the "icon_filenames[]" array into a full path to
a real file.
Use "api->data_directory" to figure out where our sounds should be. (The
"tp-magic-config --dataprefix" command would have told us when we installed
our plugin and its data.)
We use "which" (which of our tools Tux Paint is asking about) as an index
into the array.
*/
snprintf(filename, sizeof(filename), "%simages/magic/%s",
api->data_directory, icon_filenames[which]);
printf("Trying to load %s icon\n", filename);
/* Try to load the image, and return the results to Tux Paint: */
return (IMG_Load(filename));
}
/*
Report our 'Magic' tool names
When Tux Paint is starting up and loading plugins, it asks us to provide
names (labels) for the 'Magic' tool buttons.
*/
char *example_get_name(magic_api * api, int which)
{
const char *our_name_english;
const char *our_name_localized;
/*
Get our name from the "tool_names[]" array.
We use 'which' (which of our tools Tux Paint is asking about) as an index
into the array.
*/
our_name_english = tool_names[which];
/*
Return a localized (aka translated) version of our name, if possible.
We send "gettext()" the English version of the name from our array.
*/
our_name_localized = gettext(our_name_english);
/*
Finally, duplicate the string into a new section of memory, and send it to
Tux Paint. (Tux Paint keeps track of the string and will free it for us,
so we have one less thing to keep track of.)
*/
return (strdup(our_name_localized));
}
/*
Report our 'Magic' tool groups
When Tux Paint is starting up and loading plugins, it asks us to specify
where the tool should be grouped.
*/
int example_get_group(magic_api * api, int which)
{
/*
Return our group, found in the "tool_groups[]" array.
We use 'which' (which of our tools Tux Paint is asking about) as an index
into the array.
*/
return (tool_groups[which]);
}
/*
Return grouping/ordering number
When Tux Paint is starting up and loading plugins, it asks us to provide a
numeric value used for sorting 'Magic' tools within a group. Tools will be
ordered based on this number, and those with the same number will be sorted
alphabetically by their localized name (see 'example_get_name').
*/
int *example_get_order(int which)
{
return 0;
}
/*
Report our 'Magic' tool descriptions
When Tux Paint is starting up and loading plugins, it asks us to provide
descriptions of each 'Magic' tool.
*/
char *example_get_description(magic_api * api, int which, int mode)
{
const char *our_desc_english;
const char *our_desc_localized;
/*
Get our description from the "tool_descriptions[]" array.
We use 'which' (which of our tools Tux Paint is asking about) as an index
into the array.
*/
our_desc_english = tool_descriptions[which];
/*
Return a localized (aka translated) version of our description, if
possible.
We send "gettext" the English version of the description from our array.
*/
our_desc_localized = gettext(our_desc_english);
/*
Finally, duplicate the string into a new section of memory, and send it to
Tux Paint. (Tux Paint keeps track of the string and will free it for us,
so we have one less thing to keep track of.)
*/
return (strdup(our_desc_localized));
}
// Report whether we accept colors
int example_requires_colors(magic_api * api, int which)
{
if (which == TOOL_ONE)
return 1;
else
return 0;
}
// Report what modes we work in
int example_modes(magic_api * api, int which)
{
/*
Both of our tools are painted (neither affect the full-screen), so we're
always returning 'MODE_PAINT'
*/
return MODE_PAINT;
}
// Report whether the tools offer sizing options
Uint8 example_accepted_sizes(magic_api * api, int which, int mode)
{
if (which == TOOL_ONE)
return 1;
else
return 4;
}
// Return our default sizing option
Uint8 example_default_size(magic_api * api, int which, int mode)
{
return 1;
}
/*
Shut down
Tux Paint is quitting. When it quits, it asks all of the plugins to 'clean
up' after themselves. We, for example, loaded some sound effects at
startup (in our example_init() function), so we should free the memory used
by them now.
*/
void example_shutdown(magic_api * api)
{
int i;
/*
Free (aka release, aka deallocate) the memory used to store the sound
effects that we loaded during example_init():
*/
for (i = 0; i < NUM_TOOLS; i++)
Mix_FreeChunk(sound_effects[i]);
}
/* Functions that respond to events in Tux Paint: */
/* ---------------------------------------------------------------------- */
/* Affect the canvas on click: */
void
example_click(magic_api * api, int which, int mode,
SDL_Surface * canvas, SDL_Surface * snapshot, int x, int y,
SDL_Rect * update_rect)
{
/*
In our case, a single click (which is also the start of a drag!) is
identical to what dragging does, but just at one point, rather than across
a line.
So we 'cheat' here, by calling our "example_draw()" function with (x,y) for
both the beginning and end points of a line.
*/
example_drag(api, which, canvas, snapshot, x, y, x, y, update_rect);
}
/* Affect the canvas on drag: */
void
example_drag(magic_api * api, int which,
SDL_Surface * canvas, SDL_Surface * snapshot,
int old_x, int old_y, int x, int y,
SDL_Rect * update_rect)
{
/*
Call Tux Paint's "line()" (line-traversing) function.
It will calculate a straight line between (old_x,old_y) and (x,y). Every
N steps along that line (in this case, N is '1'), it will call _our_
function, "example_line_callback()", and send the current X,Y
coordinates along the line, as well as other useful things (which of our
'Magic' tools is being used and the current and snapshot canvases).
*/
SDL_LockSurface(snapshot);
SDL_LockSurface(canvas);
api->line((void *) api, which, canvas, snapshot,
old_x, old_y, x, y, 1,
example_line_callback);
SDL_UnlockSurface(canvas);
SDL_UnlockSurface(snapshot);
/*
If we need to, swap the X and/or Y values, so that the coordinates
(old_x,old_y) is always the top left, and the coordinates (x,y) is
always the bottom right, so the values we put inside "update_rect" make
sense:
*/
if (old_x > x)
{
int temp = old_x;
old_x = x;
x = temp;
}
if (old_y > y)
{
int temp = old_y;
old_y = y;
y = temp;
}
/*
Fill in the elements of the "update_rect" SDL_Rect structure that Tux
Paint is sharing with us, therefore telling Tux Paint which part of the
canvas has been modified and should be updated.
*/
if (which == TOOL_ONE) {
update_rect->x = old_x;
update_rect->y = old_y;
update_rect->w = (x - old_x) + 1;
update_rect->h = (y - old_y) + 1;
} else {
update_rect->x = old_x - example_size;
update_rect->y = old_y - example_size;
update_rect->w = (x + example_size) - update_rect->x + 1;
update_rect->h = (y + example_size) - update_rect->y + 1;
}
/*
Play the appropriate sound effect
We're calculating a value between 0-255 for where the mouse is
horizontally across the canvas (0 is the left, ~128 is the center, 255
is the right).
These are the exact values Tux Paint's "playsound()" wants, to determine
what speaker to play the sound in. (So the sound will pan from speaker
to speaker as you drag the mouse around the canvas!)
*/
api->playsound(sound_effects[which],
(x * 255) / canvas->w, /* Left/right pan */
255 /* Near/far distance (loudness) */);
}
/* Affect the canvas on release: */
void
example_release(magic_api * api, int which,
SDL_Surface * canvas, SDL_Surface * snapshot, int x, int y,
SDL_Rect * update_rect)
{
/*
Neither of our effects do anything special when the mouse is released
from a click or click-and-drag, so there's no code here...
*/
}
/*
Accept colors
When any of our 'Magic' tools are activated by the user, if that tool
accepts colors, the current color selection is sent to us.
Additionally, if one of our color-accepting tools is active when the user
changes their chosen, we'll be informed of that as well.
The color comes in as RGB (red, green, and blue) values from 0 (darkest) to
255 (brightest).
*/
void example_set_color(magic_api * api, int which, SDL_Surface * canvas, SDL_Surface * snapshot, Uint8 r, Uint8 g, Uint8 b, SDL_Rect * update_rect)
{
/*
We simply store the RGB values in the global variables we declared at
the top of this file.
*/
example_r = r;
example_g = g;
example_b = b;
}
/*
Accept sizes
When any of our 'Magic' tools are activated by the user, if that tool
offer's sizes, the current size selection is sent to us.
Additionally, if the user changes the tool's size, we'll be informed of
that as well.
The size comes in as an unsigned integer (Uint8) between 1 and the value
returned by our example_accepted_sizes() function during setup.
*/
void example_set_size(magic_api * api, int which, SDL_Surface * canvas, SDL_Surface * snapshot, Uint8 size, SDL_Rect * update_rect)
{
/*
Store the new size into the global variable we declared at the top of
this file.
*/
example_size = size * 4;
}
/* The Magic Effect Routines! */
/* ---------------------------------------------------------------------- */
/*
Our 'callback' function
We do the 'work' in this callback. Our plugin file has just one. Some
'Magic' tool plugins may have more, depending on the tools they're
providing. Some have none (since they're not click-and-drag painting-style
tools).
Our callback function gets called once for every point along a line between
the mouse's previous and current position, as it's being dragged.
Our callback pays attention to 'which' to determine which of our plugin's
tools is currently selected.
*/
void example_line_callback(void *pointer, int which, SDL_Surface * canvas,
SDL_Surface * snapshot, int x, int y)
{
/*
For technical reasons, we can't accept a pointer to the Tux Paint API's
"magic_api" struct, like the other functions do.
Instead, we receive a 'generic' pointer (a "void *"). The line below
declares a local "magic_api" pointer variable called "api", and then
assigns it to the value of the 'generic' pointer we received.
The "(magic_api *)" seen below casts the generic "void *" pointer into
the 'type' of pointer we want, a pointer to a "magic_api" struct.)
*/
magic_api *api = (magic_api *) pointer;
int xx, yy;
/*
This function handles both of our tools, so we need to check which is
being used right now. We compare the 'which' argument that Tux Paint
sends to us with the values we enumerated above.
*/
if (which == TOOL_ONE)
{
/*
Tool number 1 simply draws a single pixel at the (x,y) location. It acts
as a 1x1 pixel brush.
*/
api->putpixel(canvas, x, y,
SDL_MapRGB(canvas->format,
example_r, example_g, example_b));
/*
We use "SDL_MapRGB()" to convert the RGB value we receive from Tux Paint
for the user's current color selection to a 'Uint32' pixel value we can
send to Tux Paint's "putpixel()" function.
*/
}
else if (which == TOOL_TWO)
{
/*
Tool number 2 copies a square of pixels (of the size chosen by the user)
from the opposite side of the canvas and puts it under the cursor.
*/
for (yy = -example_size; yy < example_size; yy++)
{
for (xx = -example_size; xx < example_size; xx++)
{
api->putpixel(canvas, x + xx, y + yy,
api->getpixel(snapshot,
snapshot->w - x - xx,
snapshot->h - y - yy));
/*
Here we have simply use Tux Paint's "getpixel()" routine to pull pixel
values from the 'snapshot', and then "putpixel()" to draw them right
into the 'canvas'.
Note: putpixel() and getpixel() are safe to use, even if your X,Y values
are outside of the SDL surface (e.g., negative, or greater than the
surface's width and/or height).
*/
}
}
}
}
/*
Switch-In event
This happens whenever a Magic tool is enabled, either because the user just
selected it, or they just came back to 'Magic' after using another tool
(e.g., Brush or Text), and this was the most-recently selected Magic tool.
(This also applies to momentary tools, like Undo and Redo, and
image-changing tools such as New and Open.)
It also happens when a Magic tool's mode changes (we will first receive a
call to 'example_switchout()', below, for the old mode).
Our example doesn't do anything when we switch to, or away from, our Magic
tools, so we just do nothing here.
*/
void example_switchin(magic_api * api, int which, int mode,
SDL_Surface * canvas)
{
}
/*
Switch-Out event
This happens whenever a Magic tool is disabled, either because the user
selected a different Magic tool, or they selected a completely different
tool (e.g., Brush or Text).
(This also applies to momentary tools, like Undo and Redo, and
image-changing tools such as New and Open.)
(And in that case, our example_switchin() function will be called moments
later.
It also happens when a Magic tool's mode changes (we will then receive a
call to 'example_switchin()', above, for the new mode).
Our example doesn't do anything when we switch to, or away from, our Magic
tools, so we just do nothing here.
*/
void example_switchout(magic_api * api, int which, int mode,
SDL_Surface * canvas)
{
}

View file

@ -0,0 +1,695 @@
/* tp_magic_example.c
An example of a "Magic" tool plugin for Tux Paint
janar 16, 2024
*/
/* Inclusion of header files */
/* ---------------------------------------------------------------------- */
#include <stdio.h>
#include <string.h> // For "strdup()"
#include <libintl.h> // For "gettext()"
#include "tp_magic_api.h" // Tux Paint "Magic" tool API header
#include "SDL_image.h" // For IMG_Load(), to load our PNG icon
#include "SDL_mixer.h" // For Mix_LoadWAV(), to load our sound effects
/* Tool Enumerations: */
/* ---------------------------------------------------------------------- */
/* What tools we contain: */
enum
{
TOOL_ONE, // Becomes '0'
TOOL_TWO, // Becomes '1'
NUM_TOOLS // Becomes '2'
};
/* Lists of filenames for sounds and icons to load at startup: */
const char *sound_filenames[NUM_TOOLS] = {
"tool_one.wav",
"tool_two.wav"
};
const char *icon_filenames[NUM_TOOLS] = {
"tool_one.png",
"tool_two.png"
};
/*
NOTE: We use a macro called "gettext_noop()" below in some arrays of
strings (char *'s) that hold the names and descriptions of our "Magic"
tools. This allows the strings to be localized into other languages.
*/
/* A list of names for the tools */
const char *tool_names[NUM_TOOLS] = {
gettext_noop("A tool"),
gettext_noop("Another tool")
};
/* How to group the tools with other similar tools, within the 'Magic' selector: */
const int tool_groups[NUM_TOOLS] = {
MAGIC_TYPE_PAINTING,
MAGIC_TYPE_DISTORTS
};
/* A list of descriptions of the tools */
const char *tool_descriptions[NUM_TOOLS] = {
gettext_noop("This is example tool number 1."),
gettext_noop("This is example tool number 2.")
};
/* Our global variables: */
/* ---------------------------------------------------------------------- */
/* Sound effects: */
Mix_Chunk *sound_effects[NUM_TOOLS];
/* The current color (an "RGB" -- red, green, blue -- value) the user has
selected in Tux Paint (for tool 1): */
Uint8 example_r, example_g, example_b;
/* The size the user has selected in Tux Paint (for tool 2): */
Uint8 example_size;
/* Our local function prototypes: */
/* ---------------------------------------------------------------------- */
/*
These functions are called by other functions within our plugin, so we
provide a 'prototype' of them, so the compiler knows what they accept and
return. This lets us use them in other functions that are declared
_before_ them.
*/
void example_drag(magic_api * api, int which, SDL_Surface * canvas,
SDL_Surface * snapshot, int old_x, int old_y, int x, int y,
SDL_Rect * update_rect);
void example_line_callback(void *pointer, int which, SDL_Surface * canvas,
SDL_Surface * snapshot, int x, int y);
/* Setup Functions: */
/* ---------------------------------------------------------------------- */
/*
API Version check
The running copy of Tux Paint that has loaded us first asks us what version
of the Tux Paint 'Magic' tool plugin API we were built against. If it
deems us compatible, we'll be used!
All we need to do here is return "TP_MAGIC_API_VERSION", which is defined
(#define) in the header file "tp_magic_api.h".
*/
Uint32 example_api_version(void)
{
return (TP_MAGIC_API_VERSION);
}
/*
Initialization
This happens once, when Tux Paint starts up and is loading all of the
'Magic' tool plugins. (Assuming what we returned from api_version was
acceptable!)
All we're doing in this example is loading our sound effects, which we'll
use later (in example_click(), example_drag(), and example_release()) when
the user is using our Magic tools.
The memory we allocate here to store the sounds will be freed (aka
released, aka deallocated) when the user quits Tux Paint, when our
example_shutdown() function is called.
*/
int example_init(magic_api * api, Uint8 disabled_features, Uint8 complexity_level)
{
int i;
char filename[1024];
for (i = 0; i < NUM_TOOLS; i++)
{
/*
Assemble the filename from the "sound_filenames[]" array into a full path
to a real file.
Use "api->data_directory" to figure out where our sounds should be. (The
"tp-magic-config --dataprefix" command would have told us when we installed
our plugin and its data.)
*/
snprintf(filename, sizeof(filename), "%ssounds/magic/%s", api->data_directory,
sound_filenames[i]);
printf("Trying to load %s sound file\n", filename);
/* Try to load the file! */
sound_effects[i] = Mix_LoadWAV(filename);
}
return (1);
}
/*
Report our tool count
Tux Paint needs to know how many 'Magic' tools we'll be providing. Return
that number here. (We simply grab the value of 'NUM_TOOLS' from our 'enum'
above!)
When Tux Paint is starting up and loading plugins, it will call some of the
following setup functions once for each tool we report.
*/
int example_get_tool_count(magic_api * api)
{
return (NUM_TOOLS);
}
/*
Load our icons
When Tux Paint is starting up and loading plugins, it asks us to provide
icons for the 'Magic' tool buttons.
*/
SDL_Surface *example_get_icon(magic_api * api, int which)
{
char filename[1024];
/*
Assemble the filename from the "icon_filenames[]" array into a full path to
a real file.
Use "api->data_directory" to figure out where our sounds should be. (The
"tp-magic-config --dataprefix" command would have told us when we installed
our plugin and its data.)
We use "which" (which of our tools Tux Paint is asking about) as an index
into the array.
*/
snprintf(filename, sizeof(filename), "%simages/magic/%s",
api->data_directory, icon_filenames[which]);
printf("Trying to load %s icon\n", filename);
/* Try to load the image, and return the results to Tux Paint: */
return (IMG_Load(filename));
}
/*
Report our 'Magic' tool names
When Tux Paint is starting up and loading plugins, it asks us to provide
names (labels) for the 'Magic' tool buttons.
*/
char *example_get_name(magic_api * api, int which)
{
const char *our_name_english;
const char *our_name_localized;
/*
Get our name from the "tool_names[]" array.
We use 'which' (which of our tools Tux Paint is asking about) as an index
into the array.
*/
our_name_english = tool_names[which];
/*
Return a localized (aka translated) version of our name, if possible.
We send "gettext()" the English version of the name from our array.
*/
our_name_localized = gettext(our_name_english);
/*
Finally, duplicate the string into a new section of memory, and send it to
Tux Paint. (Tux Paint keeps track of the string and will free it for us,
so we have one less thing to keep track of.)
*/
return (strdup(our_name_localized));
}
/*
Report our 'Magic' tool groups
When Tux Paint is starting up and loading plugins, it asks us to specify
where the tool should be grouped.
*/
int example_get_group(magic_api * api, int which)
{
/*
Return our group, found in the "tool_groups[]" array.
We use 'which' (which of our tools Tux Paint is asking about) as an index
into the array.
*/
return (tool_groups[which]);
}
/*
Return grouping/ordering number
When Tux Paint is starting up and loading plugins, it asks us to provide a
numeric value used for sorting 'Magic' tools within a group. Tools will be
ordered based on this number, and those with the same number will be sorted
alphabetically by their localized name (see 'example_get_name').
*/
int *example_get_order(int which)
{
return 0;
}
/*
Report our 'Magic' tool descriptions
When Tux Paint is starting up and loading plugins, it asks us to provide
descriptions of each 'Magic' tool.
*/
char *example_get_description(magic_api * api, int which, int mode)
{
const char *our_desc_english;
const char *our_desc_localized;
/*
Get our description from the "tool_descriptions[]" array.
We use 'which' (which of our tools Tux Paint is asking about) as an index
into the array.
*/
our_desc_english = tool_descriptions[which];
/*
Return a localized (aka translated) version of our description, if
possible.
We send "gettext" the English version of the description from our array.
*/
our_desc_localized = gettext(our_desc_english);
/*
Finally, duplicate the string into a new section of memory, and send it to
Tux Paint. (Tux Paint keeps track of the string and will free it for us,
so we have one less thing to keep track of.)
*/
return (strdup(our_desc_localized));
}
// Report whether we accept colors
int example_requires_colors(magic_api * api, int which)
{
if (which == TOOL_ONE)
return 1;
else
return 0;
}
// Report what modes we work in
int example_modes(magic_api * api, int which)
{
/*
Both of our tools are painted (neither affect the full-screen), so we're
always returning 'MODE_PAINT'
*/
return MODE_PAINT;
}
// Report whether the tools offer sizing options
Uint8 example_accepted_sizes(magic_api * api, int which, int mode)
{
if (which == TOOL_ONE)
return 1;
else
return 4;
}
// Return our default sizing option
Uint8 example_default_size(magic_api * api, int which, int mode)
{
return 1;
}
/*
Shut down
Tux Paint is quitting. When it quits, it asks all of the plugins to 'clean
up' after themselves. We, for example, loaded some sound effects at
startup (in our example_init() function), so we should free the memory used
by them now.
*/
void example_shutdown(magic_api * api)
{
int i;
/*
Free (aka release, aka deallocate) the memory used to store the sound
effects that we loaded during example_init():
*/
for (i = 0; i < NUM_TOOLS; i++)
Mix_FreeChunk(sound_effects[i]);
}
/* Functions that respond to events in Tux Paint: */
/* ---------------------------------------------------------------------- */
/* Affect the canvas on click: */
void
example_click(magic_api * api, int which, int mode,
SDL_Surface * canvas, SDL_Surface * snapshot, int x, int y,
SDL_Rect * update_rect)
{
/*
In our case, a single click (which is also the start of a drag!) is
identical to what dragging does, but just at one point, rather than across
a line.
So we 'cheat' here, by calling our "example_draw()" function with (x,y) for
both the beginning and end points of a line.
*/
example_drag(api, which, canvas, snapshot, x, y, x, y, update_rect);
}
/* Affect the canvas on drag: */
void
example_drag(magic_api * api, int which,
SDL_Surface * canvas, SDL_Surface * snapshot,
int old_x, int old_y, int x, int y,
SDL_Rect * update_rect)
{
/*
Call Tux Paint's "line()" (line-traversing) function.
It will calculate a straight line between (old_x,old_y) and (x,y). Every
N steps along that line (in this case, N is '1'), it will call _our_
function, "example_line_callback()", and send the current X,Y
coordinates along the line, as well as other useful things (which of our
'Magic' tools is being used and the current and snapshot canvases).
*/
SDL_LockSurface(snapshot);
SDL_LockSurface(canvas);
api->line((void *) api, which, canvas, snapshot,
old_x, old_y, x, y, 1,
example_line_callback);
SDL_UnlockSurface(canvas);
SDL_UnlockSurface(snapshot);
/*
If we need to, swap the X and/or Y values, so that the coordinates
(old_x,old_y) is always the top left, and the coordinates (x,y) is
always the bottom right, so the values we put inside "update_rect" make
sense:
*/
if (old_x > x)
{
int temp = old_x;
old_x = x;
x = temp;
}
if (old_y > y)
{
int temp = old_y;
old_y = y;
y = temp;
}
/*
Fill in the elements of the "update_rect" SDL_Rect structure that Tux
Paint is sharing with us, therefore telling Tux Paint which part of the
canvas has been modified and should be updated.
*/
if (which == TOOL_ONE) {
update_rect->x = old_x;
update_rect->y = old_y;
update_rect->w = (x - old_x) + 1;
update_rect->h = (y - old_y) + 1;
} else {
update_rect->x = old_x - example_size;
update_rect->y = old_y - example_size;
update_rect->w = (x + example_size) - update_rect->x + 1;
update_rect->h = (y + example_size) - update_rect->y + 1;
}
/*
Play the appropriate sound effect
We're calculating a value between 0-255 for where the mouse is
horizontally across the canvas (0 is the left, ~128 is the center, 255
is the right).
These are the exact values Tux Paint's "playsound()" wants, to determine
what speaker to play the sound in. (So the sound will pan from speaker
to speaker as you drag the mouse around the canvas!)
*/
api->playsound(sound_effects[which],
(x * 255) / canvas->w, /* Left/right pan */
255 /* Near/far distance (loudness) */);
}
/* Affect the canvas on release: */
void
example_release(magic_api * api, int which,
SDL_Surface * canvas, SDL_Surface * snapshot, int x, int y,
SDL_Rect * update_rect)
{
/*
Neither of our effects do anything special when the mouse is released
from a click or click-and-drag, so there's no code here...
*/
}
/*
Accept colors
When any of our 'Magic' tools are activated by the user, if that tool
accepts colors, the current color selection is sent to us.
Additionally, if one of our color-accepting tools is active when the user
changes their chosen, we'll be informed of that as well.
The color comes in as RGB (red, green, and blue) values from 0 (darkest) to
255 (brightest).
*/
void example_set_color(magic_api * api, int which, SDL_Surface * canvas, SDL_Surface * snapshot, Uint8 r, Uint8 g, Uint8 b, SDL_Rect * update_rect)
{
/*
We simply store the RGB values in the global variables we declared at
the top of this file.
*/
example_r = r;
example_g = g;
example_b = b;
}
/*
Accept sizes
When any of our 'Magic' tools are activated by the user, if that tool
offer's sizes, the current size selection is sent to us.
Additionally, if the user changes the tool's size, we'll be informed of
that as well.
The size comes in as an unsigned integer (Uint8) between 1 and the value
returned by our example_accepted_sizes() function during setup.
*/
void example_set_size(magic_api * api, int which, SDL_Surface * canvas, SDL_Surface * snapshot, Uint8 size, SDL_Rect * update_rect)
{
/*
Store the new size into the global variable we declared at the top of
this file.
*/
example_size = size * 4;
}
/* The Magic Effect Routines! */
/* ---------------------------------------------------------------------- */
/*
Our 'callback' function
We do the 'work' in this callback. Our plugin file has just one. Some
'Magic' tool plugins may have more, depending on the tools they're
providing. Some have none (since they're not click-and-drag painting-style
tools).
Our callback function gets called once for every point along a line between
the mouse's previous and current position, as it's being dragged.
Our callback pays attention to 'which' to determine which of our plugin's
tools is currently selected.
*/
void example_line_callback(void *pointer, int which, SDL_Surface * canvas,
SDL_Surface * snapshot, int x, int y)
{
/*
For technical reasons, we can't accept a pointer to the Tux Paint API's
"magic_api" struct, like the other functions do.
Instead, we receive a 'generic' pointer (a "void *"). The line below
declares a local "magic_api" pointer variable called "api", and then
assigns it to the value of the 'generic' pointer we received.
The "(magic_api *)" seen below casts the generic "void *" pointer into
the 'type' of pointer we want, a pointer to a "magic_api" struct.)
*/
magic_api *api = (magic_api *) pointer;
int xx, yy;
/*
This function handles both of our tools, so we need to check which is
being used right now. We compare the 'which' argument that Tux Paint
sends to us with the values we enumerated above.
*/
if (which == TOOL_ONE)
{
/*
Tool number 1 simply draws a single pixel at the (x,y) location. It acts
as a 1x1 pixel brush.
*/
api->putpixel(canvas, x, y,
SDL_MapRGB(canvas->format,
example_r, example_g, example_b));
/*
We use "SDL_MapRGB()" to convert the RGB value we receive from Tux Paint
for the user's current color selection to a 'Uint32' pixel value we can
send to Tux Paint's "putpixel()" function.
*/
}
else if (which == TOOL_TWO)
{
/*
Tool number 2 copies a square of pixels (of the size chosen by the user)
from the opposite side of the canvas and puts it under the cursor.
*/
for (yy = -example_size; yy < example_size; yy++)
{
for (xx = -example_size; xx < example_size; xx++)
{
api->putpixel(canvas, x + xx, y + yy,
api->getpixel(snapshot,
snapshot->w - x - xx,
snapshot->h - y - yy));
/*
Here we have simply use Tux Paint's "getpixel()" routine to pull pixel
values from the 'snapshot', and then "putpixel()" to draw them right
into the 'canvas'.
Note: putpixel() and getpixel() are safe to use, even if your X,Y values
are outside of the SDL surface (e.g., negative, or greater than the
surface's width and/or height).
*/
}
}
}
}
/*
Switch-In event
This happens whenever a Magic tool is enabled, either because the user just
selected it, or they just came back to 'Magic' after using another tool
(e.g., Brush or Text), and this was the most-recently selected Magic tool.
(This also applies to momentary tools, like Undo and Redo, and
image-changing tools such as New and Open.)
It also happens when a Magic tool's mode changes (we will first receive a
call to 'example_switchout()', below, for the old mode).
Our example doesn't do anything when we switch to, or away from, our Magic
tools, so we just do nothing here.
*/
void example_switchin(magic_api * api, int which, int mode,
SDL_Surface * canvas)
{
}
/*
Switch-Out event
This happens whenever a Magic tool is disabled, either because the user
selected a different Magic tool, or they selected a completely different
tool (e.g., Brush or Text).
(This also applies to momentary tools, like Undo and Redo, and
image-changing tools such as New and Open.)
(And in that case, our example_switchin() function will be called moments
later.
It also happens when a Magic tool's mode changes (we will then receive a
call to 'example_switchin()', above, for the new mode).
Our example doesn't do anything when we switch to, or away from, our Magic
tools, so we just do nothing here.
*/
void example_switchout(magic_api * api, int which, int mode,
SDL_Surface * canvas)
{
}

View file

@ -0,0 +1,28 @@
Mjeti “Magjik” i Tux Paint-it: Vizatim me 1 Qendër
Grup: Projections
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Klikoni dhe tërhiqeni, për të vizatuar perspektivë me 1 qendër projeksioni.
Vijat do të shkojnë drejt qendrës tuaj të projeksionit, ose do të jenë
horizontale, ose vertikale. Përdorni “Përzgjedhje e 1 Qendre” që të zgjidhni
qendrën tuaj të projeksionit (e mundshme vetëm nën mënyrën “e thelluar”).
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron rregullime të shumta madhësie.
Ky mjet ofron zgjedhje ngjyrash.
Ky mjet reagon ndaj rregullimit “kompleksitet” (shkallë ekspertize).
Shihni edhe: Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra, Përzgjedhje e 2
Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line,
Dimetric Select, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique
Select, Oblique Draw, & Perspektivë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,23 @@
Mjeti “Magjik” i Tux Paint-it: Përzgjedhje e 1 Qendre
Grup: Projections
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Klikoni (dhe tërhiqeni) për të vendosur diku qendrën e projeksionit që do të
përdoret me mjetin “Vizatim me 1 Qendër”.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
This tool is only available with "complexity" (expertise level) set to
'Advanced'.
Shihni edhe: Vizatim me 1 Qendër, Vizatim me 2 Qendra, Përzgjedhje e 2 Qendrash
, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric
Select, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select,
Oblique Draw, & Perspektivë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,30 @@
Mjeti “Magjik” i Tux Paint-it: Vizatim me 2 Qendra
Grup: Projections
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Klikoni dhe tërhiqeni, për të vizatuar perspektivë me 2 qendra projeksioni.
Vijat do të shkojnë drejt dy qendrave tuaja të projeksionit, ose do të jenë
drejtohen ose nga “horizonti” i përcaktuar nga dy qendrat e projeksionit, ose
me një vijë pingule me atë “horizont”. Përdorni “Përzgjedhje e 2 Qendrash” që
të zgjidhni qendrat tuaja të projeksionit (e mundshme vetëm nën mënyrën “e
thelluar”).
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron rregullime të shumta madhësie.
Ky mjet ofron zgjedhje ngjyrash.
This tool is not available with "complexity" (expertise level) set to 'Novice'.
Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Përzgjedhje e 2
Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line,
Dimetric Select, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique
Select, Oblique Draw, & Perspektivë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,23 @@
Mjeti “Magjik” i Tux Paint-it: Përzgjedhje e 2 Qendrash
Grup: Projections
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Klikoni (dhe tërhiqeni) për të vendosur diku dy qendra projeksioni që do të
përdoret me mjetin “Vizatim me 2 Qendra”.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
This tool is only available with "complexity" (expertise level) set to
'Advanced'.
Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra,
Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric Select,
Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select, Oblique Draw,
& Perspektivë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,18 @@
Mjeti “Magjik” i Tux Paint-it: Syze 3D
Grup: Filtra Ngjyrash
Autor: Bill Kendrick <bill@newbreedsoftware.com>
This tool horizontally separates your entire picture's red and cyan color
channels, letting you create anaglyphic pictures that can be viewed with 3D
glasses.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Shihni edhe: Ndarje Ngjyrash & Pamje e Dyfishtë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,31 @@
Mjeti “Magjik” i Tux Paint-it: Vizatim me 3 Qendra
Grup: Projections
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Klikoni (dhe tërhiqeni) për të vizatuar me 3 qendra projeksioni. Vijat do të
shkojnë vetëm drejt tre qendrave tuaja të projeksionit, ose do të drejtohen me
“horizontin” e përcaktuar nga dy prej qendrave të projeksionit. Përdorni
“Përzgjedhje 3 Qendrash”, për të zgjedhur qendrat tuaja të projeksionit (mund
të kihet vetëm nën mënyrën “e thelluar”). Nën mënyrën “fillestar”, do të ketë
dy mjete “Vizatimi me 3 Qendra”, një me qendra projeksioni që shohin përsipër
dhe një me qendra projeksioni që shohin për poshtë.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron rregullime të shumta madhësie.
Ky mjet ofron zgjedhje ngjyrash.
This tool is not available with "complexity" (expertise level) set to 'Novice'.
Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra,
Përzgjedhje e 2 Qendrash, Përzgjedhje e 3 Qendrash, Isometric Line, Dimetric
Select, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select,
Oblique Draw, & Perspektivë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,23 @@
Mjeti “Magjik” i Tux Paint-it: Përzgjedhje e 3 Qendrash
Grup: Projections
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Klikoni (dhe tërhiqeni) për të vendosur diku tre qendra projeksioni që do të
përdoret me mjetin “Vizatim me 3 Qendra”.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
This tool is only available with "complexity" (expertise level) set to
'Advanced'.
Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra,
Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Isometric Line, Dimetric Select,
Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select, Oblique Draw,
& Perspektivë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,17 @@
Mjeti “Magjik” i Tux Paint-it: Grila
Grup: Zbukurime Fotoje
Autor: Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Klikoni afër skajit të vizatimit tuaj për të ulur grila dritareje përmbi të.
Lëvizni pingulthi për të hapur ose mbyllur grilat.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron zgjedhje ngjyrash.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,18 @@
Mjeti “Magjik” i Tux Paint-it: Blloqe
Grup: Shformime
Autorë: Bill Kendrick <bill@newbreedsoftware.com>
Albert Cahalan <albert@users.sf.net>
This makes the picture blocky looking ("pixelated") wherever you drag the
mouse.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,16 @@
Mjeti “Magjik” i Tux Paint-it: Çelje
Grup: Filtra Ngjyrash
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Shtoni një efekt “çeljeje” rrezatues.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,19 @@
Mjeti “Magjik” i Tux Paint-it: Turbulloje
Grup: Shformime
Autorë: Bill Kendrick <bill@newbreedsoftware.com>
Albert Cahalan <albert@users.sf.net>
This makes the picture fuzzy wherever you drag the mouse.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
Shihni edhe: Mprehe & Njollose.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,23 @@
Mjeti “Magjik” i Tux Paint-it: Tulla
Grup: Vizatim
Autor: Albert Cahalan <albert@users.sf.net>
This tool intelligently paints brick patterns on the canvas. The bricks can be
tinted various redish hues by selecting different colors in the color palette.
(If the Magic size feature is disabled, multiple "Bricks" tools will be made
available.)
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron rregullime të shumta madhësie.
Ky mjet ofron zgjedhje ngjyrash.
Shihni edhe: Pikselë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,19 @@
Mjeti “Magjik” i Tux Paint-it: Bukurshkrim
Grup: Vizatim
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Ky vizaton në kanavacë me një penë bukurshkrimi. Sa më shpejt ta lëvizni, aq më
të holla vijat.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron rregullime të shumta madhësie.
Ky mjet ofron zgjedhje ngjyrash.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,17 @@
Mjeti “Magjik” i Tux Paint-it: Vizatimor
Grup: Filtra Ngjyrash
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Ky e bën figurën të duket si një karikaturë — me përvijime të trasha dhe ngjyra
të ndezura, të plota — kurdo që lëvizni miun.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,17 @@
Mjeti “Magjik” i Tux Paint-it: Shkumës
Grup: Shformime
Autor: Bill Kendrick <bill@newbreedsoftware.com>
This makes parts of the picture (where you move the mouse) look like a chalk
drawing.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,17 @@
Mjeti “Magjik” i Tux Paint-it: Fushë shahu
Grup: Zbukurime Fotoje
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Kjo mbulon krejt kanavacën me një model fushe shahu, duke përdorur ngjyrën e
çastit. Tërhiqeni, që të ndryshojë madhësia e kuadrateve.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron zgjedhje ngjyrash.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,17 @@
Mjeti “Magjik” i Tux Paint-it: Rrathë
Grup: Shformime
Autor: Bill Kendrick <bill@newbreedsoftware.com>
This transforms the picture into circular brush strokes around where you
clicked.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Shihni edhe: Rreze.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,20 @@
Mjeti “Magjik” i Tux Paint-it: Klonoje
Grup: Shformime
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Clone (copy, via painting) part of the picture. Click ones to choose the
source, then click and drag to clone it elsewhere in the drawing. Once you
release, click to choose another source and start again.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
Ky mjet reagon ndaj rregullimit “kompleksitet” (shkallë ekspertize).
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,19 @@
Mjeti “Magjik” i Tux Paint-it: Ngjyrë dhe E bardhë
Grup: Filtra Ngjyrash
Autor: Andrew Corcoran <akanewbie@gmail.com>
This makes parts of your picture two colors: white, and the color chosen in the
palette. (i.e., if you choose black, you'll get a black and white picture).
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
Ky mjet ofron zgjedhje ngjyrash.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,16 @@
Mjeti “Magjik” i Tux Paint-it: Këmbim Ngjyrash
Grup: Filtra Ngjyrash
Autor: Andrew Corcoran <akanewbie@gmail.com>
Kjo ndërron ngjyrat në foton tuaj.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,20 @@
Mjeti “Magjik” i Tux Paint-it: Ndarje Ngjyrash
Grup: Filtra Ngjyrash
Autor: Bill Kendrick <bill@newbreedsoftware.com>
This tool separates one color out of your entire picture, shifting colors away
from each other (similar to '3D Glasses', but you may choose the any color to
separate, and may move in any direction).
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron zgjedhje ngjyrash.
Shihni edhe: Syze 3D & Pamje e Dyfishtë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,18 @@
Mjeti “Magjik” i Tux Paint-it: Bonbone
Grup: Vizatim
Autor: Adam Rakowski <foo-script@o2.pl>
Hidhni bonbone mbi vizatimin tuaj!
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron rregullime të shumta madhësie.
Ky mjet ofron zgjedhje ngjyrash.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,19 @@
Mjeti “Magjik” i Tux Paint-it: Errësoje
Grup: Filtra Ngjyrash
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Ky i errëson ngjyrat, kurdo që tërhiqni miun. (Kryejeni mbi të njëjtin vend
shumë herë dhe më në fund do të bëhet e zezë.)
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
Shihni edhe: Ndriçoje, Ngjyrosje, Ngope, & Çngope.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,20 @@
Mjeti “Magjik” i Tux Paint-it: Çngope
Grup: Filtra Ngjyrash
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Ky heq ngopjen prej ngjyrash, kurdo që tërhiqni miun. (Kryejeni mbi të njëjtin
vend shumë herë dhe më në fund do të bëhet diçka si gri.)
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
Shihni edhe: Ngope, Errësoje, Ndriçoje, Ngjyrosje, Hiqe Ngjyrën, & Mbaje
Ngjyrën.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,26 @@
Mjeti “Magjik” i Tux Paint-it: Dimetric Draw
Grup: Projections
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Click and drag to draw in a dimetric projection. Lines will only go vertically,
or at a chosen angle and its mirror. Use "Dimetric Select" to adjust the angle.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron rregullime të shumta madhësie.
Ky mjet ofron zgjedhje ngjyrash.
This tool is not available with "complexity" (expertise level) set to 'Novice'.
Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra,
Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash,
Isometric Line, Dimetric Select, Trimetric Select, Trimetric Draw, Oblique
Select, Oblique Draw, & Perspektivë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,23 @@
Mjeti “Magjik” i Tux Paint-it: Dimetric Select
Grup: Projections
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Click (and drag) to position the pair of angles that will be used with the
"Dimetric Draw" tool.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
This tool is only available with "complexity" (expertise level) set to
'Advanced'.
Shihni edhe: Vizatim me 1 Qendër, Përzgjedhje e 1 Qendre, Vizatim me 2 Qendra,
Përzgjedhje e 2 Qendrash, Vizatim me 3 Qendra, Përzgjedhje e 3 Qendrash,
Isometric Line, Dimetric Draw, Trimetric Select, Trimetric Draw, Oblique Select
, Oblique Draw, & Perspektivë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,16 @@
Mjeti “Magjik” i Tux Paint-it: Shformim
Grup: Shformime
Autor: Bill Kendrick <bill@newbreedsoftware.com>
This slightly distorts the picture wherever you move the mouse.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,16 @@
Mjeti “Magjik” i Tux Paint-it: Pamje e Dyfishtë
Grup: Filtra Ngjyrash
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Kjo përzien figurën me vetveten, për të simuluar pamje të dyfishtë.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Shihni edhe: Syze 3D & Ndarje Ngjyrash.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,16 @@
Mjeti “Magjik” i Tux Paint-it: Pikim
Grup: Shformime
Autor: Bill Kendrick <bill@newbreedsoftware.com>
This makes the paint "drip" wherever you move the mouse.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,18 @@
Mjeti “Magjik” i Tux Paint-it: Skaje
Grup: Shformime
Autor: Andrew Corcoran <akanewbie@gmail.com>
Trace the edges in your picture, over a white background.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
Shihni edhe: Me reliev & Siluetë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,20 @@
Mjeti “Magjik” i Tux Paint-it: Me reliev
Grup: Shformime
Autor: Bill Kendrick <bill@newbreedsoftware.com>
This makes parts of your picture look "embossed." Wherever there are sharp
edges in your picture, the picture will look raised like it was stamped in
metal.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron rregullime të shumta madhësie.
Shihni edhe: Skaje & Siluetë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,27 @@
Mjeti “Magjik” i Tux Paint-it: Epitrochoid
Grup: Artistike
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Click to place the center of an epitrochoid curve, then drag left/right to
adjust the radius of a fixed circle, and up/down to adjust the radius of the
circle that will roll along its outside to produce the drawing. The size
options allow positioning the "pen" that paints the curve relative to the
rolling circle. (If the Magic size feature is disabled, multiple "Epitrochoid"
tools will be made available.)
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron rregullime të shumta madhësie.
Ky mjet ofron zgjedhje ngjyrash.
Shihni edhe: Epitrochoid Inside, Epitrochoid Edge, Epitrochoid Outside,
Hypotrochoid, Hypotrochoid Inside, Hypotrochoid Edge, Hypotrochoid Outside, Cep
me Thurje, Skaje me Thurje, & V me Thurje.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,23 @@
Mjeti “Magjik” i Tux Paint-it: Epitrochoid Edge
Grup: Artistike
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Click to place the center of an epitrochoid curve, then drag left/right to
adjust the radius of a fixed circle, and up/down to adjust the radius of the
circle that will roll along its outside to produce the drawing. The "pen" that
paints the curve will be on the edge of the rolling circle.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron zgjedhje ngjyrash.
Shihni edhe: Epitrochoid, Epitrochoid Inside, Epitrochoid Outside, Hypotrochoid
, Hypotrochoid Inside, Hypotrochoid Edge, Hypotrochoid Outside, Cep me Thurje,
Skaje me Thurje, & V me Thurje.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,23 @@
Mjeti “Magjik” i Tux Paint-it: Epitrochoid Inside
Grup: Artistike
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Click to place the center of an epitrochoid curve, then drag left/right to
adjust the radius of a fixed circle, and up/down to adjust the radius of the
circle that will roll along its outside to produce the drawing. The "pen" that
paints the curve will be on the inside of the rolling circle.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron zgjedhje ngjyrash.
Shihni edhe: Epitrochoid, Epitrochoid Edge, Epitrochoid Outside, Hypotrochoid,
Hypotrochoid Inside, Hypotrochoid Edge, Hypotrochoid Outside, Cep me Thurje,
Skaje me Thurje, & V me Thurje.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,23 @@
Mjeti “Magjik” i Tux Paint-it: Epitrochoid Outside
Grup: Artistike
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Click to place the center of an epitrochoid curve, then drag left/right to
adjust the radius of a fixed circle, and up/down to adjust the radius of the
circle that will roll along its outside to produce the drawing. The "pen" that
paints the curve will be on the outside of the rolling circle.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron zgjedhje ngjyrash.
Shihni edhe: Epitrochoid, Epitrochoid Inside, Epitrochoid Edge, Hypotrochoid,
Hypotrochoid Inside, Hypotrochoid Edge, Hypotrochoid Outside, Cep me Thurje,
Skaje me Thurje, & V me Thurje.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,18 @@
Mjeti “Magjik” i Tux Paint-it: Sy peshku
Grup: Shformime
Autor: Adam Rakowski <foo-script@o2.pl>
Warp parts of your picture like it's being seen through a fisheye lens.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron rregullime të shumta madhësie.
Shihni edhe: Valëzim.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,16 @@
Mjeti “Magjik” i Tux Paint-it: Ktheje në anë tjetër
Grup: Shformime Vizatimi
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Similar to "Mirror." Click and the entire image will be turned upside-down.
Ky mjet përdoret me klikim njësh.
Shihni edhe: Pasqyroje.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,24 @@
Mjeti “Magjik” i Tux Paint-it: Lule
Grup: Artistike
Autor: Bill Kendrick <bill@newbreedsoftware.com>
This tool draws small flowers, with leafy bases and stalks. Click to set the
base, then drag the mouse upwards to draw the stalk, and finally release the
mouse button to finish the flower. It will be drawn in the currently-selected
color. The shape and length of the stalk depends on how you move the mouse
while you drag.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron rregullime të shumta madhësie.
Ky mjet ofron zgjedhje ngjyrash.
Shihni edhe: Bar.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,16 @@
Mjeti “Magjik” i Tux Paint-it: Shkumë
Grup: Vizatim
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Klikoni dhe tërhiqeni miun që të vizatoni flluska të shkumëzuara. Sa më shumë
që e tërhiqni miun në një vend të caktuar, aq më shumë flluska të vockla do të
ndërthuren për të prodhuar flluska më të mëdha.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,19 @@
Mjeti “Magjik” i Tux Paint-it: Kthim Faqeje
Grup: Shformime Vizatimi
Autorë: Adam Rakowski <foo-script@o2.pl>
Bill Kendrick <bill@newbreedsoftware.com>
Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Click a corner of your picture and drag towards the center to fold it up like a
piece of paper.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron zgjedhje ngjyrash.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,16 @@
Mjeti “Magjik” i Tux Paint-it: Gdhendje
Grup: Vizatim
Autor: Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Vizatoni një skemë zbukuruese me ndërthurje që duket si një gdhendje në dru.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron zgjedhje ngjyrash.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,16 @@
Mjeti “Magjik” i Tux Paint-it: Gëzof
Grup: Vizatim
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Shtoni gëzof te vizatimi juaj.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron zgjedhje ngjyrash.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,15 @@
Mjeti “Magjik” i Tux Paint-it: Pllakë Xhami
Grup: Shformime
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Click and drag over your picture to make it look like it's being seen through
glass tiles.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,17 @@
Mjeti “Magjik” i Tux Paint-it: Sy të Zgurdulluar
Grup: Artistike
Autor: Bill Kendrick <bill@newbreedsoftware.com>
Draws a googly eye where you click. Drag to position the pupil. (If the Magic
size feature is disabled, multiple "Googly Eyes" tools will be made available.)
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron rregullime të shumta madhësie.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,21 @@
Mjeti “Magjik” i Tux Paint-it: Bar
Grup: Vizatim
Autor: Albert Cahalan <albert@users.sf.net>
Ky vizaton bar te figura. Sa më lart te kanavaca, aq më i vogël vizatohet bari,
duke dhënë një iluzion perspektive. Bari mund të vizatohet me ngjyrime të
ndryshme të të gjelbrës duke përzgjedhur ngjyra të ndryshme te paleta e
ngjyrave.
Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.
Ky mjet ofron zgjedhje ngjyrash.
Shihni edhe: Lule.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,15 @@
Mjeti “Magjik” i Tux Paint-it: Gjysmë-ton
Grup: Shformime
Autor: Bill Kendrick <bill@newbreedsoftware.com>
This makes parts of your picture look like newsprint. Different sizes of cyan,
magenta, yellow, and black "ink" will appear in place of your picture.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,18 @@
Mjeti “Magjik” i Tux Paint-it: Mozaik Gjashtëkëndor
Grup: Shformime
Autor: Pere Pujal i Carabantes <pere@fornol.no-ip.org>
Shndërron pjesë të fotos tuaj në një një mozaik kutish gjashtëkëndore.
Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.
Ky mjet ofron zgjedhje ngjyrash.
Shihni edhe: Mozaik i Parregullt, Mozaik Katror, & Mozaik.
-------------------------------------------------------------------------------
Tux Paint 0.9.32

View file

@ -0,0 +1,19 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Vizatim me 1 Qendër</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Vizatim me 1 Qendër</h1>
<h2 align="center">Grup: Projections</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Klikoni dhe tërhiqeni, për të vizatuar perspektivë me 1 qendër projeksioni. Vijat do të shkojnë drejt qendrës tuaj të projeksionit, ose do të jenë horizontale, ose vertikale. Përdorni “Përzgjedhje e 1 Qendre” që të zgjidhni qendrën tuaj të projeksionit (e mundshme vetëm nën mënyrën “e thelluar”).</p>
<p align=center><img src="../../../html/images/magic_examples/1pt_perspective.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>Ky mjet reagon ndaj rregullimit “kompleksitet” (shkallë ekspertize).</p>
<p>Shihni edhe: <a href="1pt_perspective_select.html">Përzgjedhje e 1 Qendre</a>, <a href="2pt_perspective.html">Vizatim me 2 Qendra</a>, <a href="2pt_perspective_select.html">Përzgjedhje e 2 Qendrash</a>, <a href="3pt_perspective.html">Vizatim me 3 Qendra</a>, <a href="3pt_perspective_select.html">Përzgjedhje e 3 Qendrash</a>, <a href="isometric_line.html">Isometric Line</a>, <a href="dimetric_select.html">Dimetric Select</a>, <a href="dimetric_draw.html">Dimetric Draw</a>, <a href="trimetric_select.html">Trimetric Select</a>, <a href="trimetric_draw.html">Trimetric Draw</a>, <a href="oblique_select.html">Oblique Select</a>, <a href="oblique_draw.html">Oblique Draw</a>, &amp; <a href="perspective.html">Perspektivë</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Përzgjedhje e 1 Qendre</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Përzgjedhje e 1 Qendre</h1>
<h2 align="center">Grup: Projections</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Klikoni (dhe tërhiqeni) për të vendosur diku qendrën e projeksionit që do të përdoret me mjetin “Vizatim me 1 Qendër”.</p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>This tool is <em>only available</em> with "complexity" (expertise level) set to 'Advanced'.</p>
<p>Shihni edhe: <a href="1pt_perspective.html">Vizatim me 1 Qendër</a>, <a href="2pt_perspective.html">Vizatim me 2 Qendra</a>, <a href="2pt_perspective_select.html">Përzgjedhje e 2 Qendrash</a>, <a href="3pt_perspective.html">Vizatim me 3 Qendra</a>, <a href="3pt_perspective_select.html">Përzgjedhje e 3 Qendrash</a>, <a href="isometric_line.html">Isometric Line</a>, <a href="dimetric_select.html">Dimetric Select</a>, <a href="dimetric_draw.html">Dimetric Draw</a>, <a href="trimetric_select.html">Trimetric Select</a>, <a href="trimetric_draw.html">Trimetric Draw</a>, <a href="oblique_select.html">Oblique Select</a>, <a href="oblique_draw.html">Oblique Draw</a>, &amp; <a href="perspective.html">Perspektivë</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,19 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Vizatim me 2 Qendra</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Vizatim me 2 Qendra</h1>
<h2 align="center">Grup: Projections</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Klikoni dhe tërhiqeni, për të vizatuar perspektivë me 2 qendra projeksioni. Vijat do të shkojnë drejt dy qendrave tuaja të projeksionit, ose do të jenë drejtohen ose nga “horizonti” i përcaktuar nga dy qendrat e projeksionit, ose me një vijë pingule me atë “horizont”. Përdorni “Përzgjedhje e 2 Qendrash” që të zgjidhni qendrat tuaja të projeksionit (e mundshme vetëm nën mënyrën “e thelluar”).</p>
<p align=center><img src="../../../html/images/magic_examples/2pt_perspective.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>This tool is <em>not available</em> with "complexity" (expertise level) set to 'Novice'.</p>
<p>Shihni edhe: <a href="1pt_perspective.html">Vizatim me 1 Qendër</a>, <a href="1pt_perspective_select.html">Përzgjedhje e 1 Qendre</a>, <a href="2pt_perspective_select.html">Përzgjedhje e 2 Qendrash</a>, <a href="3pt_perspective.html">Vizatim me 3 Qendra</a>, <a href="3pt_perspective_select.html">Përzgjedhje e 3 Qendrash</a>, <a href="isometric_line.html">Isometric Line</a>, <a href="dimetric_select.html">Dimetric Select</a>, <a href="dimetric_draw.html">Dimetric Draw</a>, <a href="trimetric_select.html">Trimetric Select</a>, <a href="trimetric_draw.html">Trimetric Draw</a>, <a href="oblique_select.html">Oblique Select</a>, <a href="oblique_draw.html">Oblique Draw</a>, &amp; <a href="perspective.html">Perspektivë</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Përzgjedhje e 2 Qendrash</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Përzgjedhje e 2 Qendrash</h1>
<h2 align="center">Grup: Projections</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Klikoni (dhe tërhiqeni) për të vendosur diku dy qendra projeksioni që do të përdoret me mjetin “Vizatim me 2 Qendra”.</p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>This tool is <em>only available</em> with "complexity" (expertise level) set to 'Advanced'.</p>
<p>Shihni edhe: <a href="1pt_perspective.html">Vizatim me 1 Qendër</a>, <a href="1pt_perspective_select.html">Përzgjedhje e 1 Qendre</a>, <a href="2pt_perspective.html">Vizatim me 2 Qendra</a>, <a href="3pt_perspective.html">Vizatim me 3 Qendra</a>, <a href="3pt_perspective_select.html">Përzgjedhje e 3 Qendrash</a>, <a href="isometric_line.html">Isometric Line</a>, <a href="dimetric_select.html">Dimetric Select</a>, <a href="dimetric_draw.html">Dimetric Draw</a>, <a href="trimetric_select.html">Trimetric Select</a>, <a href="trimetric_draw.html">Trimetric Draw</a>, <a href="oblique_select.html">Oblique Select</a>, <a href="oblique_draw.html">Oblique Draw</a>, &amp; <a href="perspective.html">Perspektivë</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Syze 3D</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Syze 3D</h1>
<h2 align="center">Grup: Filtra Ngjyrash</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>This tool horizontally separates your entire picture's red and cyan color channels, letting you create anaglyphic pictures that can be viewed with 3D glasses.</p>
<p align=center><img src="../../../html/images/magic_examples/3dglasses.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Shihni edhe: <a href="colorsep.html">Ndarje Ngjyrash</a> &amp; <a href="doublevision.html">Pamje e Dyfishtë</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,19 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Vizatim me 3 Qendra</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Vizatim me 3 Qendra</h1>
<h2 align="center">Grup: Projections</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Klikoni (dhe tërhiqeni) për të vizatuar me 3 qendra projeksioni. Vijat do të shkojnë vetëm drejt tre qendrave tuaja të projeksionit, ose do të drejtohen me “horizontin” e përcaktuar nga dy prej qendrave të projeksionit. Përdorni “Përzgjedhje 3 Qendrash”, për të zgjedhur qendrat tuaja të projeksionit (mund të kihet vetëm nën mënyrën “e thelluar”). Nën mënyrën “fillestar”, do të ketë dy mjete “Vizatimi me 3 Qendra”, një me qendra projeksioni që shohin përsipër dhe një me qendra projeksioni që shohin për poshtë.</p>
<p align=center><img src="../../../html/images/magic_examples/3pt_perspective.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>This tool is <em>not available</em> with "complexity" (expertise level) set to 'Novice'.</p>
<p>Shihni edhe: <a href="1pt_perspective.html">Vizatim me 1 Qendër</a>, <a href="1pt_perspective_select.html">Përzgjedhje e 1 Qendre</a>, <a href="2pt_perspective.html">Vizatim me 2 Qendra</a>, <a href="2pt_perspective_select.html">Përzgjedhje e 2 Qendrash</a>, <a href="3pt_perspective_select.html">Përzgjedhje e 3 Qendrash</a>, <a href="isometric_line.html">Isometric Line</a>, <a href="dimetric_select.html">Dimetric Select</a>, <a href="dimetric_draw.html">Dimetric Draw</a>, <a href="trimetric_select.html">Trimetric Select</a>, <a href="trimetric_draw.html">Trimetric Draw</a>, <a href="oblique_select.html">Oblique Select</a>, <a href="oblique_draw.html">Oblique Draw</a>, &amp; <a href="perspective.html">Perspektivë</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Përzgjedhje e 3 Qendrash</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Përzgjedhje e 3 Qendrash</h1>
<h2 align="center">Grup: Projections</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Klikoni (dhe tërhiqeni) për të vendosur diku tre qendra projeksioni që do të përdoret me mjetin “Vizatim me 3 Qendra”.</p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>This tool is <em>only available</em> with "complexity" (expertise level) set to 'Advanced'.</p>
<p>Shihni edhe: <a href="1pt_perspective.html">Vizatim me 1 Qendër</a>, <a href="1pt_perspective_select.html">Përzgjedhje e 1 Qendre</a>, <a href="2pt_perspective.html">Vizatim me 2 Qendra</a>, <a href="2pt_perspective_select.html">Përzgjedhje e 2 Qendrash</a>, <a href="3pt_perspective.html">Vizatim me 3 Qendra</a>, <a href="isometric_line.html">Isometric Line</a>, <a href="dimetric_select.html">Dimetric Select</a>, <a href="dimetric_draw.html">Dimetric Draw</a>, <a href="trimetric_select.html">Trimetric Select</a>, <a href="trimetric_draw.html">Trimetric Draw</a>, <a href="oblique_select.html">Oblique Select</a>, <a href="oblique_draw.html">Oblique Draw</a>, &amp; <a href="perspective.html">Perspektivë</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Grila</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Grila</h1>
<h2 align="center">Grup: Zbukurime Fotoje</h2>
<h3 align="center">Autor:
Pere Pujal i Carabantes &lt;<a href="mailto:pere@fornol.no-ip.org">pere@fornol.no-ip.org</a>&gt;</h3>
<p>Klikoni afër skajit të vizatimit tuaj për të ulur grila dritareje përmbi të. Lëvizni pingulthi për të hapur ose mbyllur grilat.</p>
<p align=center><img src="../../../html/images/magic_examples/blinds.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,18 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Blloqe</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Blloqe</h1>
<h2 align="center">Grup: Shformime</h2>
<h3 align="center">Autorë:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;<br>
Albert Cahalan &lt;<a href="mailto:albert@users.sf.net">albert@users.sf.net</a>&gt;<br>
</h3>
<p>This makes the picture blocky looking ("pixelated") wherever you drag the mouse.</p>
<p align=center><img src="../../../html/images/magic_examples/blocks.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Çelje</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Çelje</h1>
<h2 align="center">Grup: Filtra Ngjyrash</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Shtoni një efekt “çeljeje” rrezatues.</p>
<p align=center><img src="../../../html/images/magic_examples/bloom.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,19 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Turbulloje</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Turbulloje</h1>
<h2 align="center">Grup: Shformime</h2>
<h3 align="center">Autorë:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;<br>
Albert Cahalan &lt;<a href="mailto:albert@users.sf.net">albert@users.sf.net</a>&gt;<br>
</h3>
<p>This makes the picture fuzzy wherever you drag the mouse.</p>
<p align=center><img src="../../../html/images/magic_examples/blur.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Shihni edhe: <a href="sharpen.html">Mprehe</a> &amp; <a href="smudge.html">Njollose</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,18 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Tulla</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Tulla</h1>
<h2 align="center">Grup: Vizatim</h2>
<h3 align="center">Autor:
Albert Cahalan &lt;<a href="mailto:albert@users.sf.net">albert@users.sf.net</a>&gt;</h3>
<p>This tool intelligently paints brick patterns on the canvas. The bricks can be tinted various redish hues by selecting different colors in the color palette. (If the Magic size feature is disabled, multiple "Bricks" tools will be made available.)</p>
<p align=center><img src="../../../html/images/magic_examples/bricks.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>Shihni edhe: <a href="pixels.html">Pikselë</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Bukurshkrim</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Bukurshkrim</h1>
<h2 align="center">Grup: Vizatim</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Ky vizaton në kanavacë me një penë bukurshkrimi. Sa më shpejt ta lëvizni, aq më të holla vijat.</p>
<p align=center><img src="../../../html/images/magic_examples/calligraphy.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Vizatimor</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Vizatimor</h1>
<h2 align="center">Grup: Filtra Ngjyrash</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Ky e bën figurën të duket si një karikaturë &mdash; me përvijime të trasha dhe ngjyra të ndezura, të plota &mdash; kurdo që lëvizni miun.</p>
<p align=center><img src="../../../html/images/magic_examples/cartoon.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Shkumës</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Shkumës</h1>
<h2 align="center">Grup: Shformime</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>This makes parts of the picture (where you move the mouse) look like a chalk drawing.</p>
<p align=center><img src="../../../html/images/magic_examples/chalk.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Fushë shahu</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Fushë shahu</h1>
<h2 align="center">Grup: Zbukurime Fotoje</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Kjo mbulon krejt kanavacën me një model fushe shahu, duke përdorur ngjyrën e çastit. Tërhiqeni, që të ndryshojë madhësia e kuadrateve.</p>
<p align=center><img src="../../../html/images/magic_examples/checkerboard.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Rrathë</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Rrathë</h1>
<h2 align="center">Grup: Shformime</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>This transforms the picture into circular brush strokes around where you clicked.</p>
<p align=center><img src="../../../html/images/magic_examples/circles.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Shihni edhe: <a href="rays.html">Rreze</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Klonoje</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Klonoje</h1>
<h2 align="center">Grup: Shformime</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Clone (copy, via painting) part of the picture. Click ones to choose the source, then click and drag to clone it elsewhere in the drawing. Once you release, click to choose another source and start again.</p>
<p align=center><img src="../../../html/images/magic_examples/clone.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Ky mjet reagon ndaj rregullimit “kompleksitet” (shkallë ekspertize).</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Ngjyrë dhe E bardhë</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Ngjyrë dhe E bardhë</h1>
<h2 align="center">Grup: Filtra Ngjyrash</h2>
<h3 align="center">Autor:
Andrew Corcoran &lt;<a href="mailto:akanewbie@gmail.com">akanewbie@gmail.com</a>&gt;</h3>
<p>This makes parts of your picture two colors: white, and the color chosen in the palette. (i.e., if you choose black, you'll get a black and white picture).</p>
<p align=center><img src="../../../html/images/magic_examples/color_and_white.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Këmbim Ngjyrash</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Këmbim Ngjyrash</h1>
<h2 align="center">Grup: Filtra Ngjyrash</h2>
<h3 align="center">Autor:
Andrew Corcoran &lt;<a href="mailto:akanewbie@gmail.com">akanewbie@gmail.com</a>&gt;</h3>
<p>Kjo ndërron ngjyrat në foton tuaj.</p>
<p align=center><img src="../../../html/images/magic_examples/color_shift.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Ndarje Ngjyrash</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Ndarje Ngjyrash</h1>
<h2 align="center">Grup: Filtra Ngjyrash</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>This tool separates one color out of your entire picture, shifting colors away from each other (similar to '3D Glasses', but you may choose the any color to separate, and may move in any direction).</p>
<p align=center><img src="../../../html/images/magic_examples/colorsep.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>Shihni edhe: <a href="3dglasses.html">Syze 3D</a> &amp; <a href="doublevision.html">Pamje e Dyfishtë</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Bonbone</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Bonbone</h1>
<h2 align="center">Grup: Vizatim</h2>
<h3 align="center">Autor:
Adam Rakowski &lt;<a href="mailto:foo-script@o2.pl">foo-script@o2.pl</a>&gt;</h3>
<p>Hidhni bonbone mbi vizatimin tuaj!</p>
<p align=center><img src="../../../html/images/magic_examples/confetti.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Errësoje</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Errësoje</h1>
<h2 align="center">Grup: Filtra Ngjyrash</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Ky i errëson ngjyrat, kurdo që tërhiqni miun. (Kryejeni mbi të njëjtin vend shumë herë dhe më në fund do të bëhet e zezë.)</p>
<p align=center><img src="../../../html/images/magic_examples/darken.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Shihni edhe: <a href="lighten.html">Ndriçoje</a>, <a href="tint.html">Ngjyrosje</a>, <a href="saturate.html">Ngope</a>, &amp; <a href="desaturate.html">Çngope</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Çngope</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Çngope</h1>
<h2 align="center">Grup: Filtra Ngjyrash</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Ky heq ngopjen prej ngjyrash, kurdo që tërhiqni miun. (Kryejeni mbi të njëjtin vend shumë herë dhe më në fund do të bëhet diçka si gri.)</p>
<p align=center><img src="../../../html/images/magic_examples/desaturate.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Shihni edhe: <a href="saturate.html">Ngope</a>, <a href="darken.html">Errësoje</a>, <a href="lighten.html">Ndriçoje</a>, <a href="tint.html">Ngjyrosje</a>, <a href="remove_color.html">Hiqe Ngjyrën</a>, &amp; <a href="keep_color.html">Mbaje Ngjyrën</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,19 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Dimetric Draw</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Dimetric Draw</h1>
<h2 align="center">Grup: Projections</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Click and drag to draw in a dimetric projection. Lines will only go vertically, or at a chosen angle and its mirror. Use "Dimetric Select" to adjust the angle.</p>
<p align=center><img src="../../../html/images/magic_examples/dimetric_draw.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>This tool is <em>not available</em> with "complexity" (expertise level) set to 'Novice'.</p>
<p>Shihni edhe: <a href="1pt_perspective.html">Vizatim me 1 Qendër</a>, <a href="1pt_perspective_select.html">Përzgjedhje e 1 Qendre</a>, <a href="2pt_perspective.html">Vizatim me 2 Qendra</a>, <a href="2pt_perspective_select.html">Përzgjedhje e 2 Qendrash</a>, <a href="3pt_perspective.html">Vizatim me 3 Qendra</a>, <a href="3pt_perspective_select.html">Përzgjedhje e 3 Qendrash</a>, <a href="isometric_line.html">Isometric Line</a>, <a href="dimetric_select.html">Dimetric Select</a>, <a href="trimetric_select.html">Trimetric Select</a>, <a href="trimetric_draw.html">Trimetric Draw</a>, <a href="oblique_select.html">Oblique Select</a>, <a href="oblique_draw.html">Oblique Draw</a>, &amp; <a href="perspective.html">Perspektivë</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Dimetric Select</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Dimetric Select</h1>
<h2 align="center">Grup: Projections</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Click (and drag) to position the pair of angles that will be used with the "Dimetric Draw" tool.</p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>This tool is <em>only available</em> with "complexity" (expertise level) set to 'Advanced'.</p>
<p>Shihni edhe: <a href="1pt_perspective.html">Vizatim me 1 Qendër</a>, <a href="1pt_perspective_select.html">Përzgjedhje e 1 Qendre</a>, <a href="2pt_perspective.html">Vizatim me 2 Qendra</a>, <a href="2pt_perspective_select.html">Përzgjedhje e 2 Qendrash</a>, <a href="3pt_perspective.html">Vizatim me 3 Qendra</a>, <a href="3pt_perspective_select.html">Përzgjedhje e 3 Qendrash</a>, <a href="isometric_line.html">Isometric Line</a>, <a href="dimetric_draw.html">Dimetric Draw</a>, <a href="trimetric_select.html">Trimetric Select</a>, <a href="trimetric_draw.html">Trimetric Draw</a>, <a href="oblique_select.html">Oblique Select</a>, <a href="oblique_draw.html">Oblique Draw</a>, &amp; <a href="perspective.html">Perspektivë</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Shformim</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Shformim</h1>
<h2 align="center">Grup: Shformime</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>This slightly distorts the picture wherever you move the mouse.</p>
<p align=center><img src="../../../html/images/magic_examples/distortion.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Pamje e Dyfishtë</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Pamje e Dyfishtë</h1>
<h2 align="center">Grup: Filtra Ngjyrash</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Kjo përzien figurën me vetveten, për të simuluar pamje të dyfishtë.</p>
<p align=center><img src="../../../html/images/magic_examples/doublevision.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Shihni edhe: <a href="3dglasses.html">Syze 3D</a> &amp; <a href="colorsep.html">Ndarje Ngjyrash</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Pikim</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Pikim</h1>
<h2 align="center">Grup: Shformime</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>This makes the paint "drip" wherever you move the mouse.</p>
<p align=center><img src="../../../html/images/magic_examples/drip.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Skaje</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Skaje</h1>
<h2 align="center">Grup: Shformime</h2>
<h3 align="center">Autor:
Andrew Corcoran &lt;<a href="mailto:akanewbie@gmail.com">akanewbie@gmail.com</a>&gt;</h3>
<p>Trace the edges in your picture, over a white background.</p>
<p align=center><img src="../../../html/images/magic_examples/edges.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Shihni edhe: <a href="emboss.html">Me reliev</a> &amp; <a href="silhouette.html">Siluetë</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Me reliev</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Me reliev</h1>
<h2 align="center">Grup: Shformime</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>This makes parts of your picture look "embossed." Wherever there are sharp edges in your picture, the picture will look raised like it was stamped in metal.</p>
<p align=center><img src="../../../html/images/magic_examples/emboss.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Shihni edhe: <a href="edges.html">Skaje</a> &amp; <a href="silhouette.html">Siluetë</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,18 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Epitrochoid</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Epitrochoid</h1>
<h2 align="center">Grup: Artistike</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Click to place the center of an epitrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its outside to produce the drawing. The size options allow positioning the "pen" that paints the curve relative to the rolling circle. (If the Magic size feature is disabled, multiple "Epitrochoid" tools will be made available.)</p>
<p align=center><img src="../../../html/images/magic_examples/epitrochoid.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>Shihni edhe: <a href="epitrochoid_inside.html">Epitrochoid Inside</a>, <a href="epitrochoid_edge.html">Epitrochoid Edge</a>, <a href="epitrochoid_outside.html">Epitrochoid Outside</a>, <a href="hypotrochoid.html">Hypotrochoid</a>, <a href="hypotrochoid_inside.html">Hypotrochoid Inside</a>, <a href="hypotrochoid_edge.html">Hypotrochoid Edge</a>, <a href="hypotrochoid_outside.html">Hypotrochoid Outside</a>, <a href="string_corner.html">Cep me Thurje</a>, <a href="string_edges.html">Skaje me Thurje</a>, &amp; <a href="string_v.html">V me Thurje</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Epitrochoid Edge</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Epitrochoid Edge</h1>
<h2 align="center">Grup: Artistike</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Click to place the center of an epitrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its outside to produce the drawing. The "pen" that paints the curve will be on the edge of the rolling circle.</p>
<p align=center><img src="../../../html/images/magic_examples/epitrochoid_edge.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>Shihni edhe: <a href="epitrochoid.html">Epitrochoid</a>, <a href="epitrochoid_inside.html">Epitrochoid Inside</a>, <a href="epitrochoid_outside.html">Epitrochoid Outside</a>, <a href="hypotrochoid.html">Hypotrochoid</a>, <a href="hypotrochoid_inside.html">Hypotrochoid Inside</a>, <a href="hypotrochoid_edge.html">Hypotrochoid Edge</a>, <a href="hypotrochoid_outside.html">Hypotrochoid Outside</a>, <a href="string_corner.html">Cep me Thurje</a>, <a href="string_edges.html">Skaje me Thurje</a>, &amp; <a href="string_v.html">V me Thurje</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Epitrochoid Inside</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Epitrochoid Inside</h1>
<h2 align="center">Grup: Artistike</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Click to place the center of an epitrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its outside to produce the drawing. The "pen" that paints the curve will be on the inside of the rolling circle.</p>
<p align=center><img src="../../../html/images/magic_examples/epitrochoid_inside.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>Shihni edhe: <a href="epitrochoid.html">Epitrochoid</a>, <a href="epitrochoid_edge.html">Epitrochoid Edge</a>, <a href="epitrochoid_outside.html">Epitrochoid Outside</a>, <a href="hypotrochoid.html">Hypotrochoid</a>, <a href="hypotrochoid_inside.html">Hypotrochoid Inside</a>, <a href="hypotrochoid_edge.html">Hypotrochoid Edge</a>, <a href="hypotrochoid_outside.html">Hypotrochoid Outside</a>, <a href="string_corner.html">Cep me Thurje</a>, <a href="string_edges.html">Skaje me Thurje</a>, &amp; <a href="string_v.html">V me Thurje</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Epitrochoid Outside</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Epitrochoid Outside</h1>
<h2 align="center">Grup: Artistike</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Click to place the center of an epitrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its outside to produce the drawing. The "pen" that paints the curve will be on the outside of the rolling circle.</p>
<p align=center><img src="../../../html/images/magic_examples/epitrochoid_outside.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>Shihni edhe: <a href="epitrochoid.html">Epitrochoid</a>, <a href="epitrochoid_inside.html">Epitrochoid Inside</a>, <a href="epitrochoid_edge.html">Epitrochoid Edge</a>, <a href="hypotrochoid.html">Hypotrochoid</a>, <a href="hypotrochoid_inside.html">Hypotrochoid Inside</a>, <a href="hypotrochoid_edge.html">Hypotrochoid Edge</a>, <a href="hypotrochoid_outside.html">Hypotrochoid Outside</a>, <a href="string_corner.html">Cep me Thurje</a>, <a href="string_edges.html">Skaje me Thurje</a>, &amp; <a href="string_v.html">V me Thurje</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Sy peshku</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Sy peshku</h1>
<h2 align="center">Grup: Shformime</h2>
<h3 align="center">Autor:
Adam Rakowski &lt;<a href="mailto:foo-script@o2.pl">foo-script@o2.pl</a>&gt;</h3>
<p>Warp parts of your picture like it's being seen through a fisheye lens.</p>
<p align=center><img src="../../../html/images/magic_examples/fisheye.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Shihni edhe: <a href="ripples.html">Valëzim</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Ktheje në anë tjetër</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Ktheje në anë tjetër</h1>
<h2 align="center">Grup: Shformime Vizatimi</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Similar to "Mirror." Click and the entire image will be turned upside-down.</p>
<p align=center><img src="../../../html/images/magic_examples/flip.png"></p>
<p>Ky mjet përdoret me klikim njësh.</p>
<p>Shihni edhe: <a href="mirror.html">Pasqyroje</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,18 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Lule</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Lule</h1>
<h2 align="center">Grup: Artistike</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>This tool draws small flowers, with leafy bases and stalks. Click to set the base, then drag the mouse upwards to draw the stalk, and finally release the mouse button to finish the flower. It will be drawn in the currently-selected color. The shape and length of the stalk depends on how you move the mouse while you drag.</p>
<p align=center><img src="../../../html/images/magic_examples/flower.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>Shihni edhe: <a href="grass.html">Bar</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,15 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Shkumë</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Shkumë</h1>
<h2 align="center">Grup: Vizatim</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Klikoni dhe tërhiqeni miun që të vizatoni flluska të shkumëzuara. Sa më shumë që e tërhiqni miun në një vend të caktuar, aq më shumë flluska të vockla do të ndërthuren për të prodhuar flluska më të mëdha.</p>
<p align=center><img src="../../../html/images/magic_examples/foam.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,19 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Kthim Faqeje</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Kthim Faqeje</h1>
<h2 align="center">Grup: Shformime Vizatimi</h2>
<h3 align="center">Autorë:
Adam Rakowski &lt;<a href="mailto:foo-script@o2.pl">foo-script@o2.pl</a>&gt;<br>
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;<br>
Pere Pujal i Carabantes &lt;<a href="mailto:pere@fornol.no-ip.org">pere@fornol.no-ip.org</a>&gt;<br>
</h3>
<p>Click a corner of your picture and drag towards the center to fold it up like a piece of paper.</p>
<p align=center><img src="../../../html/images/magic_examples/fold.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Gdhendje</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Gdhendje</h1>
<h2 align="center">Grup: Vizatim</h2>
<h3 align="center">Autor:
Pere Pujal i Carabantes &lt;<a href="mailto:pere@fornol.no-ip.org">pere@fornol.no-ip.org</a>&gt;</h3>
<p>Vizatoni një skemë zbukuruese me ndërthurje që duket si një gdhendje në dru.</p>
<p align=center><img src="../../../html/images/magic_examples/fretwork.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Gëzof</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Gëzof</h1>
<h2 align="center">Grup: Vizatim</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Shtoni gëzof te vizatimi juaj.</p>
<p align=center><img src="../../../html/images/magic_examples/fur.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,15 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Pllakë Xhami</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Pllakë Xhami</h1>
<h2 align="center">Grup: Shformime</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Click and drag over your picture to make it look like it's being seen through glass tiles.</p>
<p align=center><img src="../../../html/images/magic_examples/glass_tile.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Sy të Zgurdulluar</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Sy të Zgurdulluar</h1>
<h2 align="center">Grup: Artistike</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Draws a googly eye where you click. Drag to position the pupil. (If the Magic size feature is disabled, multiple "Googly Eyes" tools will be made available.)</p>
<p align=center><img src="../../../html/images/magic_examples/googlyeyes.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Bar</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Bar</h1>
<h2 align="center">Grup: Vizatim</h2>
<h3 align="center">Autor:
Albert Cahalan &lt;<a href="mailto:albert@users.sf.net">albert@users.sf.net</a>&gt;</h3>
<p>Ky vizaton bar te figura. Sa më lart te kanavaca, aq më i vogël vizatohet bari, duke dhënë një iluzion perspektive. Bari mund të vizatohet me ngjyrime të ndryshme të të gjelbrës duke përzgjedhur ngjyra të ndryshme te paleta e ngjyrave.</p>
<p align=center><img src="../../../html/images/magic_examples/grass.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>Shihni edhe: <a href="flower.html">Lule</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,15 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Gjysmë-ton</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Gjysmë-ton</h1>
<h2 align="center">Grup: Shformime</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>This makes parts of your picture look like newsprint. Different sizes of cyan, magenta, yellow, and black "ink" will appear in place of your picture.</p>
<p align=center><img src="../../../html/images/magic_examples/halftone.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Mozaik Gjashtëkëndor</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Mozaik Gjashtëkëndor</h1>
<h2 align="center">Grup: Shformime</h2>
<h3 align="center">Autor:
Pere Pujal i Carabantes &lt;<a href="mailto:pere@fornol.no-ip.org">pere@fornol.no-ip.org</a>&gt;</h3>
<p>Shndërron pjesë të fotos tuaj në një një mozaik kutish gjashtëkëndore.</p>
<p align=center><img src="../../../html/images/magic_examples/hexagon_mosaic.png"></p>
<p>Ky mjet ofron si veprim vizatimi me dorë të lirë, ashtu edhe me një klikim.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>Shihni edhe: <a href="irregular_mosaic.html">Mozaik i Parregullt</a>, <a href="square_mosaic.html">Mozaik Katror</a>, &amp; <a href="mosaic.html">Mozaik</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,18 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Hypotrochoid</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Hypotrochoid</h1>
<h2 align="center">Grup: Artistike</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Click to place the center of a hypotrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its interior to produce the drawing. The size options allow positioning the "pen" that paints the curve relative to the rolling circle. (If the Magic size feature is disabled, multiple "Hypotrochoid" tools will be made available.)</p>
<p align=center><img src="../../../html/images/magic_examples/hypotrochoid.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>Shihni edhe: <a href="epitrochoid.html">Epitrochoid</a>, <a href="epitrochoid_inside.html">Epitrochoid Inside</a>, <a href="epitrochoid_edge.html">Epitrochoid Edge</a>, <a href="epitrochoid_outside.html">Epitrochoid Outside</a>, <a href="hypotrochoid_inside.html">Hypotrochoid Inside</a>, <a href="hypotrochoid_edge.html">Hypotrochoid Edge</a>, <a href="hypotrochoid_outside.html">Hypotrochoid Outside</a>, <a href="string_corner.html">Cep me Thurje</a>, <a href="string_edges.html">Skaje me Thurje</a>, &amp; <a href="string_v.html">V me Thurje</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

View file

@ -0,0 +1,18 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<body><html><head><title>Mjeti “Magjik” i Tux Paint-it: Hypotrochoid Edge</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
<h1 align="center">Mjeti “Magjik” i Tux Paint-it: Hypotrochoid Edge</h1>
<h2 align="center">Grup: Artistike</h2>
<h3 align="center">Autor:
Bill Kendrick &lt;<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>&gt;</h3>
<p>Click to place the center of a hypotrochoid curve, then drag left/right to adjust the radius of a fixed circle, and up/down to adjust the radius of the circle that will roll along its interior to produce the drawing. The "pen" that paints the curve will be on the edge of the rolling circle.</p>
<p align=center><img src="../../../html/images/magic_examples/hypotrochoid_edge.png"></p>
<p>Ky mjet përdoret si të ishte mjet vizatimi me dorë të lirë.</p>
<p>Ky mjet ofron rregullime të shumta madhësie.</p>
<p>Ky mjet ofron zgjedhje ngjyrash.</p>
<p>Shihni edhe: <a href="epitrochoid.html">Epitrochoid</a>, <a href="epitrochoid_inside.html">Epitrochoid Inside</a>, <a href="epitrochoid_edge.html">Epitrochoid Edge</a>, <a href="epitrochoid_outside.html">Epitrochoid Outside</a>, <a href="hypotrochoid.html">Hypotrochoid</a>, <a href="hypotrochoid_inside.html">Hypotrochoid Inside</a>, <a href="hypotrochoid_outside.html">Hypotrochoid Outside</a>, <a href="string_corner.html">Cep me Thurje</a>, <a href="string_edges.html">Skaje me Thurje</a>, &amp; <a href="string_v.html">V me Thurje</a>.</p>
<hr size="1" noshade />
<p align="center">Tux Paint 0.9.32</p>
</body></html>

Some files were not shown because too many files have changed in this diff Show more