Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
GIMP 3.04 opens with wind...
Forum: Windows
Last Post: rich2005
3 hours ago
» Replies: 6
» Views: 265
|
.SCM and .PY files are no...
Forum: Gimp-Forum.net
Last Post: Ofnuts
Yesterday, 05:28 PM
» Replies: 0
» Views: 58
|
Export all opened images ...
Forum: Extending the GIMP
Last Post: Ofnuts
Yesterday, 05:22 PM
» Replies: 9
» Views: 9,284
|
v3.04 Script Error sg-sav...
Forum: Extending the GIMP
Last Post: Ofnuts
Yesterday, 05:11 PM
» Replies: 1
» Views: 70
|
Bug: gimp-drawable-get-pi...
Forum: Scripting questions
Last Post: programmer_ceds
Yesterday, 03:55 PM
» Replies: 8
» Views: 248
|
'Transparent' area is bro...
Forum: General questions
Last Post: Ofnuts
Yesterday, 03:41 PM
» Replies: 1
» Views: 88
|
blank screen
Forum: OSX
Last Post: wilsonpig
Yesterday, 08:58 AM
» Replies: 4
» Views: 170
|
Cannot Install BIMP to GI...
Forum: Extending the GIMP
Last Post: Ofnuts
07-03-2025, 07:52 PM
» Replies: 1
» Views: 111
|
Missing fonts when export...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: chblondel
07-03-2025, 06:11 PM
» Replies: 9
» Views: 516
|
Gimp 3.0.4 - Windows 10 -...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
07-03-2025, 03:02 PM
» Replies: 1
» Views: 126
|
|
|
Stop Loading Windows Fonts. |
Posted by: jerryemerydelacruz - 10-24-2021, 01:48 AM - Forum: General questions
- No Replies
|
 |
Is there a way to prevent Gimp from loading the fonts in the Windows>Fonts folder? I have removed all the font paths from Preferences but Gimp still reads the Windows fonts.
(10-24-2021, 01:48 AM)jerryemerydelacruz Wrote: Is there a way to prevent Gimp from loading the fonts in the Windows>Fonts folder? I have removed all the font paths from Preferences but Gimp still reads the Windows fonts.
I changed the permissions of the fonts.conf file in Program Files>Gimp2/etc/fonts. Opened the file with Notepad and removed the line <dir>WINDOWSFONTDIR</dir>. I then copied a ttf font to the Program Files>Gimp 2>share>gimp>2.0>fonts folder and restarted Gimp.
|
|
|
G'MIC Favorites - How to copy them? |
Posted by: Krikor - 10-24-2021, 01:04 AM - Forum: Extending the GIMP
- Replies (2)
|
 |
Is there any way to copy G'MIC Favorites from other machines?
I have a new version of G'MIC and would like to have my Favorites in this new version. What is the most practical way to obtain this transfer?
Are there any files I can copy and paste to get this result?
Thanks in advance.
|
|
|
Latest GMIC filters |
Posted by: Batfish - 10-23-2021, 11:20 PM - Forum: Windows
- Replies (5)
|
 |
I am a Gimp new user. Just curious, downloaded the latest version of Gimp - 2.10.28. Using Windows 10. Upon installing just Gimp - it runs just fine. Downloaded the latest version of the GMIC filters 2.10 and am getting an error message upon launch.
Procedure entry point g_memdup2 could not be located in the dynamic link library C:\Program Files\GIMP\2\bin\libgobject-2.0-0.dll.
The GMIC filters do not appear in the Filters tab. Hoping there is some simple error that I have made. For your consideration - I thank you.
|
|
|
Scramble a picture |
Posted by: S_H - 10-23-2021, 02:32 PM - Forum: General questions
- Replies (2)
|
 |
Hi,
I'm looking for an automated way to scramble a batch of images.
That is, to automate this process on a folder of images:
1. upload an image
2. slice the image into 9 equal pieces (the images are not in the same size)
3. completely shuffle the pieces order (such that upper left must not stay in upper left) without changing the image size
4. save
I found ways to do step 2, but because my images are not in the same size I don't know how to batch it.
I Particularly struggle with step 3.
Thanks a lot for your help
|
|
|
shifting gradient colors ? |
Posted by: denzjos - 10-22-2021, 05:38 PM - Forum: General questions
- Replies (10)
|
 |
Is there existing a plugin/script that can shift a gradient by x steps? Let's take a gradient with 256 colors and I want to shift the gradient colors by 2 steps. Then all colors move 2 steps to the right (or left) and colors 255 / 256 become colors 1 and 2.
|
|
|
canvas prints |
Posted by: tez06 - 10-22-2021, 11:13 AM - Forum: General questions
- Replies (6)
|
 |
Hi everyone, I love gimp and all its functions, but can anyone one advise me how to do canvas wrap with mirror edges, i have gimp version GIMP 2.10.28 any help much appreciated :-)
|
|
|
Let us say with petals |
Posted by: Gimphried - 10-21-2021, 09:15 PM - Forum: Scripting questions
- Replies (2)
|
 |
1. Let us say with petals
Make Flower has been written in Script-Fu by Daniel Bates in 2007.
You can download the free open source Flower_Generator_Script_by_Insanity_Prevails.scm
in the SamRocketMan's github reposity.
Open the .scm script in the free editor Notepad++.
script-fu-register in line 316 has strange NUL characters.
Into the bargain, nowadays, the registration is in two steps. We need to indicate the Gimp menu to call this script in an additional call:
Code:
(script-fu-menu-register "script-fu-make-flower" "<Image>/Filters/Render/Make Flower/")
However don't do it! We do not need to overload the Gimp Graphic User Interface (GUI) with additional menus that are not used daily.
We can call directly make-flower in the Script-Fu console of Gimp 2.10.28 without any registration.
1. In Notepad++, click in the beginning of the line 12 before the opening parenthesis without selecting anything.
2. Press the Notepad++ shortcut Ctrl+Alt+B.
Notepad++ automatically selects the entire function make-flower from line 12 to line 312.
This means that of course the parenthesis are well balanced.
3. Press Ctrl+C in Windows to copy the function in the clipboard.
4. Run Gimp.
5. Gimp menu Filters > Script-Fu > Console
;-> "Welcome to TinyScheme" appears in the top of the Script-Fu console.
6. Paste the content of the clipboard in the input area of the Script-Fu console above the Help button.
Press ENTER
;-> Script-Fu replies by the name of the function:
make-flower
This means that there is not any errors of syntax!
7. Copy in the clipboard by Ctrl+C the following call of the function with all parameters:
Code:
(make-flower 500 2 2 30 1 5 '(230 120 210) '(170 50 150) '(170 170 50))
Press ENTER to run the TinyScheme function.
;->
Oops:
Code:
Error: Bad syntax of binding spec in let* : ((theImage) (theActive) (base-layer) (flower-layer) (petal-layer) (petal2-layer) (petal3-layer) (petal4-layer) (petal5-layer) (petal6-layer) (shade-layer) (map-layer) (varX1) (varY1) (varX2))
8. In Notepad++, select the Let*'s local variables from line 26 to 46:
Code:
(theImage)
(theActive)
(base-layer)
(flower-layer)
(petal-layer)
(petal2-layer)
(petal3-layer)
(petal4-layer)
(petal5-layer)
(petal6-layer)
(shade-layer)
(map-layer)
(varX1)
(varY1)
(varX2)
The initial value is missing for each local variable. Fortunately, they are all integers.
10. To fix the issue, Notepad++ menu Search > Replace...
11. In the dlgbox "Replace", 2nd tab "Replace",
Find what: ")"
Enter the closing parenthesis without the double quotes.
Replace with: " 0)"
Enter a space separator before the initial value, then the initial value 0 and the closing parenthesis.
Do not enter the double quotes.
Check the option [x] in selection
Press the Replace All button
The expected result must be:
Code:
(theImage 0)
(theActive 0)
(base-layer 0)
(flower-layer 0)
(petal-layer 0)
(petal2-layer 0)
(petal3-layer 0)
(petal4-layer 0)
(petal5-layer 0)
(petal6-layer 0)
(shade-layer 0)
(map-layer 0)
(varX1 0)
(varY1 0)
(varX2 0)
12. Repeat steps 1-7
;-> The script draws the pink flower with 8 petals on 500x500 pixels.
make-flowerPetal8.webp (Size: 6.96 KB / Downloads: 306)
The Layer window shows the following layers:
- Shading
- Centre Shading
- Centre
- Flower
- Background
|
|
|
|