Manual:$wgImageMagickConvertCommand
Appearance
ImageMagick: $wgImageMagickConvertCommand | |
---|---|
The command used to invoke ImageMagick. |
|
Sürümde tanıtıldı: | 1.2.0 |
Sürümde kaldırıldı: | hala kullanımda |
İzin verilen değerler: | (Kesin yol) |
Varsayılan değer: | '/usr/bin/convert' |
Diğer ayarlar: Alfabetik | İşlevsel olarak |
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';