Stamps can now be pre-flipped and/or pre-mirrored-and-flipped now (in addition to pre-mirrored).
Updated version # in some docs. Expanded comments in tp_magic_example.c Magic plugin example code.
This commit is contained in:
parent
51c6783846
commit
26c7051c07
13 changed files with 783 additions and 162 deletions
|
|
@ -1,5 +1,5 @@
|
|||
Tux Paint
|
||||
version 0.9.17
|
||||
version 0.9.18
|
||||
Advanced Stamps HOWTO
|
||||
|
||||
Copyright 2006 by Albert Cahalan for the Tux Paint project
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
albert@users.sf.net
|
||||
http://www.tuxpaint.org/
|
||||
|
||||
March 8, 2006 - October 26, 2006
|
||||
March 8, 2006 - August 2, 2007
|
||||
|
||||
About this HOWTO
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ http://www.tuxpaint.org/
|
|||
$Id$
|
||||
|
||||
|
||||
2007.July.19 (0.9.18)
|
||||
2007.August.2 (0.9.18)
|
||||
* Interface Improvements:
|
||||
-----------------------
|
||||
* Improved 'New' and 'Open' interface:
|
||||
|
|
@ -27,6 +27,11 @@ $Id$
|
|||
|
||||
* Added an Octagon shape to the 'Shapes' tool.
|
||||
|
||||
* Stamps can now be pre-flipped and/or pre-mirrored-and-flipped now
|
||||
(in addition to pre-mirrored).
|
||||
Use "_flip.png"/"_flip.svg" and "_mirror_flip.png"/"_mirror_flip.png",
|
||||
respectively.
|
||||
|
||||
* Documentation Imrpovements:
|
||||
---------------------------
|
||||
* Improved --usage output.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
Tux Paint
|
||||
version 0.9.17
|
||||
version 0.9.18
|
||||
Extending Tux Paint
|
||||
|
||||
Copyright 2002-2007 by Bill Kendrick and others
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
bill@newbreedsoftware.com
|
||||
http://www.tuxpaint.org/
|
||||
|
||||
June 14, 2002 - May 6, 2007
|
||||
June 14, 2002 - August 2, 2007
|
||||
|
||||
--------------------------------------------------------------------------
|
||||
|
||||
|
|
@ -428,22 +428,31 @@ Stamps
|
|||
it as Plain Text, and make sure the filename has ".dat" at the end,
|
||||
and not ".txt"...
|
||||
|
||||
Pre-Mirrored Images
|
||||
Pre-Mirrored and Flipped Images
|
||||
|
||||
In some cases, you may wish to provide a pre-drawn version of a
|
||||
stamp's mirror-image. For example, imagine a picture of a fire truck
|
||||
with the words "Fire Department" written across the side. You probably
|
||||
do not want that text to appear backwards when the image is flipped!
|
||||
stamp's mirror-image, flipped image, or even both. For example,
|
||||
imagine a picture of a fire truck with the words "Fire Department"
|
||||
written across the side. You probably do not want that text to appear
|
||||
backwards when the image is flipped!
|
||||
|
||||
To create a mirrored version of a stamp that you want Tux Paint to
|
||||
use, rather than mirroring one on its own, simply create a second
|
||||
".png" graphics file with the same name, except with the string
|
||||
".png" or ".svg" graphics file with the same name, except with
|
||||
"_mirror" before the filename extension.
|
||||
|
||||
For example, for the stamp "truck.png" you would create another file
|
||||
named "truck_mirror.png", which will be used when the stamp is
|
||||
mirrored (rather than using a backwards version of 'truck.png').
|
||||
|
||||
As of Tux Paint 0.9.18, you may similarly provide a pre-flipped image
|
||||
with "_flip" in the name, and/or an image that is both mirrored and
|
||||
flipped, by naming it "_mirror_flip".
|
||||
|
||||
Note: If the user flips and mirrors an image, and a pre-drawn
|
||||
"_mirror_flip" doesn't exist, but either "_flip" or "_mirror" does, it
|
||||
will be used, and mirrored or flipped, respectively.
|
||||
|
||||
--------------------------------------------------------------------------
|
||||
|
||||
Fonts
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
Tux Paint
|
||||
version 0.9.17
|
||||
version 0.9.18
|
||||
Frequently Asked Questions
|
||||
|
||||
Copyright 2002-2007 by Bill Kendrick and others
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
bill@newbreedsoftware.com
|
||||
http://www.tuxpaint.org/
|
||||
|
||||
September 14, 2002 - June 27, 2007
|
||||
September 14, 2002 - August 2, 2007
|
||||
|
||||
Drawing-related
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
Tux Paint
|
||||
version 0.9.17
|
||||
version 0.9.18
|
||||
|
||||
Options Documentation
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
Tux Paint
|
||||
version 0.9.17
|
||||
version 0.9.18
|
||||
|
||||
A simple drawing program for children
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ alink="#FF00FF">
|
|||
alt="Tux Paint"><br>
|
||||
version
|
||||
|
||||
0.9.17
|
||||
0.9.18
|
||||
|
||||
<br>
|
||||
Advanced Stamps HOWTO</h1>
|
||||
|
|
@ -21,7 +21,7 @@ New Breed Software</p>
|
|||
<p><a href="mailto:albert@users.sf.net">albert@users.sf.net</a><br>
|
||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a></p>
|
||||
|
||||
<p>March 8, 2006 - October 26, 2006</p>
|
||||
<p>March 8, 2006 - August 2, 2007</p>
|
||||
</center>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ alt="Tux Paint"><br>
|
|||
|
||||
version
|
||||
|
||||
0.9.17
|
||||
0.9.18
|
||||
|
||||
<br>
|
||||
Extending Tux Paint</h1>
|
||||
|
|
@ -23,7 +23,7 @@ New Breed Software</p>
|
|||
<p><a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a><br>
|
||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a></p>
|
||||
|
||||
<p>June 14, 2002 - May 6, 2007</p>
|
||||
<p>June 14, 2002 - August 2, 2007</p>
|
||||
</center>
|
||||
|
||||
<hr size=2 noshade>
|
||||
|
|
@ -558,24 +558,34 @@ effect.</p>
|
|||
</blockquote>
|
||||
</blockquote>
|
||||
|
||||
<h3>Pre-Mirrored Images</h3>
|
||||
<h3>Pre-Mirrored and Flipped Images</h3>
|
||||
<blockquote>
|
||||
<p>In some cases, you may wish to provide a pre-drawn version of
|
||||
a stamp's mirror-image. For example, imagine a picture of a fire
|
||||
truck with the words "<i>Fire Department</i>" written across
|
||||
the side. You probably do not want that text to appear backwards
|
||||
when the image is flipped!</p>
|
||||
a stamp's mirror-image, flipped image, or even both. For example,
|
||||
imagine a picture of a fire truck with the words
|
||||
"<i>Fire Department</i>" written across the side. You probably
|
||||
do not want that text to appear backwards when the image is flipped!</p>
|
||||
|
||||
<p>To create a mirrored version of a stamp that you want Tux Paint
|
||||
to use, rather than mirroring one on its own, simply create a second
|
||||
"<code>.png</code>" graphics file with the same name, except with
|
||||
the string "<code><b>_mirror</b></code>" before the filename
|
||||
"<code>.png</code>" or "<code>.svg</code>" graphics file with the
|
||||
same name, except with "<code><b>_mirror</b></code>" before the filename
|
||||
extension.</p>
|
||||
|
||||
<p>For example, for the stamp "<code><b>truck.png</b></code>" you would
|
||||
create another file named "<code><b>truck_mirror.png</b></code>", which
|
||||
will be used when the stamp is mirrored (rather than using a
|
||||
backwards version of '<code>truck.png</code>').</p>
|
||||
|
||||
<p>As of Tux Paint 0.9.18, you may similarly provide a pre-flipped
|
||||
image with "<code><b>_flip</b></code>" in the name, and/or an image that
|
||||
is both mirrored and flipped, by naming it
|
||||
"<code><b>_mirror_flip</b></code>".</p>
|
||||
|
||||
<p><b>Note:</b> If the user flips and mirrors an image, and a pre-drawn
|
||||
"<code>_mirror_flip</code>" doesn't exist, but either "<code>_flip</code>"
|
||||
or "<code>_mirror</code>" does, it will be used, and mirrored or flipped,
|
||||
respectively.</p>
|
||||
</blockquote>
|
||||
|
||||
</blockquote>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ alink="#FF00FF">
|
|||
alt="Tux Paint"><br>
|
||||
version
|
||||
|
||||
0.9.17
|
||||
0.9.18
|
||||
|
||||
<br>
|
||||
Frequently Asked Questions</h1>
|
||||
|
|
@ -22,7 +22,7 @@ New Breed Software</p>
|
|||
<p><a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a><br>
|
||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a></p>
|
||||
|
||||
<p>September 14, 2002 - June 27, 2007</p>
|
||||
<p>September 14, 2002 - August 2, 2007</p>
|
||||
</center>
|
||||
|
||||
<h2>Drawing-related</h2>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ alink="#FF00FF">
|
|||
|
||||
version
|
||||
|
||||
0.9.17
|
||||
0.9.18
|
||||
|
||||
</h1>
|
||||
<h2>Options Documentation</h2>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ alt="Tux Paint"><br>
|
|||
|
||||
version
|
||||
|
||||
0.9.17
|
||||
0.9.18
|
||||
|
||||
</h1>
|
||||
<h3>A simple drawing program for children</h3>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue