photo.n
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:20k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1994 The Australian National University
  3. '" Copyright (c) 1994-1997 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" Author: Paul Mackerras (paulus@cs.anu.edu.au),
  9. '"     Department of Computer Science,
  10. '"     Australian National University.
  11. '"
  12. '" RCS: @(#) $Id: photo.n,v 1.14.2.5 2007/06/05 12:58:18 dkf Exp $
  13. '" 
  14. .so man.macros
  15. .TH photo n 4.0 Tk "Tk Built-In Commands"
  16. .BS
  17. '" Note:  do not modify the .SH NAME line immediately below!
  18. .SH NAME
  19. photo - Full-color images
  20. .SH SYNOPSIS
  21. fBimage create photo fR?fInamefR? ?fIoptionsfR?
  22. .BE
  23. .SH DESCRIPTION
  24. .PP
  25. A photo is an image whose pixels can display any color or be
  26. transparent.  A photo image is stored internally in full color (32
  27. bits per pixel), and is displayed using dithering if necessary.  Image
  28. data for a photo image can be obtained from a file or a string, or it
  29. can be supplied from
  30. C code through a procedural interface.  At present, only GIF and PPM/PGM
  31. formats are supported, but an interface exists to allow additional
  32. image file formats to be added easily.  A photo image is transparent
  33. in regions where no image data has been supplied
  34. .VS 8.4
  35. or where it has been set transparent by the fBtransparency setfR
  36. subcommand.
  37. .VE 8.4
  38. .SH "CREATING PHOTOS"
  39. .PP
  40. Like all images, photos are created using the fBimage createfR
  41. command.
  42. Photos support the following fIoptionsfR:
  43. .TP
  44. fB-data fIstringfR
  45. Specifies the contents of the image as a string.  The string should
  46. contain binary data or, for some formats, base64-encoded data (this is
  47. currently guaranteed to be supported for GIF images).  The format of the
  48. string must be one of those for which there is an image file format
  49. handler that will accept string data.  If both the fB-datafR
  50. and fB-filefR options are specified, the fB-filefR option takes
  51. precedence.
  52. .TP
  53. fB-format fIformat-namefR
  54. Specifies the name of the file format for the data specified with the
  55. fB-datafR or fB-filefR option.
  56. .TP
  57. fB-file fInamefR
  58. fInamefR gives the name of a file that is to be read to supply data
  59. for the photo image.  The file format must be one of those for which
  60. there is an image file format handler that can read data.
  61. .TP
  62. fB-gamma fIvaluefR
  63. Specifies that the colors allocated for displaying this image in a
  64. window should be corrected for a non-linear display with the specified
  65. gamma exponent value.  (The intensity produced by most
  66. CRT displays is a power function of the input value, to a good
  67. approximation; gamma is the exponent and is typically around 2).
  68. The value specified must be greater than zero.  The default
  69. value is one (no correction).  In general, values greater than one
  70. will make the image lighter, and values less than one will make it
  71. darker.
  72. .TP
  73. fB-height fInumberfR
  74. Specifies the height of the image, in pixels.  This option is useful
  75. primarily in situations where the user wishes to build up the contents
  76. of the image piece by piece.  A value of zero (the default) allows the
  77. image to expand or shrink vertically to fit the data stored in it.
  78. .TP
  79. fB-palette fIpalette-specfR
  80. Specifies the resolution of the color cube to be allocated for
  81. displaying this image, and thus the number of colors used from the
  82. colormaps of the windows where it is displayed.  The
  83. fIpalette-specfR string may be either a single decimal number,
  84. specifying the number of shades of gray to use, or three decimal
  85. numbers separated by slashes (/), specifying the number of shades of
  86. red, green and blue to use, respectively.  If the first form (a single
  87. number) is used, the image will be displayed in monochrome (i.e.,
  88. grayscale).
  89. .TP
  90. fB-width fInumberfR
  91. Specifies the width of the image, in pixels.    This option is useful
  92. primarily in situations where the user wishes to build up the contents
  93. of the image piece by piece.  A value of zero (the default) allows the
  94. image to expand or shrink horizontally to fit the data stored in it.
  95. .SH "IMAGE COMMAND"
  96. .PP
  97. When a photo image is created, Tk also creates a new command
  98. whose name is the same as the image.
  99. This command may be used to invoke various operations
  100. on the image.
  101. It has the following general form:
  102. .CS
  103. fIimageName option fR?fIarg arg ...fR?
  104. .CE
  105. fIOptionfR and the fIargfRs
  106. determine the exact behavior of the command.
  107. .PP
  108. Those options that write data to the image generally expand the size
  109. of the image, if necessary, to accommodate the data written to the
  110. image, unless the user has specified non-zero values for the
  111. fB-widthfR and/or fB-heightfR configuration options, in which
  112. case the width and/or height, respectively, of the image will not be
  113. changed.
  114. .PP
  115. The following commands are possible for photo images:
  116. .TP
  117. fIimageName fBblankfR
  118. Blank the image; that is, set the entire image to have no data, so it
  119. will be displayed as transparent, and the background of whatever
  120. window it is displayed in will show through.
  121. .TP
  122. fIimageName fBcgetfR fIoptionfR
  123. Returns the current value of the configuration option given
  124. by fIoptionfR.
  125. fIOptionfR may have any of the values accepted by the
  126. fBimage create photofR command.
  127. .TP
  128. fIimageName fBconfigurefR ?fIoptionfR? ?fIvalue option value ...fR?
  129. Query or modify the configuration options for the image.
  130. If no fIoptionfR is specified, returns a list describing all of
  131. the available options for fIimageNamefR (see fBTk_ConfigureInfofR for
  132. information on the format of this list).  If fIoptionfR is specified
  133. with no fIvaluefR, then the command returns a list describing the
  134. one named option (this list will be identical to the corresponding
  135. sublist of the value returned if no fIoptionfR is specified).  If
  136. one or more fIoption-valuefR pairs are specified, then the command
  137. modifies the given option(s) to have the given value(s);  in
  138. this case the command returns an empty string.
  139. fIOptionfR may have any of the values accepted by the
  140. fBimage create photofR command.
  141. .TP
  142. fIimageName fBcopyfR fIsourceImagefR ?fIoption value(s) ...fR?
  143. Copies a region from the image called fIsourceImagefR (which must
  144. be a photo image) to the image called fIimageNamefR, possibly with
  145. pixel zooming and/or subsampling.  If no options are specified, this
  146. command copies the whole of fIsourceImagefR into fIimageNamefR,
  147. starting at coordinates (0,0) in fIimageNamefR.  The following
  148. options may be specified:
  149. .RS
  150. .TP
  151. fB-from fIx1 y1 x2 y2fR
  152. Specifies a rectangular sub-region of the source image to be copied.
  153. (fIx1,y1fR) and (fIx2,y2fR) specify diagonally opposite corners of
  154. the rectangle.  If fIx2fR and fIy2fR are not specified, the
  155. default value is the bottom-right corner of the source image.  The
  156. pixels copied will include the left and top edges of the specified
  157. rectangle but not the bottom or right edges.  If the fB-fromfR
  158. option is not given, the default is the whole source image.
  159. .TP
  160. fB-to fIx1 y1 x2 y2fR
  161. Specifies a rectangular sub-region of the destination image to be
  162. affected.  (fIx1,y1fR) and (fIx2,y2fR) specify diagonally opposite
  163. corners of the rectangle.  If fIx2fR and fIy2fR are not specified,
  164. the default value is (fIx1,y1fR) plus the size of the source
  165. region (after subsampling and zooming, if specified).  If fIx2fR and
  166. fIy2fR are specified, the source region will be replicated if
  167. necessary to fill the destination region in a tiled fashion.
  168. .TP
  169. fB-shrinkfR
  170. Specifies that the size of the destination image should be reduced, if
  171. necessary, so that the region being copied into is at the bottom-right
  172. corner of the image.  This option will not affect the width or height
  173. of the image if the user has specified a non-zero value for the
  174. fB-widthfR or fB-heightfR configuration option, respectively.
  175. .TP
  176. fB-zoom fIx yfR
  177. Specifies that the source region should be magnified by a factor of
  178. fIxfR in the X direction and fIyfR in the Y direction.  If fIyfR
  179. is not given, the default value is the same as fIxfR.  With this
  180. option, each pixel in the source image will be expanded into a block
  181. of fIxfR x fIyfR pixels in the destination image, all the same
  182. color.  fIxfR and fIyfR must be greater than 0.
  183. .TP
  184. fB-subsample fIx yfR
  185. Specifies that the source image should be reduced in size by using
  186. only every fIxfRth pixel in the X direction and fIyfRth pixel in
  187. the Y direction.  Negative values will cause the image to be flipped
  188. about the Y or X axes, respectively.  If fIyfR is not given, the
  189. default value is the same as fIxfR.
  190. .TP
  191. fB-compositingrule fIrulefR
  192. .VS 8.4
  193. Specifies how transparent pixels in the source image are combined with
  194. the destination image.  When a compositing rule of fIoverlayfR is
  195. set, the old contents of the destination image are visible, as if the
  196. source image were printed on a piece of transparent film and placed
  197. over the top of the destination.  When a compositing rule of fIsetfR
  198. is set, the old contents of the destination image are discarded and
  199. the source image is used as-is.  The default compositing rule is
  200. fIoverlayfR.
  201. .VE 8.4
  202. .RE
  203. .TP
  204. fIimageName fBdata ?fIoption value(s) ...fR?
  205. Returns image data in the form of a string. The following options
  206. may be specified:
  207. .RS
  208. .TP
  209. fB-backgroundfI colorfR
  210. If the color is specified, the data will not contain any transparency
  211. information. In all transparent pixels the color will be replaced by
  212. the specified color.
  213. .TP
  214. fB-formatfI format-namefR
  215. Specifies the name of the image file format handler to be used.
  216. Specifically, this subcommand searches
  217. for the first handler whose name matches an initial substring of
  218. fIformat-namefR and which has the capability to read this image data.
  219. If this option is not given, this subcommand uses the first
  220. handler that has the capability to read the image data.
  221. .TP
  222. fB-from fIx1 y1 x2 y2fR
  223. Specifies a rectangular region of fIimageNamefR to be returned.
  224. If only fIx1fR and fIy1fR are specified, the region
  225. extends from fI(x1,y1)fR to the bottom-right corner of
  226. fIimageNamefR.  If all four coordinates are given, they specify
  227. diagonally opposite corners of the rectangular region, including x1,y1
  228. and excluding x2,y2.  The default, if this option is not given, is the
  229. whole image.
  230. .TP
  231. fB-grayscalefR
  232. If this options is specified, the data will not contain color
  233. information. All pixel data will be transformed into grayscale.
  234. .RE
  235. .TP
  236. fIimageName fBgetfR fIx yfR
  237. Returns the color of the pixel at coordinates (fIxfR,fIyfR) in the
  238. image as a list of three integers between 0 and 255, representing the
  239. red, green and blue components respectively.
  240. .TP
  241. fIimageName fBputfR fIdatafR ?fIoption value(s) ...fR?
  242. Sets pixels in fI imageNamefR to the data specified in fIdatafR.
  243. This command first searches the list of image file format handlers for
  244. a handler that can interpret the data in fIdatafR, and then reads
  245. the image encoded within into fIimageNamefR (the destination image).
  246. If fIdatafR does not match any known format, an attempt to interpret
  247. it as a (top-to-bottom) list of scan-lines is made, with each
  248. scan-line being a (left-to-right) list of pixel colors (see
  249. fBTk_GetColorfR for a description of valid colors.)  Every scan-line
  250. must be of the same length.  Note that when fIdatafR is a single
  251. color name, you are instructing Tk to fill a rectangular region with
  252. that color.  The following options may be specified:
  253. .RS
  254. .TP
  255. fB-format fIformat-namefR
  256. Specifies the format of the image data in fIdatafR.
  257. Specifically, only image file format handlers whose names begin with
  258. fIformat-namefR will be used while searching for an image data
  259. format handler to read the data.
  260. .TP
  261. fB-to fIx1 y1fR ?fIx2 y2fR?
  262. Specifies the coordinates of the top-left corner (fIx1fR,fIy1fR)
  263. of the region of fIimageNamefR into which data from fIfilenamefR
  264. are to be read.  The default is (0,0).  If fIx2fR,fIy2fR is given
  265. and fIdatafR is not large enough to cover the rectangle specified by
  266. this option, the image data extracted will be tiled so it covers the
  267. entire destination rectangle.  Note that if fIdatafR specifies a
  268. single color value, then a region extending to the bottom-right corner
  269. represented by (fIx2fR,fIy2fR) will be filled with that color.
  270. .RE
  271. .TP
  272. fIimageName fBreadfR fIfilenamefR ?fIoption value(s) ...fR?
  273. Reads image data from the file named fIfilenamefR into the image.
  274. This command first searches the list of
  275. image file format handlers for a handler that can interpret the data
  276. in fIfilenamefR, and then reads the image in fIfilenamefR into
  277. fIimageNamefR (the destination image).  The following options may be
  278. specified:
  279. .RS
  280. .TP
  281. fB-format fIformat-namefR
  282. Specifies the format of the image data in fIfilenamefR.
  283. Specifically, only image file format handlers whose names begin with
  284. fIformat-namefR will be used while searching for an image data
  285. format handler to read the data.
  286. .TP
  287. fB-from fIx1 y1 x2 y2fR
  288. Specifies a rectangular sub-region of the image file data to be copied
  289. to the destination image.  If only fIx1fR and fIy1fR are
  290. specified, the region extends from (fIx1,y1fR) to the bottom-right
  291. corner of the image in the image file.  If all four coordinates are
  292. specified, they specify diagonally opposite corners or the region.
  293. The default, if this option is not specified, is the whole of the
  294. image in the image file.
  295. .TP
  296. fB-shrinkfR
  297. If this option, the size of fIimageNamefR will be reduced, if
  298. necessary, so that the region into which the image file data are read
  299. is at the bottom-right corner of the fIimageNamefR.  This option
  300. will not affect the width or height of the image if the user has
  301. specified a non-zero value for the fB-widthfR or fB-heightfR
  302. configuration option, respectively.
  303. .TP
  304. fB-to fIx yfR
  305. Specifies the coordinates of the top-left corner of the region of
  306. fIimageNamefR into which data from fIfilenamefR are to be read.
  307. The default is (0,0).
  308. .RE
  309. .TP
  310. fIimageName fBreditherfR
  311. The dithering algorithm used in displaying photo images propagates
  312. quantization errors from one pixel to its neighbors.
  313. If the image data for fIimageNamefR is supplied in pieces, the
  314. dithered image may not be exactly correct.  Normally the difference is
  315. not noticeable, but if it is a problem, this command can be used to
  316. recalculate the dithered image in each window where the image is
  317. displayed.
  318. .TP
  319. fIimageName fBtransparency fIsubcommand ?arg arg ...?fR
  320. .VS 8.4
  321. Allows examination and manipulation of the transparency information in
  322. the photo image.  Several subcommands are available:
  323. .RS
  324. .TP
  325. fIimageName fBtransparency get fIx yfR
  326. Returns a boolean indicating if the pixel at (fIxfR,fIyfR) is
  327. transparent.
  328. .TP
  329. fIimageName fBtransparency set fIx y booleanfR
  330. Makes the pixel at (fIxfR,fIyfR) transparent if fIbooleanfR is
  331. true, and makes that pixel opaque otherwise.
  332. .RE
  333. .VE 8.4
  334. .TP
  335. fIimageName fBwrite fIfilenamefR ?fIoption value(s) ...fR?
  336. Writes image data from fIimageNamefR to a file named fIfilenamefR.
  337. The following options may be specified:
  338. .RS
  339. .TP
  340. fB-backgroundfI colorfR
  341. If the color is specified, the data will not contain any transparency
  342. information. In all transparent pixels the color will be replaced by
  343. the specified color.
  344. .TP
  345. fB-formatfI format-namefR
  346. Specifies the name of the image file format handler to be used to
  347. write the data to the file.  Specifically, this subcommand searches
  348. for the first handler whose name matches an initial substring of
  349. fIformat-namefR and which has the capability to write an image
  350. file.  If this option is not given, this subcommand uses the first
  351. handler that has the capability to write an image file.
  352. .TP
  353. fB-from fIx1 y1 x2 y2fR
  354. Specifies a rectangular region of fIimageNamefR to be written to the
  355. image file.  If only fIx1fR and fIy1fR are specified, the region
  356. extends from fI(x1,y1)fR to the bottom-right corner of
  357. fIimageNamefR.  If all four coordinates are given, they specify
  358. diagonally opposite corners of the rectangular region.  The default,
  359. if this option is not given, is the whole image.
  360. .TP
  361. fB-grayscalefR
  362. If this options is specified, the data will not contain color
  363. information. All pixel data will be transformed into grayscale.
  364. .RE
  365. .SH "IMAGE FORMATS"
  366. .PP
  367. The photo image code is structured to allow handlers for additional
  368. image file formats to be added easily.  The photo image code maintains
  369. a list of these handlers.  Handlers are added to the list by
  370. registering them with a call to fBTk_CreatePhotoImageFormatfR.  The
  371. standard Tk distribution comes with handlers for PPM/PGM and GIF formats,
  372. which are automatically registered on initialization.
  373. .PP
  374. When reading an image file or processing
  375. string data specified with the fB-datafR configuration option, the
  376. photo image code invokes each handler in turn until one is
  377. found that claims to be able to read the data in the file or string.
  378. Usually this will find the correct handler, but if it doesn't, the
  379. user may give a format name with the fB-formatfR option to specify
  380. which handler to use.  In fact the photo image code will try those
  381. handlers whose names begin with the string specified for the
  382. fB-formatfR option (the comparison is case-insensitive).  For
  383. example, if the user specifies fB-format giffR, then a handler
  384. named GIF87 or GIF89 may be invoked, but a handler
  385. named JPEG may not (assuming that such handlers had been
  386. registered).
  387. .PP
  388. When writing image data to a file, the processing of the
  389. fB-formatfR option is slightly different: the string value given
  390. for the fB-formatfR option must begin with the complete name of the
  391. requested handler, and may contain additional information following
  392. that, which the handler can use, for example, to specify which variant
  393. to use of the formats supported by the handler.
  394. .VS 8.4
  395. Note that not all image handlers may support writing transparency data
  396. to a file, even where the target image format does.
  397. .VE 8.4
  398. .SH "COLOR ALLOCATION"
  399. .PP
  400. When a photo image is displayed in a window, the photo image code
  401. allocates colors to use to display the image and dithers the image, if
  402. necessary, to display a reasonable approximation to the image using
  403. the colors that are available.  The colors are allocated as a color
  404. cube, that is, the number of colors allocated is the product of the
  405. number of shades of red, green and blue.
  406. .PP
  407. Normally, the number of
  408. colors allocated is chosen based on the depth of the window.  For
  409. example, in an 8-bit PseudoColor window, the photo image code will
  410. attempt to allocate seven shades of red, seven shades of green and
  411. four shades of blue, for a total of 198 colors.  In a 1-bit StaticGray
  412. (monochrome) window, it will allocate two colors, black and white.  In
  413. a 24-bit DirectColor or TrueColor window, it will allocate 256 shades
  414. each of red, green and blue.  Fortunately, because of the way that
  415. pixel values can be combined in DirectColor and TrueColor windows,
  416. this only requires 256 colors to be allocated.  If not all of the
  417. colors can be allocated, the photo image code reduces the number of
  418. shades of each primary color and tries again.
  419. .PP
  420. The user can exercise some control over the number of colors that a
  421. photo image uses with the fB-palettefR configuration option.  If
  422. this option is used, it specifies the maximum number of shades of
  423. each primary color to try to allocate.  It can also be used to force
  424. the image to be displayed in shades of gray, even on a color display,
  425. by giving a single number rather than three numbers separated by
  426. slashes.
  427. .SH CREDITS
  428. .PP
  429. The photo image type was designed and implemented by Paul Mackerras,
  430. based on his earlier photo widget and some suggestions from
  431. John Ousterhout.
  432. .SH EXAMPLE
  433. Load an image from a file and tile it to the size of a window, which
  434. is useful for producing a tiled background:
  435. .CS
  436. # These lines should be called once
  437. fBimage create photofR untiled -file "theFile.ppm"
  438. fBimage create photofR tiled
  439. # These lines should be called whenever .someWidget changes
  440. # size; a <Configure> binding is useful here
  441. set width  [winfo width .someWidget]
  442. set height [winfo height .someWidget]
  443. tiled fBcopyfR untiled -to 0 0 $width $height -shrink
  444. .CE
  445. .SH "SEE ALSO"
  446. image(n)
  447. .SH KEYWORDS
  448. photo, image, color