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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,624
» Latest member: Josephmally
» Forum threads: 7,490
» Forum posts: 40,881

Full Statistics

Latest Threads
Open, save buttons on bot...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: GrumpyDeveloper
1 hour ago
» Replies: 8
» Views: 2,843
edit_paste pastes at inco...
Forum: Scripting questions
Last Post: Ofnuts
1 hour ago
» Replies: 1
» Views: 47
Clone size randomly chang...
Forum: General questions
Last Post: oldschool1@runbox.com
5 hours ago
» Replies: 2
» Views: 126
AI Gimp Plugins
Forum: Watercooler
Last Post: Zbyma72age
7 hours ago
» Replies: 20
» Views: 53,213
Gimp closes automatically
Forum: General questions
Last Post: sallyanne
Today, 05:50 AM
» Replies: 2
» Views: 177
AIGoR - Artificial Image ...
Forum: Other graphics software
Last Post: vitforlinux
Yesterday, 11:10 AM
» Replies: 12
» Views: 3,771
Is This Possible ? Print ...
Forum: General questions
Last Post: sallyanne
Yesterday, 07:47 AM
» Replies: 4
» Views: 171
Gimp Crash
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
Yesterday, 07:16 AM
» Replies: 1
» Views: 129
producing an image
Forum: Gallery
Last Post: MJ Barmish
07-15-2025, 06:37 PM
» Replies: 0
» Views: 98
GIMP 3.x: Editing a pdf
Forum: General questions
Last Post: rich2005
07-15-2025, 03:20 PM
» Replies: 1
» Views: 113

 
  Re-setting up tablet
Posted by: DrCyanide - 05-05-2018, 04:10 PM - Forum: Installation and usage - Replies (2)

I'm trying to get my graphics tablet to work with 2.10. It was working with 2.8, but the update (with it's uninstall process) must have deleted my settings and I'm having issues setting it back up.

  • I'm using a Huion H85L tablet (if that matters)
  • Input Devices has the mode set to Screen
  • Device Status correctly identifies the tablet is in use when I press down
  • Brush Dynamics is set to Pressure Opacity
But despite all that I'm unable to draw with the tablet at all, not even without pressure sensitivity (unless Gimp momentarily thinks the tablet is my normal mouse). When I put the pen to the tablet the dotted outline of where the pen is locks in place, but it doesn't follow the pen. The cross hair with the brush icon follows my pen, but isn't leaving marks. If I press down hard at first it leaves a mark (which seems to vary in opacity), but I can't move it. 

Any idea what I'm forgetting for setting it back up?

Edit: Looking at some advice from people who had issues with older versions I tried installing the 32 bit version instead of the 64 bit (on a 64 bit machine). In that mode, the Device Status says that the Graphics Tablet is never active, insisting I'm using the core pointer. On the bright side, I can draw with the tablet like this, but I have no pressure sensitivity.

Print this item

  fit image in windows
Posted by: gimp-artist - 05-05-2018, 01:11 PM - Forum: General questions - No Replies

I have intuos tablet. I mapped a button for the "fit image in windows". The shortcut is "ctrl+shift+j". When I push the button on intuos the picture fits in windows, but sometimes the image is a little out of the center. Do you know why?

Print this item

  Fonts
Posted by: gimp-artist - 05-05-2018, 11:26 AM - Forum: General questions - Replies (4)

I'm testing how fonts are working in gimp. I want to install a lot of fonts. Does anyone know where to get fancy fonts and to make fancy fonts? Is it okay to use downloaded fonts for my art-work, let's say for youtube or facebook? Thanks for reading.

Print this item

  text from right to left
Posted by: gimp-artist - 05-05-2018, 07:09 AM - Forum: General questions - Replies (2)

I'm testing the text tool, especially the "from right to left" in the context menu. It doesn't do anything. It is the same status before clicking the menu. What am I missing here?

Print this item

  Exporting for facebook - blurred image
Posted by: SerDom - 05-04-2018, 07:21 PM - Forum: General questions - Replies (2)

Hi all,

I'm a newbie to gimp, going fast through the learning curve and (more or less) getting done what I need done.

However, one point where I'm failing dramatically is in the quality of the exports. I look at gimp and the image looks great, but when I export it into either jpg/png/whatever, try to set all settings to maximum quality and the result is still not optimal:

https://www.facebook.com/clinicadentalel...=3&theater

Pixel is 1100x680 (From memory) which I was given as the ideal size for facebook.

Any advice as to how to get a better resolution?

Thanks

Print this item

  GIMP 2.10 a brush in the filter parameters
Posted by: dinasset - 05-04-2018, 12:27 PM - Forum: Gimp 2.10 - Replies (13)

Hi,
in my activity of porting my filters to 2.10, I faced a strange behavior:
- there is a filter (running on 2.8) which as a "brush" parameter in the definition  
- trying to see it under 2.10 it was in the menu but not showing its menu when launched
- after some trials I discovered that removing the filter name from the parameters it was showing, but..
  only once (unless resetting all the filters)

So I decided to write a couple of test filters, one with the brush parameter (but set to None), the other one which uses the active brush.
The behavior was confirmed:
- using the first one I can see it and run only once (unless resetting the filters)
- using the second one I can see it and run as many times as I like

Ther same 2 filters included in my 2.8, show up and run always.

Hence I post here these 2 small filters; if someone is so kind to double-check them, I will appreciate 
The first one

Code:
#!/usr/bin/env python
from gimpfu import *
import random


def testBrushAsParm (inImage, inDrawable, inBrush, Run) :

   pdb.gimp_context_push
   pdb.gimp_image_undo_group_start(inImage)
   
   # set parameters for drawing the lines
   pdb.gimp_context_set_brush (inBrush)
   distance=100
   count=int(inDrawable.height/distance)
   h=0
   for h in range(count):
       x1 = 0                                  
       x2 = inDrawable.width                
       y1 = 25+(h*distance)              
       y2 = y1
       #info_msg ("x1, x2, y1, y2, Dw, Rh = "+str(x1)+",  "+str(x2)+",  "+str(y1)+",  "+str(y2)+",  "+str(Dw)+",  "+str(Rh))
       pdb.gimp_paintbrush (inDrawable, 0, 4,
                (x1, y1, x2, y2), PAINT_CONSTANT, 0)  
       h+=1
       
   pdb.gimp_image_undo_group_end(inImage)
   return()

# This is the plugin registration function
register(
   "testBrushAsParm",    
   "To test a Brush As Parameter",  
   "This script tests a Brush in the Parameters.",
   "Diego",
   "Diego Nassetti ",
   "2018",
   "testBrushAsParm",
   "RGB*",
   [
     (PF_IMAGE, "image", "Input image", None),
     (PF_DRAWABLE, "drawable", "Input drawable", None),
     (PF_BRUSH, "brush", "Brush to use", None),      
     (PF_TOGGLE, "test", "Does it run more than once?", False),    # fake parameter !
   ],
   [
     (PF_DRAWABLE, "odrawable", "Output drawable", None),
   ],
   testBrushAsParm,
   menu="<Image>/Test",
   )

main()
The second one


Code:
#!/usr/bin/env python
from gimpfu import *
import random


def testBrushAsNoParm (inImage, inDrawable, Run) :

   pdb.gimp_context_push
   pdb.gimp_image_undo_group_start(inImage)
   
   # set parameters for drawing the lines
   distance=100
   count=int(inDrawable.height/distance)
   h=0
   for h in range(count):
       x1 = 0                                  
       x2 = inDrawable.width                
       y1 = 25+(h*distance)              
       y2 = y1
       #info_msg ("x1, x2, y1, y2, Dw, Rh = "+str(x1)+",  "+str(x2)+",  "+str(y1)+",  "+str(y2)+",  "+str(Dw)+",  "+str(Rh))
       pdb.gimp_paintbrush (inDrawable, 0, 4,
                (x1, y1, x2, y2), PAINT_CONSTANT, 0)  
       h+=1
       
   pdb.gimp_image_undo_group_end(inImage)
   return()

# This is the plugin registration function
register(
   "testBrushAsNoParm",    
   "To test a Brush Not As Parameter",  
   "This script tests a Brush Not in the Parameters.",
   "Diego",
   "Diego Nassetti ",
   "2018",
   "testBrushAsNoParm",
   "RGB*",
   [
     (PF_IMAGE, "image", "Input image", None),
     (PF_DRAWABLE, "drawable", "Input drawable", None),
######(PF_BRUSH, "brush", "Brush to use", None),       # removed from the parameters
     (PF_TOGGLE, "test", "Does it run more than once?", True), # fake parameter !
   ],
   [
     (PF_DRAWABLE, "odrawable", "Output drawable", None),
   ],
   testBrushAsNoParm,
   menu="<Image>/Test",
   )

main()

Print this item

  Recommended beginner xp-pen graphics tablets?
Posted by: nanping - 05-04-2018, 06:25 AM - Forum: Windows - No Replies

So, I had a black XP-Pen G640, it was my first tablet and I had it for almost 1 year, but recently I lost the pen and I can‘t buy one where I live so I would have to buy it online, like I did with my tablet. So instead of that, I decided to just buy a better one. Screen Tablets are too expensive for me, so I was looking at the XP-Pen Star06 , wich I've heard is called the best non-screen tablet, but it was also a little bit on the expensive side for me. In my opinion the XP-Pen G640 was decent, but I also dont have experience with other graphic tablets, so right now what I'm looking for is something in the middle between a XP-Pen Star06 and the XP-Pen G640 quality-wise, that will also hopefully be not as expensive as the Star06 .

Looking for a relatively cheap graphics tab (under £100). It does not have to have a display but should connect to my mac and be compatible with photoshop.

I have little experience in that area so I am hoping you can

What would you suggest?

rich: my suggestion is do not advertise and buy a Wacom tablet

Print this item

  Saving color with tool preset
Posted by: Steve Wellens - 05-03-2018, 03:11 PM - Forum: Installation and usage - Replies (4)

I'm using Gimp 2.10.

I am trying to save a red pencil tool preset.   However, when i select the tool to draw with, it uses the current foreground color.

In the preset file the color is saved:  (color-rgb 1.000000 0.000000 0.000000))

I've edited the tool and checked/unchecked  Apply stored FG/BG but so far it doesn't work.

Am I missing something obvious?

Print this item

  do you think Adobe is nervous about open source graphics ?
Posted by: Espermaschine - 05-03-2018, 12:33 PM - Forum: Watercooler - Replies (10)

This year is a big year for open source graphics software like Gimp and Inkscape.
Once both programs have included CMYK support, they will be a serious alternative for professionals to Photoshop and Illustrator.

Print this item

  grain extract and grain merge
Posted by: gimp-artist - 05-03-2018, 10:55 AM - Forum: General questions - Replies (5)

Hello guys, how are you doing? I'm reading gimp Docs. Here is what they say about "grain extract" in layer modes.

Grain extract mode is supposed to extract the "film grain" from a layer to produce a new layer that is pure grain, but it can also be useful for giving images an embossed appearance.

I don't think grain extract gives images an embossed appearance, but grain merge gives the embossed appearance.

What do you think about it?

Print this item