sgi2fax.1
上传用户:weiyuanprp
上传日期:2020-05-20
资源大小:1169k
文件大小:4k
源码类别:

传真(Fax)编程

开发平台:

C/C++

  1. ." $Id: sgi2fax.1,v 1.1.1.1 2005/11/11 21:32:03 faxguy Exp $
  2. ."
  3. ." HylaFAX Facsimile Software
  4. ."
  5. ." Copyright (c) 1990-1996 Sam Leffler
  6. ." Copyright (c) 1991-1996 Silicon Graphics, Inc.
  7. ." HylaFAX is a trademark of Silicon Graphics
  8. ." 
  9. ." Permission to use, copy, modify, distribute, and sell this software and 
  10. ." its documentation for any purpose is hereby granted without fee, provided
  11. ." that (i) the above copyright notices and this permission notice appear in
  12. ." all copies of the software and related documentation, and (ii) the names of
  13. ." Sam Leffler and Silicon Graphics may not be used in any advertising or
  14. ." publicity relating to the software without the specific, prior written
  15. ." permission of Sam Leffler and Silicon Graphics.
  16. ." 
  17. ." THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  18. ." EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  19. ." WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  20. ." 
  21. ." IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  22. ." ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  23. ." OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  24. ." WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  25. ." LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  26. ." OF THIS SOFTWARE.
  27. ."
  28. .if n .po 0
  29. .ds Fx fIHylas-1FAXs+1fP
  30. .TH SGI2FAX 1 "June 14, 1994"
  31. .SH NAME
  32. sgi2fax - convert a Silicon Graphics image file for facsimile transmission
  33. .SH SYNOPSIS
  34. .B ${LIBEXEC}/sgi2fax
  35. [
  36. .I options
  37. ]
  38. .IR files ...
  39. .SH DESCRIPTION
  40. .I sgi2fax
  41. converts Silicon Graphics format images to
  42. bilevel
  43. .SM TIFF
  44. Class F images in preparation for transmission as facsimile.
  45. .I sgi2fax
  46. is not normally invoked directly; it is usually run by
  47. .IR sendfax (1)
  48. when an
  49. .SM SGI
  50. image file is submitted for transmission.
  51. .PP
  52. Images are converted by scaling them to fill the guaranteed
  53. reproducible area on a default page.
  54. Each 
  55. .SM RGB
  56. pixel
  57. .I p
  58. is converted to greyscale according to:
  59. .nf
  60. .sp .5
  61. .ti +0.5i
  62. fIpfPdru * %r + fIpfPdgu * %g + fIpfPdbu * %b
  63. .sp .5
  64. .fi
  65. where %r, %g, and %b default to 30, 59, and 11, respectively.
  66. Greyscale images are then process with a high pass filter
  67. and dithered to a bilevel image.
  68. The resultant image are written as a 
  69. .SM TIFF
  70. Class F document.
  71. .PP
  72. By default, the output image is created with 204 dots/inch
  73. horizontal resolution and 98 lines/inch vertical resolution.
  74. The image is written as Group 3 1D-encoded data.
  75. .SH OPTIONS
  76. .TP
  77. .B -1
  78. (c
  79. .BR -2 )
  80. Write the image as Group 3 1D- (2D-) encoded data.
  81. .TP
  82. .BI -b " %b"
  83. Set the
  84. .I %b
  85. parameter used to convert color pixel values
  86. to greyscale pixel values.
  87. .TP
  88. .BI -g " %g"
  89. Set the
  90. .I %g
  91. parameter used to convert color pixel values
  92. to greyscale pixel values.
  93. .TP
  94. .B -l
  95. Generate an image at 98 lines/inch vertical resolution.
  96. know as fIlow resolutionfP.
  97. .TP
  98. .B -m
  99. Generate an image at 196 lines/inch vertical resolution.
  100. .TP
  101. .BI -o " file"
  102. Write output to
  103. .I file
  104. instead of the default file named
  105. .BR sgi.fax .
  106. .TP
  107. .BI -r " %r"
  108. Set the
  109. .I %r
  110. parameter used to convert color pixel values
  111. to greyscale pixel values.
  112. .TP
  113. .BI -s " size"
  114. Set the output size according to the named page size.
  115. Images are normally created with a system-default page size
  116. (usually letter-size pages, 8.5" by 11", for sites in North America).
  117. Alternate page sizes are specified symbolically using either
  118. the name or abbreviation of an entry in the
  119. .IR pagesizes (${MANNUM4_5})
  120. database; e.g.
  121. .I a3
  122. (ISO A3),
  123. .I a4
  124. (ISO A4),
  125. .I a5
  126. (ISO A5),
  127. .I a6
  128. (ISO A6),
  129. .I b4
  130. (ISO B4),
  131. .I na-let
  132. (North American Letter),
  133. .I us-leg
  134. (American Legal),
  135. .I us-led
  136. (American Ledger),
  137. .I us-exe
  138. (American Executive),
  139. .I jp-let
  140. (Japanese Letter),
  141. and
  142. .I jp-leg
  143. (Japanese Legal).
  144. Comparisons are case-insensitive and any match of a
  145. substring of the full page-size name is sufficient; e.g. ``legal'' would
  146. match ``American Legal''.
  147. .SH FILES
  148. .ta w'${LIBDATA}/pagezes    'u
  149. ${LIBDATA}/pagesizes page size database
  150. .SH "SEE ALSO"
  151. .IR hylafax-client (1),
  152. .IR sendfax (1),
  153. .IR hylafax-server(${MANNUM4_5})