You are here

Toy 1.0.4

  • 1
  • 2
  • 3
  • 4
  • 5
Total votes: 0
Rate this item!

This plug-in creates a toy effect or tilt-shift miniature faking on a selected layer


Before
Demo picture: "Marina Duisburg am Innenhafen" - G. Sawatzky - Wikipedia.de


After


The GUI

It would be nice if somebody can compile a Windows binary and send it to me. Also needed are translations for the few strings in the plugin (see po subfolder) and for the HTML page of the help system

MEWS 1.0.1:
This Bugfix Release checks for GIMP 2.7, so no changes for GIMP 2.7 are necessary anymore.

MEWS 1.0.2:
This release should work on GIMP 2.6 AND GIMP 2.7, so it's much easier to maintain the Windows binaries. There's also a new "horizon view" in the preview. Please see the file ChangeLog for more details.

MEWS 1.0.3:
This bugfix release should correct the Cancel button crash. Please see the file ChangeLog for more details.

MEWS 1.0.4:
This bugfix release fixes the Cancel button crash on Windows. Please see the file ChangeLog for more details.

AttachmentSize
gimp-plugin-toy-1.0.4.tar.gz261.85 KB
GIMP Version: 
Code License: 

Comments

http://paste.pocoo.org/raw/537705/

Note: I appended a string meaning " – false DoF" to the name, guess another possibility would be to use the term "Miniatyr", but people might find it confusing if they install a plugin named "Toy" and there's no "Toy" in the menu? … not sure what's best.

.. to do what you like with the menu title.

Thanks for the norwegian translation, which will be included in the next update.

greetings Rüdiger

interface.c: In function ‘pressed_keys’:
interface.c:601: error: ‘GDK_KEY_Shift_L’ undeclared (first use in this function)
interface.c:601: error: (Each undeclared identifier is reported only once
interface.c:601: error: for each function it appears in.)
interface.c:601: error: ‘GDK_KEY_Shift_R’ undeclared (first use in this function)
interface.c: In function ‘released_keys’:
interface.c:623: error: ‘GDK_KEY_Shift_L’ undeclared (first use in this function)
interface.c:623: error: ‘GDK_KEY_Shift_R’ undeclared (first use in this function)
make[2]: *** [interface.o] Error 1

this function is ONLY executed by pressing a key on the keyboard. Unfortunately the plugin crashes also without pressing any key :-(

These values are defined in a file named "gdkkeysyms.h" (maybe not included or missing).
You can define these values by adding

#define GDK_KEY_Shift_L 0xffe1
#define GDK_KEY_Shift_R 0xffe2

into main.h

Rüdiger

That worked and now the plug-in is running. Thanks for sharing!

running the plugin in Gimp-2.6.11 (i even compiled myself to try it)., same results

Say you downloaded into the "Downloads" directory. Open a terminal in that directory, then, first install prerequisites for compiling:

sudo apt-get build-dep gimp
sudo apt-get install libgimp2.0-dev

Then extract, compile and install the plugin:

tar xzvf gimp-plugin-toy-1.0.3.tar.gz
cd gimp-plugin-toy
./configure
make
sudo make install

Now restart gimp and it should be in Filters->Blur->Toy :-)

Pages

Subscribe to Comments for "Toy 1.0.4"