Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 4,575
» Latest member: snotty54
» Forum threads: 7,449
» Forum posts: 40,712
Full Statistics
|
|
|
Updating GIMP in Linux |
Posted by: doobs - 07-31-2023, 02:21 PM - Forum: Linux and other Unixen
- Replies (4)
|
 |
Greetings,
New forum member here.
I've been using GIMP, mostly on Windows and at work, for a number of years and am a faithful disciple.
My profession life ended on May 5th with my retirement and I'm now officially a "free man" and old fart....
We are in the process of building a new retirement home, so my focus of late is trying new things computer wise, with one of those things being Linux.
After some looking around, Elementary OS was chosen (don't ask me why, I couldn't tell you) and It's been an interesting experience for this old man to wrap his head around after so many years of Windows-dom. EOS is an Ubuntu variant BTW.
It took some doing, but I've gotten EOS where I wanted. One of the interesting things I came across was the myriad of ways to install applications.
EOS is fond of flatpaks so initially I installed flatpak applications. Some of the other applications were snap packages, some where apt packages and a couple were just executables.
What I found was this unholy mixture of install types lead to some very interesting file access issues. Some flatpaks would see folders while the snap packages wouldn't, etc, etc, etc.
After a bit of to-ing and fro-ing, I decided to throw flatpaks and snap packages to the curb and just install stuff via good old apt install.
This has solved my file access issues, but I'm finding now that GIMP is stuck on v2.10.30 vs the latest v2.10.34.
Is there any way to update my install without going to a flatpak?
Thank you!
chris
LOL,
I should have read a little further...
https://www.gimp-forum.net/Thread-Gimp-2...untu-22-04
chris
|
|
|
fading text layer |
Posted by: mwas - 07-31-2023, 09:39 AM - Forum: Extending the GIMP
- Replies (3)
|
 |
Hi, I am new to this forum so if I my question is in the wrong section, well, sorry I guess!
I have a pdf form to fill like 500 times and I thought using a gimp python plugin is the way to do it. I have developed the said plugin and I can successfully fill the form except that the text layers I am adding are too sharp. Before I save the file manually, I usually use the blur tool to make the text look like it was filled with a pen. I have tried to do this in the plugin but I can't get i right. I am using the gimp.convolve() function. I guess my problem is obtaining the stroke points of the text layer. Can somebody please help me. Thanks.
|
|
|
several register by python file ? |
Posted by: jacques_duflos - 07-25-2023, 07:07 PM - Forum: Scripting questions
- Replies (3)
|
 |
I am doing a script that I want to execute very quickly with a shortcut, or more slowly with a option window. Something similar to "save" (quickly executed with ctrl+s) and "save as ..." (with a window to precise options). How should I do ?
- Should I do two completely separated plug-ins ?
- Or one plug-in with two python files in it (one importing the other I guess) ?
- Or can I put several register function in one python script ?
- other ?
I would say the third option is the best, but as I can't remember having seen such thing anywhere, I wonder if there are habits or rules about that.
The code would look like that :
Code:
from gimpfu import *
def slow_function(image, layer, other, options):
#some code
def quick_function(image, layer):
slow_function(image, layer, defaults, values)
register(
"python-fu-quick-function",
"description",
"description",
"Your Name",
"Your Name",
"2023",
"<Image>/Filters/quick function",
"*",
[],
[],
quick_function)
register(
"python-fu-slow-function",
"description",
"description",
"Your Name",
"Your Name",
"2023",
"<Image>/Filters/slow function ...",
"*",
[
(PF_IMAGE, 'image', 'Image', None),
(PF_OPTION, 'some option')],
(PF_OPTION, 'some other option')]
[],
slow_function)
main()
|
|
|
|