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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,589
» Latest member: jadekristina
» Forum threads: 7,462
» Forum posts: 40,772

Full Statistics

Latest Threads
Can tooltip display time ...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: cjsmall
16 minutes ago
» Replies: 0
» Views: 4
Export all opened images ...
Forum: Extending the GIMP
Last Post: Bookman
27 minutes ago
» Replies: 12
» Views: 9,347
'Transparent' area is bro...
Forum: General questions
Last Post: rich2005
1 hour ago
» Replies: 4
» Views: 132
AIGoR - Artificial Image ...
Forum: Other graphics software
Last Post: vitforlinux
7 hours ago
» Replies: 11
» Views: 3,212
GIMP 3.04 opens with wind...
Forum: Windows
Last Post: rich2005
Today, 07:15 AM
» Replies: 6
» Views: 299
.SCM and .PY files are no...
Forum: Gimp-Forum.net
Last Post: Ofnuts
Yesterday, 05:28 PM
» Replies: 0
» Views: 71
v3.04 Script Error sg-sav...
Forum: Extending the GIMP
Last Post: Ofnuts
Yesterday, 05:11 PM
» Replies: 1
» Views: 83
Bug: gimp-drawable-get-pi...
Forum: Scripting questions
Last Post: programmer_ceds
Yesterday, 03:55 PM
» Replies: 8
» Views: 259
blank screen
Forum: OSX
Last Post: wilsonpig
Yesterday, 08:58 AM
» Replies: 4
» Views: 183
Cannot Install BIMP to GI...
Forum: Extending the GIMP
Last Post: Ofnuts
07-03-2025, 07:52 PM
» Replies: 1
» Views: 116

 
  Windows Portable Gimp 3.0.2
Posted by: rich2005 - 04-19-2025, 07:57 PM - Forum: Alternate Gimp packagings - No Replies

GIMP-3.0.2 Portable + G'MIC-QT-GIMP 3.5.3

Quote:This CLANG and QT6 compilation is designed for fun and testing of GIMP-3.0.2 and GMIC 3.5.3 (GIMP + QT + CLI).

GIMP 3.0.2 portable is compiled under MSYS2 CLANG64 on March 26, 2025.


The download link is here: https://samjcreations.blogspot.com/ 

A bit of a monster, 185 MB 7zip archive,  unpacks to 1.1 GB ,  with launchers for various languages.

Print this item

  Masking/Cutting/Layering?
Posted by: kristalyn - 04-19-2025, 05:44 PM - Forum: General questions - Replies (1)

How do I cut out an organic shape/selection from one image and then overlay image onto another image? Or how do I cut out an organic shape/selection from one image and then overlay onto another image?

I'm brand new to GIMP but have a little experience with Photoshop and have tried using masking, layers, and paint bucket with image as a pattern but can't quite figure it out. Many thanks in advance!

Print this item

  Need help installing Resynthesizer Plug in for Gimp 3.0 in Linux
Posted by: Xxxx - 04-18-2025, 04:45 PM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (3)

I hear it works for Windows! What a shame!

If anyone can help me install it on Linux

Print this item

  selecting a fixed size rectangular area
Posted by: bwaggybear - 04-18-2025, 10:33 AM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (4)

Hi, 
I'm using Gimp 3.0.2 revision 1 and I'm trying to produce something like a colour swatch like paint companies have.

I've got all my colour values (120 of them) and what I am trying to do now is select a fixed size rectangular area in varoius positions across the image.
I have found the menu related to the rectangular selection tool, that offers Fixed Aspect Ratio, Fixed Width, Fixed Height  and Fixed Size and ticked the box next to the fixed Size Option. 

The size to select that I have selected is 160px by 80 px. (It seems that this needs to be set before selecting the fixed size option) But when I try to do the selection by mouse it always reverts to a 100px by 100px square selection.

When I look at the other options in the menu they are all set as well. It seems I cannot set one without setting all the others. Am I doing something wrong?
Cheers
Andy

Print this item

  gegl:convert_space & icc profile
Posted by: bear.hsiung - 04-18-2025, 12:59 AM - Forum: Scripting questions - Replies (2)

Hello Sir,
I have some questions about the use of gegl:convert_space.

I used my own icc profile on the image, but the iccprofile did not affect the output image.
The output image is the same as the input. Is there a problem with the process or the use of the gegl library?
Please give me advice. grateful.

Here is my code:

int main(int argc, char* argv[]) {
    if (argc != 4) {
        std::cerr << "使用方式: " << argv[0] << " input.jpg output.jpg icc_profile.icc" << std::endl;
        return 1;
    }

    const char* input_file = argv[1];
    const char* output_file = argv[2];
    const char* icc_profile = argv[3];

    // 初始化 GEGL
    gegl_init(nullptr, nullptr);

    // 加載輸入圖像
    GeglNode* input = gegl_node_new_child(nullptr,
                                          "operation", "gegl:load",
                                          "path", input_file,
                                          nullptr);

    // 應用色彩空間轉換
    GeglNode* convert_space = gegl_node_new_child(nullptr,
                                                  "operation", "gegl:convert-space",
                                                  "path", icc_profile,
                                                  nullptr);

    // 將輸入連接到色彩空間轉換節點
    gegl_node_connect(input, "output", convert_space, "input");  //gegl_node_connect_to(input, "output", convert_space, "input");

    // 保存輸出圖像
    GeglNode* output = gegl_node_new_child(nullptr,
                                           "operation", "geglConfusedave",
                                           "path", output_file,
                                           nullptr);

    // 將色彩空間轉換節點連接到輸出節點
    gegl_node_connect(convert_space, "output", output, "input"); //gegl_node_connect_to(convert_space, "output", output, "input");

    // 處理圖像
    gegl_node_process(output);

    // 釋放資源
    g_object_unref(input);
    g_object_unref(convert_space);
    g_object_unref(output);

    // 結束 GEGL
    gegl_exit();

    std::cout << "色彩空間轉換完成,結果保存至: " << output_file << std::endl;
    return 0;
}

Print this item

  Is there an up to date Man Page for GIMP 3.0.? on Windows?
Posted by: ajax - 04-17-2025, 04:37 PM - Forum: Windows - Replies (1)

Because I prefer to run GIMP in a portable mode my setup and invocation scripts differ from the standard default norms.  When I look at the online man page it uses a lot of terms that appear to be related to GIMP 2.  For example, the environment variable named GIMP2_DIRECTORY.  This makes me wonder whether or not such is accurate for GIMP 3.

I also notice that GIMP 2.10.38 is the most recent version being offered by the Portable Apps Program as of today (4/17/2025).

Print this item

  AIGoR - Artificial Image GeneratorR - Linux only
Posted by: vitforlinux - 04-17-2025, 03:47 PM - Forum: Other graphics software - Replies (11)

I came across the pollinations.ai site, which among other things allows you to generate artificial images even just using a URL in the browser... so I said to myself and WGET? Also!

So between yesterday and today I created a simple interface in bash and yad to take advantage of opening with Gimp or saving the images created.

[Image: aigor.jpg]


[Image: aigor-viewer.jpg]


You can download it from here (it's a single file)

https://github.com/vitforlinux-gimp/AIGoR/

Print this item

  Cannot install gimp-help on Windows 11
Posted by: bassmothership - 04-17-2025, 04:39 AM - Forum: General questions - Replies (3)

Hi

I've just installed GIMP 3.0.2 (revision 1) now on a Windows 11AMD RYZEN 9 laptop. I use this laptop offline so I need the offline manual.

I downloaded "gimp-help-3.0.0-en-setup.exe" but it doesnt install it, it shows "No suitable GIMP installation were found. GIMP Help can only be installed when GIMP 3.0 is already present."

Print this item

  My instution block downloads from Gimp website
Posted by: Marty0750 - 04-16-2025, 11:59 PM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (3)

My institution vets any download I request. Their cyber security system blocked downloads from the  Gimp website. Thus Gimp is not accessible.


By comparison no problem download and install LibreOffice and Irfanview
We tried to access Gimp via Softronic. Blocked access here too.

Any suggestions?

Print this item

  RemoveBG, how to install it?
Posted by: CtrlAltDel - 04-16-2025, 11:39 PM - Forum: Extending the GIMP - Replies (14)

Hello everyone.  I've downloaded the RemoveBG plugin for a Gimp 3 AppImage from here:

RemoveBG Plugin

and have successfully been able to pull up its dialog box but, it doesn't do anything. I've changed the path as the thread suggests and the problem seems to be with actually installing the rembg program that is also required to make the plugin work properly.

There is another user in the same thread having the same issue I am having which was never resolved for him so I thought it would be best to ask the question here about how to actually install the rembg program on Linux Mint 22.1.

When I try to install it, from here: RemoveBG Program 

I start getting all types of other dependencies that need to be installed, just to actually get started with the install itself, and was wondering if anyone has ever made the plugin work properly in Linux Mint/Ubuntu/etc... before I go to the trouble of trying to install God knows how much stuff to make it work.

Maybe it's a rabbit hole that would be best not to go down?

The Appimage is one that Rich fixed up for me based on Mateusz Lukasik's PPA.

Print this item