Manual:$wgImageMagickConvertCommand/ko
Appearance
| ImageMagick: $wgImageMagickConvertCommand | |
|---|---|
| The command used to invoke ImageMagick. |
|
| 이 변수가 소개된 버전: | 1.2.0 |
| 이 변수가 사라진 버전: | 계속해서 쓰이고 있음 |
| 허용값: | (Absolute path) |
| 기본값: | '/usr/bin/convert' |
| 기타 설정: 알파벳 순 | 기능별 순 | |
상세
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';