home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2002 April / pcpro0402.iso / essentials / graphics / Gimp / gimp-src-20001226.exe / src / gimp / plug-ins / print / README < prev   
Encoding:
Text File  |  2000-12-10  |  5.1 KB  |  141 lines

  1. This is Gimp-Print version 4.0.4, a stable release in the 4.0 line.
  2. Gimp-print is the print facility for the Gimp, and in addition a suite
  3. of drivers that may be used with common UNIX spooling systems using
  4. GhostScript or CUPS.  These drivers provide printing quality for
  5. UNIX/Linux on a par with proprietary vendor-supplied drivers in many
  6. cases, and can be used for many of the most demanding printing tasks.
  7.  
  8. Please read the release notes (RELNOTES) carefully, as this release
  9. has many incompatibilities with 3.1 and 4.0 alpha releases, and minor
  10. incompatibilities with 4.0b1.
  11.  
  12.  
  13. BASIC INSTALLATION
  14.  
  15. If you have downloaded a .tar.gz file (tarball), you should follow
  16. these directions.
  17.  
  18. To build and install the Gimp Print plug-in:
  19.  
  20. ./configure
  21. make
  22. make install
  23.  
  24. This installs two programs: the print plugin itself (named "print") in
  25. your system Gimp plugin directory, and a utility named "escputil" for
  26. performing head cleaning, nozzle alignment, and other tasks on Epson
  27. Stylus inkjet printers.  Type "escputil" for a description of the
  28. options and functionality.
  29.  
  30. Please check our web site at http://gimp-print.sourceforge.net for
  31. details about what is and is not supported.
  32.  
  33. Please report any problems to gimp-print-devel@sourceforge.net.
  34.  
  35. If you have installed the Gimp as a precompiled package (e. g. from an
  36. RPM), you will need to install the gimp-devel package as well as the
  37. gimp package.  The gimp package as supplied in most distributions only
  38. contains what's needed to run the Gimp.  The gimp-devel package
  39. contains additional files required to actually build new plugins.
  40.  
  41. If you have installed the Gimp from source on Linux: after running
  42. make install, you must run ldconfig as root before attempting to build
  43. this plugin.
  44.  
  45.  
  46. GHOSTSCRIPT
  47.  
  48. This package includes a Ghostscript driver that may be built, allowing
  49. use of this software for general printing purposes.  Please read
  50. Ghost/README for more information, including how to build and install
  51. it.
  52.  
  53. The Ghostscript driver also includes everything necessary to configure
  54. use with Grant Taylor's Foomatic printing package (see
  55. http://www.linuxprinting.org for a description of this package).
  56.  
  57.  
  58. CUPS
  59.  
  60. This package includes a CUPS driver that may be built, allowing use of
  61. this software for general printing purposes.  Please read cups/README
  62. for more information, including how to build and install it.
  63.  
  64. If you prefer Cups-o-matic, instructions may be found in Ghost/README.
  65.  
  66.  
  67. RECOMMENDED SETTINGS
  68.  
  69. We recommend starting with all default settings for the slider
  70. adjustments in the Color Adjustment window.  The settings can be
  71. adjusted as necessary for particular combinations of ink, paper, and
  72. subject material.
  73.  
  74. We recommend use of the Adaptive Hybrid dithering algorithm in most
  75. cases.  Users of four color printers may find that the Ordered
  76. dithering algorithm is faster and produces nearly as good output.  Use
  77. of this method is strongly discouraged on six color (photo) printers.
  78.  
  79. On most inkjet printers, 720 dpi will produce very high quality;
  80. 1440x720 dpi will produce extremely high quality.
  81.  
  82.  
  83. SUPPORT
  84.  
  85. There are four principal ways of requesting support for this package:
  86.  
  87. 1) There are public forums on Sourceforge dedicated to this package.
  88.    Please see http://sourceforge.net/forum/?group_id=1537 for more
  89.    information.  The Help forum is a good source of information.
  90.  
  91. 2) If you have a technical support issue that does not appear to be a
  92.    bug in the software, you can use the Tech Support Manager.  Please
  93.    see http://sourceforge.net/support/?group_id=1537.
  94.  
  95. 3) If you have found a clear bug in the package, you may file a bug
  96.    report at http://sourceforge.net/bugs/?group_id=1537.
  97.  
  98. 4) You may send mail to the gimp-print-devel@sourceforge.net mailing
  99.    list.  This is recommended as a last resort only.
  100.  
  101.  
  102. USE OF THE CVS REPOSITORY
  103.  
  104. If you have a copy of the source from the CVS repository, then prior
  105. to running configure, you must
  106.  
  107. aclocal;autoconf;automake
  108.  
  109. If you do run aclocal, beware that versions of the Gimp from 1.1.17
  110. and earlier have a version of gimp.m4 that will create an incorrect
  111. configure script.  The patch is as follows:
  112.  
  113. diff -u /usr/local/share/aclocal/gimp.m4~ /usr/local/share/aclocal/gimp.m4
  114. --- /usr/local/share/aclocal/gimp.m4~   Tue Mar 30 13:49:58 1999
  115. +++ /usr/local/share/aclocal/gimp.m4    Fri Feb 11 22:34:47 2000
  116. @@ -134,6 +134,13 @@
  117.            AC_TRY_LINK([
  118.  #include <stdio.h>
  119.  #include <libgimp/gimp.h>
  120. +GPlugInInfo    PLUG_IN_INFO =          /* Plug-in information */
  121. +{
  122. +  NULL,    /* init_proc */
  123. +  NULL,    /* quit_proc */
  124. +  NULL,    /* query_proc */
  125. +  NULL,    /* run_proc */
  126. +};
  127.  ],      [ return 0; ],
  128.          [ echo "*** The test program compiled, but did not run. This usually means"
  129.            echo "*** that the run-time linker is not finding GIMP or finding the wrong"
  130.  
  131. If you wish to build the Ghostscript driver, you must run 'make ghost'
  132. from top level.
  133.  
  134. If you wish to build the CUPS driver, you must run 'make cups'
  135. from top level.
  136.  
  137. If you are building this from a release, you should not have any
  138. trouble because the configure script will already exist.
  139.  
  140. Enjoy!
  141.