Fix #7477: imgconverter: Invoke "magick convert" command on Windows

This commit is contained in:
Takeshi KOMIYA
2020-04-15 02:21:55 +09:00
parent 2fac698e76
commit 19d5d8d75c
3 changed files with 26 additions and 2 deletions

View File

@@ -34,7 +34,19 @@ Configuration
A path to :command:`convert` command. By default, the imgconverter uses
the command from search paths.
On windows platform, :command:`magick` command is used by default.
.. versionchanged:: 3.1
Use :command:`magick` command by default on windows
.. confval:: image_converter_args
Additional command-line arguments to give to :command:`convert`, as a list.
The default is an empty list ``[]``.
On windows platform, it defaults to ``["convert"]``.
.. versionchanged:: 3.1
Use ``["convert"]`` by default on windows