Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,641
» Latest member: pakman
» Forum threads: 7,503
» Forum posts: 40,929

Full Statistics

Latest Threads
help with shine/gloss eff...
Forum: General questions
Last Post: Ofnuts
2 hours ago
» Replies: 1
» Views: 19
Technique for removing ov...
Forum: General questions
Last Post: denzjos
11 hours ago
» Replies: 15
» Views: 1,643
Gimp 3.0.2- Problem mergi...
Forum: General questions
Last Post: Daniel_E
Today, 09:13 AM
» Replies: 3
» Views: 167
Plugins
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
Yesterday, 08:28 AM
» Replies: 1
» Views: 133
Cannot rotate Grid lines ...
Forum: General questions
Last Post: toliveras23
Yesterday, 08:27 AM
» Replies: 2
» Views: 110
Can not save or export pi...
Forum: General questions
Last Post: Holographic Breathing
Yesterday, 07:42 AM
» Replies: 6
» Views: 261
Endianess of pixel data i...
Forum: Scripting questions
Last Post: Ofnuts
07-21-2025, 09:14 PM
» Replies: 5
» Views: 384
CMYK color mode Gimp 2.10
Forum: Extending the GIMP
Last Post: rich2005
07-20-2025, 08:21 PM
» Replies: 22
» Views: 82,628
copy sequence of filters ...
Forum: General questions
Last Post: programmer_ceds
07-20-2025, 04:03 PM
» Replies: 3
» Views: 292
[Python] In-memory save p...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: DunkleMaterie
07-20-2025, 12:54 PM
» Replies: 4
» Views: 236

 
  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 Smile

Print this item

  Ellipse Tool not forming perfect circle
Posted by: Arnav - 06-10-2020, 02:06 PM - Forum: General questions - Replies (1)

Hello.
I am using GIMP 2.10.18. I have been having a problem with the ellipse tool all of a sudden.
The ellipse tool is not forming a perfect circle on the whole page whenever i hold down Ctrl + Shift. Whereas, it forms a perfect circle in the place where i actually form an ellipse.
This problem is only with ellipse tool. It doesn't create any problems with the rectangular select tool.
I have attached a GIF file to help you guys understand my problem better.
I hope you guys can understand what I'm trying to say.
Please help me.



Attached Files Thumbnail(s)
   
Print this item

  Version 2.10.20
Posted by: mholder - 06-10-2020, 10:36 AM - Forum: General questions - Replies (10)

Flatpak on my system automatically updated to 2.10.20 just a few days ago.  The official version is still  2.10.18.

I did a search, but I can't find a list of what was changed, just a few youtube videos like this:
https://www.youtube.com/watch?v=QXZ73tIdxH8

Does anyone know where a list of changes is for at least 2.10.19?

Print this item

  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@

Print this item

  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

Print this item

Question 2.10.18 - How to revert back to older tool sliders?
Posted by: literallyOneQuestion - 06-09-2020, 05:23 AM - Forum: General questions - Replies (2)

I think my GIMP updated at some point, and now the tool sliders are thinner (without the bottom layer that increases/decreases slower). Is there any way to revert it back? [Image: Screenshot-from-2020-06-09-00-21-52.png]

Print this item

  Script OCR Image (Tesseract OCR engine )
Posted by: SnakerWolf - 06-08-2020, 04:42 AM - Forum: Extending the GIMP - Replies (7)

Script for OCR text (Balloon Text)


This script allows you to perform text recognition of the text balloons of an image, it also allows you to translate the text using Google Translator.
It can be translated from any language, Japanese, Korean, Chinese to English, Spanish. Russian.
Use the Engine Tesseract (CaptureText), to recognize the text.
It can be used for multiple images at once,

   

Videos Youtube





https://youtu.be/sASVPqiOojo


Only Scripts

.zip   OCRForBalloonsText Only Scripts.zip (Size: 85.54 KB / Downloads: 1313)


all Files necessary waifu2x,engine tesseract,tessdata, 86_Redistributable for Visual Studio 2015 (480 MB)
https://drive.google.com/file/d/1sBxH-lA...sp=sharing


Include other scripts

Script for change size, color the text.
Script for scale with Waifu2x
Script for create group layer
Script for save your selection as paths
Script for remove layers

Print this item

  How do I set up an guide layout?
Posted by: AndiGreyScale - 06-08-2020, 12:11 AM - Forum: General questions - Replies (3)

I apologize for the vague title, I'm just not sure how to phrase what it is I want to do.

I basically need help figuring out how to do something like this-

[Image: MN4RXwo.jpg]

Not the designs in it, but the layout itself. It's all perfectly aligned and I can't for the life of me figure out how to do it in GIMP.

Something like this, in photoshop.

Print this item

  Paths tool multiple selections?
Posted by: sl60 - 06-07-2020, 07:19 PM - Forum: General questions - Replies (1)

I never tried this before. What if, say, you construct a square with the paths tool, select it, and then decide to add a triangle to this shape and select this, too? I tried holding down SHIFT but that doesn't work. Any other ways?

Print this item

  How to give fabric folds?
Posted by: Jonior - 06-07-2020, 04:20 PM - Forum: General questions - Replies (4)

I would like to check how I leave a cloth, a quilt, as in the example in the attached image, with that aspect of folds, so that it looks natural, and not a flat image. Both linearly, as at the head, as circular, as on the bedspread in the side image of my example attached.


[Image: generic-white-bed-FREE-06-Durty-Jay-BK.png]

This one is mine that I want to give this double effect:

[Image: camaduvida.jpg]

Thank you in advance.  Cool

Print this item