Missing ImageMagick man page

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
Atcold
Posts: 3
Joined: 2017-03-06T12:57:00-07:00
Authentication code: 1151

Missing ImageMagick man page

Post by Atcold »

After installing ImageMagick on Ubuntu 16.04.2 LTS, there is no ImageMagic's man page.

Code: Select all

$ dpkg -L imagemagick | grep man
/usr/share/man
/usr/share/man/man1
/usr/share/man/man1/stream-im6.1.gz
/usr/share/man/man1/display-im6.1.gz
/usr/share/man/man1/animate-im6.1.gz
/usr/share/man/man1/mogrify-im6.1.gz
/usr/share/man/man1/composite-im6.1.gz
/usr/share/man/man1/montage-im6.1.gz
/usr/share/man/man1/import-im6.1.gz
/usr/share/man/man1/identify-im6.1.gz
/usr/share/man/man1/conjure-im6.1.gz
/usr/share/man/man1/convert-im6.1.gz
/usr/share/man/man1/compare-im6.1.gz
Moreover, in convert(1) you suggest to "point your browser to file:///usr/share/doc/ImageMagick-6/www/convert.html", but the imagemagick-doc installs the documentation in "/usr/share/doc/imagemagick-doc/www" instead (imagemagick-doc instead of ImageMagick-6).

Now I don't know if these are Ubuntu only related problems, or ImageMagic's.

Further information on the first part of the issue can be found on UnixStackexchange.
Atcold
Posts: 3
Joined: 2017-03-06T12:57:00-07:00
Authentication code: 1151

Re: Missing ImageMagick man page

Post by Atcold »

Follow up question. Where do I find this information on my system (coming from here)?
-delay {time} Set the time delay (in 1/100th of a second) to pause after drawing the images that are read in or created after this setting has been defined.
You can specify a different scale for the time delay by specifying a 'x' scaling (giving in ticks per second). For example '10x1' is 10, 1 second ticks, while '10x100' is 10, one hundredth of a second ticks.
Basically the 'x' is equivalent to a fraction '/' sign. For example if you specify '1x160' will set a delay that is appropriate for 160 frames per second.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Missing ImageMagick man page

Post by fmw42 »

try

Code: Select all

man convert
See also

Code: Select all

convert -list list
and

Code: Select all

convert -help
for info on your system about imagemagick

see also
http://www.imagemagick.org/script/comma ... ptions.php
Atcold
Posts: 3
Joined: 2017-03-06T12:57:00-07:00
Authentication code: 1151

Re: Missing ImageMagick man page

Post by Atcold »

Thank you for getting back to me.
In the meantime, I've also opened a bug report with Debian BTS.
fmw42 wrote: 2017-03-06T15:48:24-07:00 try

Code: Select all

man convert
Yes, this works fine, and no, it is not what my bug report is about.
See also

Code: Select all

convert -list list
Unfortunately, this command does not explain how to use the different options.
I am aware that online I can find everything.
I am reporting missing local documentation, which seems to be partially also a Debian (and Ubuntu) related problem.

Precisely,
  • there is no ImageMagick man page -> Debian issue;
  • command line options descriptions are missing in the local documentation (see "delay {time}" specification) -> ImageMagick's issue.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Missing ImageMagick man page

Post by snibgo »

For information: with Cygwin on Windows 8.1, the following bash commands work:

Code: Select all

man ImageMagick
man convert
man identify
The command-line-options.html page is installed. This is the page I find most useful.

As far as I know, the usage pages such as http://www.imagemagick.org/Usage/anim_basics/ are not installed on client computers. Of course, they can be downloaded.
snibgo's IM pages: im.snibgo.com
Post Reply