-
Notifications
You must be signed in to change notification settings - Fork 3
FAQs
ThioJoe edited this page May 21, 2024
·
4 revisions
You can create more GIFs from the same set of frames but different settings with the following steps:
- Click the 'GIF Tools' button
- Under 'GIF Creation Tools', load the output folder containing all the individual frames
- Set the 'Frames Per Second' value to whatever you want
- Click 'Create GIF From Folder' - A new gif with a unique filename will be created in the folder
- The G'MIC GUI loads all the filter settings from a filter files in your AppData folder (%APPDATA%/gmic)
- The file will be called something like
update336.gmic
, where the number corresponds to the version ofgmic.exe
orgmic_qt.exe
- The file will be called something like
- You can open the .gmic file with a regular text editor, but beware it is very large
- The layout of the .gmic file is the lines beginning with
#@gui
define settings for the GUI for each filter
- The layout of the .gmic file is the lines beginning with
- Edit the min/max ranges for a filter by following these steps:
- Search the file for the name of the filter.
- Look for the line that looks something like this, that has the 'friendly name' followed by the 'command name'. It might also mention a 'preview' command that is only used by the GUI
#@gui Continuous Droste:souphead_droste10,souphead_droste10_preview(1)
- Here, the 'friendly name' is
Continuous Droste
and the command name issouphead_droste10
- Directly below this line, you'll see the names of the various parameters. Just look at the ones that say
int
orfloat
- Generally the format for those parameters are like this:
Parameter Name=int(default, minimum, maximum)
- You can confirm this by checking if the maximum and minimum values in the GUI match up with the numbers you're looking at
- Generally the format for those parameters are like this:
- To allow a larger range, just change the maximum and minimum values in the .gmic file and restart the GUI
- Many of the minimum and maximum values for filters are arbitrary, so you can often expand them greatly. But other times those min/max might be set because beyond them the filter doesn't work right or looks bad, so it's best to experiment