Welcome, Guest |
You have to register before you can post on our site.
|
|
|
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?
|
|
|
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.
|
|
|
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?
|
|
|
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
|
|
|
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()
|
|
|
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
|
|
|
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?
|
|
|
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?
|
|
|
|