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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,915
» Latest member: CathyEurot
» Forum threads: 7,362
» Forum posts: 40,093

Full Statistics

Latest Threads
Script-Fu in GIMP 3 websi...
Forum: Extending the GIMP
Last Post: crogonint
1 hour ago
» Replies: 2
» Views: 457
AIGoR - Artificial Image ...
Forum: Other graphics software
Last Post: vitforlinux
1 hour ago
» Replies: 7
» Views: 675
RemoveBG, how to install ...
Forum: Extending the GIMP
Last Post: rich2005
6 hours ago
» Replies: 13
» Views: 460
Cannot install gimp-help ...
Forum: General questions
Last Post: rich2005
6 hours ago
» Replies: 3
» Views: 672
Converting python plugin-...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: n3306tx
Yesterday, 08:09 PM
» Replies: 42
» Views: 4,208
selecting a fixed size re...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
Yesterday, 12:30 PM
» Replies: 4
» Views: 200
New color : olo
Forum: Watercooler
Last Post: denzjos
Yesterday, 07:51 AM
» Replies: 0
» Views: 95
Windows Portable Gimp 3.0...
Forum: Alternate Gimp packagings
Last Post: rich2005
04-19-2025, 07:57 PM
» Replies: 0
» Views: 119
Masking/Cutting/Layering?
Forum: General questions
Last Post: rich2005
04-19-2025, 07:43 PM
» Replies: 1
» Views: 146
Need help installing Resy...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
04-19-2025, 05:58 PM
» Replies: 3
» Views: 206

 
  New color : olo
Posted by: denzjos - Yesterday, 07:51 AM - Forum: Watercooler - No Replies

No one saw this color before because olo lies beyond the natural human gamut.
https://www.science.org/doi/10.1126/sciadv.adu1052

Print this item

  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 (7)

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