{"id":13439650,"url":"https://github.com/alessandrofrancesconi/gimp-plugin-bimp","last_synced_at":"2025-03-20T08:31:52.749Z","repository":{"id":39916121,"uuid":"3920674","full_name":"alessandrofrancesconi/gimp-plugin-bimp","owner":"alessandrofrancesconi","description":"BIMP. Batch Image Manipulation Plugin for GIMP.","archived":false,"fork":false,"pushed_at":"2024-02-28T11:34:07.000Z","size":2973,"stargazers_count":864,"open_issues_count":173,"forks_count":91,"subscribers_count":42,"default_branch":"master","last_synced_at":"2024-08-01T03:29:42.664Z","etag":null,"topics":["batch-processing","c","gimp","image-manipulation","plugin"],"latest_commit_sha":null,"homepage":"http://www.alessandrofrancesconi.it/projects/bimp","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alessandrofrancesconi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2012-04-03T17:37:32.000Z","updated_at":"2024-07-23T16:15:59.000Z","dependencies_parsed_at":"2024-01-18T03:47:07.264Z","dependency_job_id":null,"html_url":"https://github.com/alessandrofrancesconi/gimp-plugin-bimp","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alessandrofrancesconi%2Fgimp-plugin-bimp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alessandrofrancesconi%2Fgimp-plugin-bimp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alessandrofrancesconi%2Fgimp-plugin-bimp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alessandrofrancesconi%2Fgimp-plugin-bimp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alessandrofrancesconi","download_url":"https://codeload.github.com/alessandrofrancesconi/gimp-plugin-bimp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221739737,"owners_count":16872780,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["batch-processing","c","gimp","image-manipulation","plugin"],"created_at":"2024-07-31T03:01:15.930Z","updated_at":"2024-10-27T22:31:33.642Z","avatar_url":"https://github.com/alessandrofrancesconi.png","language":"C","funding_links":[],"categories":["C","Image manipulation"],"sub_categories":[],"readme":"BIMP. Batch Image Manipulation Plugin for GIMP.\n===============================================\n\nWith BIMP you can apply a set of GIMP manipulations on groups of images.\nDocumentation @ http://www.alessandrofrancesconi.it/projects/bimp\n\n![A screenshot of BIMP](http://www.alessandrofrancesconi.it/projects/bimp/images/bimp-main.jpg)\n\nInstalling on Windows\n---------------------\n\nBIMP can be easily installed on your Windows 32/64bit machine with the \nofficial installer: https://github.com/alessandrofrancesconi/gimp-plugin-bimp/releases/latest/\nthen download `gimp-plugin-bimp_win32.exe`\n\n*Note for GIMP Portable users:* If you experience strange things like missing buttons or totally white windows, \nfirst ensure you have installed the latest version of the GTK+ runtime (download it from [here](https://sourceforge.net/projects/gtk-win/files/latest/download?source=files)).\n\nCompiling and installing on Linux\n-----------------------------------------\n\nYou must have gimptool installed in order to have the full set of libraries\nand dependences needed to compile BIMP (names can differ depending on the distro).\n\nFor Debian-based (Ubuntu, Linux Mint, ...)\n\n\tsudo apt-get install libgimp2.0-dev libgegl-dev\n\nFor Fedora:\n\n\tsudo dnf install gimp-devel-tools\n\nExtract the archive containing the BIMP's sources and get into the extracted folder with `cd`. Then:\n\n\tmake \u0026\u0026 make install\n\t\nOr:\n\n\tmake \u0026\u0026 sudo make install-admin\n\nto make and install for every user in the system (needs root privileges).\n\n\nFor Mac OSX users\n-----------------\nStarting from BIMP 2.5, the MacOS version is available in the Release page: https://github.com/alessandrofrancesconi/gimp-plugin-bimp/releases. Please note: it may not work in every GIMP/MacOS version. See the release page for details.\n\nFor those interested in remaining on the cutting edge, the instructions to compile are as follows:\n\n1. Install [MacPorts](https://www.macports.org/install.php)\n2. Install prerequisites: `sudo port install coreutils `\n3. Add `/opt/local/libexec/gnubin` to your `PATH` to make them the GNU tools the default: `PATH=/opt/local/libexec/gnubin:$PATH`  (You can also add this to your login profile if you want the change to be permanent).\n3. Install GIMP with MacPorts: `sudo port install gimp +quartz` (You can leave off the `+quartz` if you prefer GIMP to run in the X11 environment instead of natively.)\n4. Follow the build and install instructions for Linux.\n5. Look at the output for the install command.  If your plug-in directory contains a space in its name (as would happen if it is in the `Application Support` folder), then there will be a copy command which failed listed.  You will need to perform that copy command manually with the destination directory properly wrapped in quotes.  I.e. if you see\n```\ncp ./bin/bimp /Users/NAME/Library/Application Support/GIMP/2.8/plug-ins\ncp: target 'Support/GIMP/2.8/plug-ins' is not a directory\n```\nthen you need to do `cp ./bin/bimp \"/Users/NAME/Library/Application Support/GIMP/2.8/plug-ins\"`.\n\n*Note:* Even though you have to install GIMP from MacPorts in order to build the binaries for BIMP, they should work just fine with the self-contained GIMP build from gimp.org.  In fact, you could probably uninstall the MacPorts version once the binaries are built, but you'll need to reinstall it each time you want to update BIMP.\n\n\nSupport this project\n--------------------\n\nVisit http://github.com/alessandrofrancesconi/gimp-plugin-bimp/issues\nand post alerts for bugs or enhancements. Make it better!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falessandrofrancesconi%2Fgimp-plugin-bimp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falessandrofrancesconi%2Fgimp-plugin-bimp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falessandrofrancesconi%2Fgimp-plugin-bimp/lists"}