Manual:$wgImageMagickConvertCommand/de-formal

From Linux Web Expert

The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
<translate> ImageMagick</translate>: $wgImageMagickConvertCommand
The command used to invoke ImageMagick.
<translate> Introduced in version:</translate>1.2.0
<translate> Removed in version:</translate><translate> still in use</translate>
<translate> Allowed values:</translate>(Absolute path)
<translate> Default value:</translate>'/usr/bin/convert'

Details

Set to the command used to invoke ImageMagick.

In order to find the path(s); in which convert is available, the following command can be used on the command line:

which -a convert

One of the returned paths should then be used for $wgImageMagickConvertCommand, e.g.:

$wgImageMagickConvertCommand = '/usr/local/bin/convert';

Under Windows it requires also the extension of the executable.

Example:

$wgImageMagickConvertCommand = 'C:/Program Files/ImageMagick/convert.exe';

See also