Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 4,767
» Latest member: litstiGup
» Forum threads: 6,976
» Forum posts: 38,105
Full Statistics
|
|
|
How can I transform full image/layer? |
Posted by: hothit43 - 06-11-2020, 09:10 PM - Forum: General questions
- Replies (2)
|
|
I am having an issue using transform tools on a layer that has content outside of the image bounding box.
Unified transform or any kind of transform clips the layer/content to what is visible in the bounding box instead of letting me transform the full selection.
I've tried selecting all of the content from alpha to selection. I've tried Layer to boundary size. Using the move tool lets me move the full contents, but transform does not transform the full content. Here is a link to a gif recording of what is happening.
https://gph.is/g/4LWbOWp
|
|
|
how to install resynthesizer in gimp 2.10 on linux |
Posted by: cfdqwruivz - 06-11-2020, 12:37 AM - Forum: Extending the GIMP
- Replies (4)
|
|
hi folks,
this is a little guide on how to install resynthesizer plugin in gimp 2.10 on debian linux. resynthesizer provides handy plugins like 'heal selection'. this tutorial was tested on debian linux, but it may work on other distributions as well. i wrote this guide bc other tutorials i found didn't work for me.
anyway, here's my tutorial:
step 0: make sure the package 'gimp-plugin-registry' is NOT installed on your system. afaik it's only crap in there anyway.
step 1: install package 'gimp-python' from the latest debian version pool. for me it was:
Code:
1. add 'buster' release pool to /etc/apt/sources.list
(e.g. 'deb https://deb.debian.org/debian/ buster main non-free contrib')
2. sudo apt update
3. sudo apt install gimp-python/buster
step 1.1: make sure you have the following packages installed, or else the compilation (next step) will fail:
- automake
- libglib2.0-dev
- libgimp2.0-dev
- intltool
step 2: git clone https://github.com/bootchk/resynthesizer to somewhere you wan't to have it. then cd into it and run the following to compile the plugin scripts:
Code:
./autogen.sh
./configure
make
sudo make install
make sure you have the following packages installed, or else the compilation will fail:
step 3: open up gimp and see if it worked. open gimp from the command line to catch possible errors.
note: maybe you have to add /usr/local/lib/gimp/2.0/plug-ins to your plugin folders list in the gimp preferences.
i hope this is useful. don't hesitate to contact me if you have any problems or questions
|
|
|
Linux .desktop file |
Posted by: akovia - 06-10-2020, 02:12 AM - Forum: General questions
- Replies (2)
|
|
So I've been in the process of rebuilding my system from scratch and ran into something strange today.
I'm running Arch/xfce with Whisker Menu. I always had a panel at the top of my screen with some launchers for commonly used programs, gimp being one of them. Well I decided to get rid of the panel and just use Whisker Menu's program search instead which is like how Windows menu works for the uninitiated. Press the windows key and just start typing what you want.
This has been working well until I tried to launch gimp and it didn't return a match. It was trivial to figure out why, as the word gimp wasn't anywhere in the .desktop file, so there was nothing to match. It just struck me funny that it wasn't and I wondered who was in charge of that. I would think that you'd want the single word your program is known by to be somewhere in the name or the description/comment.
It was easily fixed by adding gimp to the Comment line, but still....
Code:
[Desktop Entry]
Version=1.0
Type=Application
_Name=GNU Image Manipulation Program
_GenericName=Image Editor
_Comment=Create images and edit photographs
# Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
_Keywords=GIMP;graphic;design;illustration;painting;
Exec=@GIMP_COMMAND@ %U
TryExec=gimp-@GIMP_APP_VERSION@
Icon=gimp
Terminal=false
Categories=Graphics;2DGraphics;RasterGraphics;GTK;
StartupNotify=true
MimeType=@MIME_TYPES@
|
|
|
Custom Window Title for Folder Selection |
Posted by: radzo73 - 06-09-2020, 09:36 PM - Forum: Scripting questions
- Replies (5)
|
|
Hey,
In my GIMP 2.8.22 script (because cropping in 2.10 sucks), I've registered a PF_DIRNAME as (PF_DIRNAME, "file_inpath", "Input Image Folder", "/tmp"), and unlike a PF_FILE, where the window title is "[title] - [PF_FILE name]", it shows "Python-Fu Folder Selection". Is there a way to change the window title so that it's just "[the PF_DIRNAME folder name]"?
With hope,
radzo73
|
|
|
|