46 lines
1.4 KiB
Go
46 lines
1.4 KiB
Go
package config
|
|
|
|
// RawPresets tests if RAW converter presents should be used (may reduce performance).
|
|
func (c *Config) RawPresets() bool {
|
|
return c.options.RawPresets
|
|
}
|
|
|
|
// DarktableBin returns the darktable-cli executable file name.
|
|
func (c *Config) DarktableBin() string {
|
|
return findExecutable(c.options.DarktableBin, "darktable-cli")
|
|
}
|
|
|
|
// DarktableEnabled tests if Darktable is enabled for RAW conversion.
|
|
func (c *Config) DarktableEnabled() bool {
|
|
return !c.DisableDarktable()
|
|
}
|
|
|
|
// RawtherapeeBin returns the rawtherapee-cli executable file name.
|
|
func (c *Config) RawtherapeeBin() string {
|
|
return findExecutable(c.options.RawtherapeeBin, "rawtherapee-cli")
|
|
}
|
|
|
|
// RawtherapeeEnabled tests if Rawtherapee is enabled for RAW conversion.
|
|
func (c *Config) RawtherapeeEnabled() bool {
|
|
return !c.DisableRawtherapee()
|
|
}
|
|
|
|
// SipsEnabled tests if SIPS is enabled for RAW conversion.
|
|
func (c *Config) SipsEnabled() bool {
|
|
return !c.DisableSips()
|
|
}
|
|
|
|
// SipsBin returns the SIPS executable file name.
|
|
func (c *Config) SipsBin() string {
|
|
return findExecutable(c.options.SipsBin, "sips")
|
|
}
|
|
|
|
// HeifConvertBin returns the heif-convert executable file name.
|
|
func (c *Config) HeifConvertBin() string {
|
|
return findExecutable(c.options.HeifConvertBin, "heif-convert")
|
|
}
|
|
|
|
// HeifConvertEnabled tests if heif-convert is enabled for HEIF conversion.
|
|
func (c *Config) HeifConvertEnabled() bool {
|
|
return !c.DisableHeifConvert()
|
|
}
|