]> git.lyx.org Git - lyx.git/blobdiff - src/convert/lyxconvert.cpp
Re-fix #11146 with recent LaTeX
[lyx.git] / src / convert / lyxconvert.cpp
index b3169a7a7366d13ccd4e5e4bd231d6b6e3edfe6d..59e8ea79780997497b4cf19660c64458b99a97bb 100644 (file)
@@ -7,6 +7,20 @@
  * \author Enrico Forestieri
  *
  * Full author contact details are available in file CREDITS.
+ *
+ * The code implements an utility program using the Qt-Framework
+ * to convert an image from a given format to another one.
+ * The image format of the files is either auto detected by Qt or
+ * may explicitely specified with command line arguments.
+ *
+ * Syntax:
+ * lyxconvert [-d] [-f infmt] [-t outfmt] inputfile outputfile
+ *  -d   turn on debug messages
+ *  -f   format of input file (from)
+ *  -t   format of output file (to)
+ *
+ * Example to convert a compressed SVG image to PNG:
+ * lyxconvert image.svgz image.png
  */
 
 #include <iostream>