home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _5c182b7a80cb82903b3f49b6bfe81b9b < prev    next >
Text File  |  2000-03-23  |  23KB  |  451 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Tk::Photo - Full-color images</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Tk::Photo - Full-color images</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#creating photos">CREATING PHOTOS</A></LI>
  26.     <LI><A HREF="#image methods">IMAGE METHODS</A></LI>
  27.     <LI><A HREF="#image formats">IMAGE FORMATS</A></LI>
  28.     <LI><A HREF="#color allocation">COLOR ALLOCATION</A></LI>
  29.     <LI><A HREF="#credits">CREDITS</A></LI>
  30.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  31.     <LI><A HREF="#keywords">KEYWORDS</A></LI>
  32. </UL>
  33. <!-- INDEX END -->
  34.  
  35. <HR>
  36. <P>
  37. <H1><A NAME="name">NAME</A></H1>
  38. <P>Tk::Photo - Full-color images</P>
  39. <P>
  40. <HR>
  41. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  42. <UL>
  43. <LI>Linux</LI>
  44. <LI>Solaris</LI>
  45. <LI>Windows</LI>
  46. </UL>
  47. <HR>
  48. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  49. <P>    <EM>$widget</EM>-><STRONG>Photo</STRONG>(?<EM>name</EM>??, <EM>options</EM>?)</P>
  50. <P>
  51. <HR>
  52. <H1><A NAME="description">DESCRIPTION</A></H1>
  53. <P>A photo is an <A HREF="../../../site/lib/Tk/Image.html">image</A> whose pixels can display any color or be
  54. transparent.  A photo image is stored internally in full color (32
  55. bits per pixel), and is displayed using dithering if necessary.  Image
  56. data for a photo image can be obtained from a file or a string, or it
  57. can be supplied from
  58. C code through a procedural interface.  At present, only GIF and PPM/PGM
  59. formats are supported, but an interface exists to allow additional
  60. image file formats to be added easily.  A photo image is transparent
  61. in regions where no image data has been supplied.</P>
  62. <P>
  63. <HR>
  64. <H1><A NAME="creating photos">CREATING PHOTOS</A></H1>
  65. <P>Photos are created using the <STRONG>Photo</STRONG> method.
  66. <STRONG>Photo</STRONG> supports the following <EM>options</EM>:</P>
  67. <DL>
  68. <DT><STRONG><A NAME="item_%2Ddata_%3D%3E_string"><STRONG>-data</STRONG> => <EM>string</EM></A></STRONG><BR>
  69. <DD>
  70. Specifies the contents of the image as a string.  The format of the
  71. string must be one of those for which there is an image file format
  72. handler that will accept string data.  If both the <STRONG>-data</STRONG>
  73. and <STRONG>-file</STRONG> options are specified, the <STRONG>-file</STRONG> option takes
  74. precedence.
  75. <P></P>
  76. <DT><STRONG><A NAME="item_%2Dformat_%3D%3E_format%2Dname"><STRONG>-format</STRONG> => <EM>format-name</EM></A></STRONG><BR>
  77. <DD>
  78. Specifies the name of the file format for the data specified with the
  79. <STRONG>-data</STRONG> or <STRONG>-file</STRONG> option.
  80. <P></P>
  81. <DT><STRONG><A NAME="item_%2Dfile_%3D%3E_name"><STRONG>-file</STRONG> => <EM>name</EM></A></STRONG><BR>
  82. <DD>
  83. <EM>name</EM> gives the name of a file that is to be read to supply data
  84. for the photo image.  The file format must be one of those for which
  85. there is an image file format handler that can read data.
  86. <P></P>
  87. <DT><STRONG><A NAME="item_%2Dgamma_%3D%3E_value"><STRONG>-gamma</STRONG> => <EM>value</EM></A></STRONG><BR>
  88. <DD>
  89. Specifies that the colors allocated for displaying this image in a
  90. window should be corrected for a non-linear display with the specified
  91. gamma exponent value.  (The intensity produced by most
  92. CRT displays is a power function of the input value, to a good
  93. approximation; gamma is the exponent and is typically around 2).
  94. The value specified must be greater than zero.  The default
  95. value is one (no correction).  In general, values greater than one
  96. will make the image lighter, and values less than one will make it
  97. darker.
  98. <P></P>
  99. <DT><STRONG><A NAME="item_%2Dheight_%3D%3E_number"><STRONG>-height</STRONG> => <EM>number</EM></A></STRONG><BR>
  100. <DD>
  101. Specifies the height of the image, in pixels.  This option is useful
  102. primarily in situations where the user wishes to build up the contents
  103. of the image piece by piece.  A value of zero (the default) allows the
  104. image to expand or shrink vertically to fit the data stored in it.
  105. <P></P>
  106. <DT><STRONG><A NAME="item_%2Dpalette_%3D%3E_palette%2Dspec"><STRONG>-palette</STRONG> => <EM>palette-spec</EM></A></STRONG><BR>
  107. <DD>
  108. Specifies the resolution of the color cube to be allocated for
  109. displaying this image, and thus the number of colors used from the
  110. colormaps of the windows where it is displayed.  The
  111. <EM>palette-spec</EM> string may be either a single decimal number,
  112. specifying the number of shades of gray to use, or three decimal
  113. numbers separated by slashes (/), specifying the number of shades of
  114. red, green and blue to use, respectively.  If the first form (a single
  115. number) is used, the image will be displayed in monochrome (i.e.,
  116. grayscale).
  117. <P></P>
  118. <DT><STRONG><A NAME="item_%2Dwidth_%3D%3E_number"><STRONG>-width</STRONG> => <EM>number</EM></A></STRONG><BR>
  119. <DD>
  120. Specifies the width of the image, in pixels.    This option is useful
  121. primarily in situations where the user wishes to build up the contents
  122. of the image piece by piece.  A value of zero (the default) allows the
  123. image to expand or shrink horizontally to fit the data stored in it.
  124. <P></P></DL>
  125. <P>
  126. <HR>
  127. <H1><A NAME="image methods">IMAGE METHODS</A></H1>
  128. <P>When a photo image is created, Tk also creates a new object.
  129. This object supports the <STRONG>configure</STRONG> and <STRONG>cget</STRONG> methods
  130. described in <A HREF="../../../site/lib/Tk/options.html">the Tk::options manpage</A> which can be used to enquire and
  131. modify the options described above.</P>
  132. <P>Those options that write data to the image generally expand the size
  133. of the image, if necessary, to accommodate the data written to the
  134. image, unless the user has specified non-zero values for the
  135. <STRONG>-width</STRONG> and/or <STRONG>-height</STRONG> configuration options, in which
  136. case the width and/or height, respectively, of the image will not be
  137. changed.</P>
  138. <P>The following addition methods are available for photo images:</P>
  139. <DL>
  140. <DT><STRONG><A NAME="item_blank"><EM>$image</EM>-><STRONG>blank</STRONG></A></STRONG><BR>
  141. <DD>
  142. Blank the image; that is, set the entire image to have no data, so it
  143. will be displayed as transparent, and the background of whatever
  144. window it is displayed in will show through.
  145. <P></P>
  146. <DT><STRONG><A NAME="item_copy"><EM>$image</EM>-><STRONG>copy</STRONG>(<EM>sourceImage</EM> ?,<EM>option value(s) ...</EM>?)</A></STRONG><BR>
  147. <DD>
  148. Copies a region from the image called <EM>sourceImage</EM> (which must
  149. be a photo image) to the image called <EM>$image</EM>, possibly with
  150. pixel zooming and/or subsampling.  If no options are specified, this
  151. method copies the whole of <EM>sourceImage</EM> into <EM>$image</EM>,
  152. starting at coordinates (0,0) in <EM>$image</EM>.  The following
  153. options may be specified:
  154. <DL>
  155. <DT><STRONG><A NAME="item_%2Dfrom_%3D%3E_x1_y1_%3Fx2_y2%3F"><STRONG>-from</STRONG> => <EM>x1 y1 ?x2 y2?</EM></A></STRONG><BR>
  156. <DD>
  157. Specifies a rectangular sub-region of the source image to be copied.
  158. (<EM>x1,y1</EM>) and (<EM>x2,y2</EM>) specify diagonally opposite corners of
  159. the rectangle.  If <EM>x2</EM> and <EM>y2</EM> are not specified, the
  160. default value is the bottom-right corner of the source image.  The
  161. pixels copied will include the left and top edges of the specified
  162. rectangle but not the bottom or right edges.  If the <STRONG>-from</STRONG>
  163. option is not given, the default is the whole source image.
  164. <P></P>
  165. <DT><STRONG><A NAME="item_%2Dto_%3D%3E_x1_y1_%3Fx2_y2%3F"><STRONG>-to</STRONG> => <EM>x1 y1 ?x2 y2?</EM></A></STRONG><BR>
  166. <DD>
  167. Specifies a rectangular sub-region of the destination image to be
  168. affected.  (<EM>x1,y1</EM>) and (<EM>x2,y2</EM>) specify diagonally opposite
  169. corners of the rectangle.  If <EM>x2</EM> and <EM>y2</EM> are not specified,
  170. the default value is (<EM>x1,y1</EM>) plus the size of the source
  171. region (after subsampling and zooming, if specified).  If <EM>x2</EM> and
  172. <EM>y2</EM> are specified, the source region will be replicated if
  173. necessary to fill the destination region in a tiled fashion.
  174. <P></P>
  175. <DT><STRONG><A NAME="item_%2Dshrink"><STRONG>-shrink</STRONG></A></STRONG><BR>
  176. <DD>
  177. Specifies that the size of the destination image should be reduced, if
  178. necessary, so that the region being copied into is at the bottom-right
  179. corner of the image.  This option will not affect the width or height
  180. of the image if the user has specified a non-zero value for the
  181. <STRONG>-width</STRONG> or <STRONG>-height</STRONG> configuration option, respectively.
  182. <P></P>
  183. <DT><STRONG><A NAME="item_%2Dzoom_%3D%3E_x_y"><STRONG>-zoom</STRONG> => <EM>x y</EM></A></STRONG><BR>
  184. <DD>
  185. Specifies that the source region should be magnified by a factor of
  186. <EM>x</EM> in the X direction and <EM>y</EM> in the Y direction.  If <EM>y</EM>
  187. is not given, the default value is the same as <EM>x</EM>.  With this
  188. option, each pixel in the source image will be expanded into a block
  189. of <EM>x</EM> x <EM>y</EM> pixels in the destination image, all the same
  190. color.  <EM>x</EM> and <EM>y</EM> must be greater than 0.
  191. <P></P>
  192. <DT><STRONG><A NAME="item_%2Dsubsample_%3D%3E_x_y"><STRONG>-subsample</STRONG> => <EM>x y</EM></A></STRONG><BR>
  193. <DD>
  194. Specifies that the source image should be reduced in size by using
  195. only every <EM>x</EM>th pixel in the X direction and <EM>y</EM>th pixel in
  196. the Y direction.  Negative values will cause the image to be flipped
  197. about the Y or X axes, respectively.  If <EM>y</EM> is not given, the
  198. default value is the same as <EM>x</EM>.
  199. <P></P></DL>
  200. <DT><STRONG><A NAME="item_data"><EM>$image</EM>-><STRONG>data</STRONG>(?<EM>option value(s), ...</EM>?)</A></STRONG><BR>
  201. <DD>
  202. returns image data in the form of a string.
  203. The following options may be specified:
  204. <DL>
  205. <DT><STRONG><A NAME="item_%2Dbackground_%3D%3E_color"><STRONG>-background</STRONG> => <EM> color</EM></A></STRONG><BR>
  206. <DD>
  207. If the color is specified, the data will not contain any transparency
  208. information. In all transparent pixels the color will be replaced by
  209. the specified color.
  210. <P></P>
  211. <DT><STRONG><STRONG>-format</STRONG> => <EM>format-name</EM></STRONG><BR>
  212. <DD>
  213. Specifies the name of the image file format handler to be used to
  214. convert the data.  Specifically, this method searches
  215. for the first handler whose name matches a initial substring of
  216. <EM>format-name</EM> and which has the capability to write an string.
  217. If this option is not given, the data is returned in the default
  218. format as accepted by <EM>$image</EM>-><STRONG>put</STRONG>.
  219. <P></P>
  220. <DT><STRONG><STRONG>-from</STRONG> => <EM>x1 y1 ?x2 y2?</EM></STRONG><BR>
  221. <DD>
  222. Specifies a rectangular region of <EM>$image</EM> to be written to the
  223. string.  If only <EM>x1</EM> and <EM>y1</EM> are specified, the region
  224. extends from <EM>(x1,y1)</EM> to the bottom-right corner of
  225. <EM>$image</EM>.  If all four coordinates are given, they specify
  226. diagonally opposite corners of the rectangular region.  The default,
  227. if this option is not given, is the whole image.
  228. <P></P></DL>
  229. <DT><STRONG><A NAME="item_%2Dgrayscale"><STRONG>-grayscale</STRONG></A></STRONG><BR>
  230. <DD>
  231. If this options is specified, the data will not contain color
  232. information. All pixel data will be transformed into grayscale.
  233. <P></P>
  234. <DT><STRONG><A NAME="item_get"><EM>$image</EM>-><STRONG>get</STRONG>(<EM>x,y</EM>)</A></STRONG><BR>
  235. <DD>
  236. Returns the color of the pixel at coordinates (<EM>x</EM>,<EM>y</EM>) in the
  237. image as a list of three integers between 0 and 255, representing the
  238. red, green and blue components respectively.
  239. <P></P>
  240. <DT><STRONG><A NAME="item_put"><EM>$image</EM>-><STRONG>put</STRONG>(<EM>data</EM> ?,<STRONG>-format</STRONG>=><EM>format-name</EM>? ?,<STRONG>-to</STRONG>=><EM> x1 y1 ?x2 y2?</EM>?)</A></STRONG><BR>
  241. <DD>
  242. Sets pixels in <EM> imageName</EM> to the data specified in
  243. <EM>data</EM>. This command first searches the list of image file
  244. format handlers for a handler that can interpret the data
  245. in <EM>data</EM>, and then reads the image in <EM>filename</EM> into
  246. <EM>imageName</EM> (the destination image). The following options
  247. may be specified:
  248. <DL>
  249. <DT><STRONG><A NAME="item_%2Dformat_format%2Dname"><STRONG>-format </STRONG><EM>format-name</EM></A></STRONG><BR>
  250. <DD>
  251. Specifies the format of the image data in <EM>data</EM>.
  252. Specifically, only image file format handlers whose names begin with
  253. <EM>format-name</EM> will be used while searching for an image data
  254. format handler to read the data. Otherwise <EM>data</EM> is used to form a two-dimensional array of pixels
  255. that are then copied into the <EM>$image</EM>. <EM>data</EM> is structured
  256. then as a list of horizontal rows, from top to bottom, each of which is
  257. a list of colors, listed from left to right.  Each color may be specified
  258. by name (e.g., blue) or in hexadecimal form (e.g., #2376af).
  259. <P></P>
  260. <DT><STRONG><A NAME="item_%2Dfrom_x1_y1_x2_y2"><STRONG>-from </STRONG><EM>x1 y1 x2 y2</EM></A></STRONG><BR>
  261. <DD>
  262. Specifies a rectangular sub-region of the image file data to be
  263. returned. If only <EM>x1</EM> and <EM>y1</EM> are specified, the region
  264. extends from (<EM>x1,y1</EM>) to the bottom-right corner of the image
  265. in the image file.  If all four coordinates are specified, they
  266. specify diagonally opposite corners or the region. The default,
  267. if this option is not specified, is the whole of the image.
  268. <P></P>
  269. <DT><STRONG><STRONG>-shrink</STRONG></STRONG><BR>
  270. <DD>
  271. If this option, the size of <EM>imageName</EM> will be reduced, if
  272. necessary, so that the region into which the image file data are read
  273. is at the bottom-right corner of the <EM>imageName</EM>.  This option
  274. will not affect the width or height of the image if the user has
  275. specified a non-zero value for the <STRONG>-width</STRONG> or <STRONG>-height</STRONG>
  276. configuration option, respectively.
  277. <P></P>
  278. <DT><STRONG><A NAME="item_%2Dto_x_y"><STRONG>-to </STRONG><EM>x y</EM></A></STRONG><BR>
  279. <DD>
  280. Specifies the coordinates of the top-left corner of the region of
  281. <EM>imageName</EM> into which data from <EM>filename</EM> are to be read.
  282. The default is (0,0).
  283. <P></P></DL>
  284. <DT><STRONG><A NAME="item_read"><EM>$image</EM>-><STRONG>read</STRONG>(<EM>filename</EM> ?,<EM>option value(s), ...</EM>?)</A></STRONG><BR>
  285. <DD>
  286. Reads image data from the file named <EM>filename</EM> into the image.
  287. This method first searches the list of
  288. image file format handlers for a handler that can interpret the data
  289. in <EM>filename</EM>, and then reads the image in <EM>filename</EM> into
  290. <EM>$image</EM> (the destination image).  The following options may be
  291. specified:
  292. <DL>
  293. <DT><STRONG><STRONG>-format</STRONG> => <EM>format-name</EM></STRONG><BR>
  294. <DD>
  295. Specifies the format of the image data in <EM>filename</EM>.
  296. Specifically, only image file format handlers whose names begin with
  297. <EM>format-name</EM> will be used while searching for an image data
  298. format handler to read the data.
  299. <P></P>
  300. <DT><STRONG><STRONG>-from</STRONG> => <EM>x1 y1 ?x2 y2?</EM></STRONG><BR>
  301. <DD>
  302. Specifies a rectangular sub-region of the image file data to be copied
  303. to the destination image.  If only <EM>x1</EM> and <EM>y1</EM> are
  304. specified, the region extends from (<EM>x1,y1</EM>) to the bottom-right
  305. corner of the image in the image file.  If all four coordinates are
  306. specified, they specify diagonally opposite corners or the region.
  307. The default, if this option is not specified, is the whole of the
  308. image in the image file.
  309. <P></P>
  310. <DT><STRONG><STRONG>-shrink</STRONG></STRONG><BR>
  311. <DD>
  312. If this option, the size of <EM>$image</EM> will be reduced, if
  313. necessary, so that the region into which the image file data are read
  314. is at the bottom-right corner of the <EM>$image</EM>.  This option
  315. will not affect the width or height of the image if the user has
  316. specified a non-zero value for the <STRONG>-width</STRONG> or <STRONG>-height</STRONG>
  317. configuration option, respectively.
  318. <P></P>
  319. <DT><STRONG><A NAME="item_%2Dto_%3D%3E_x_y"><STRONG>-to</STRONG> => <EM>x y</EM></A></STRONG><BR>
  320. <DD>
  321. Specifies the coordinates of the top-left corner of the region of
  322. <EM>$image</EM> into which data from <EM>filename</EM> are to be read.
  323. The default is (0,0).
  324. <P></P></DL>
  325. <DT><STRONG><A NAME="item_redither"><EM>$image</EM>-><STRONG>redither</STRONG></A></STRONG><BR>
  326. <DD>
  327. The dithering algorithm used in displaying photo images propagates
  328. quantization errors from one pixel to its neighbors.
  329. If the image data for <EM>$image</EM> is supplied in pieces, the
  330. dithered image may not be exactly correct.  Normally the difference is
  331. not noticeable, but if it is a problem, this method can be used to
  332. recalculate the dithered image in each window where the image is
  333. displayed.
  334. <P></P>
  335. <DT><STRONG><A NAME="item_write"><EM>$image</EM>-><STRONG>write</STRONG>(<EM>filename</EM> ?,<EM>option value(s), ...</EM>?)</A></STRONG><BR>
  336. <DD>
  337. Writes image data from <EM>$image</EM> to a file named <EM>filename</EM>.
  338. The following options may be specified:
  339. <DL>
  340. <DT><STRONG><A NAME="item_%2Dbackground_color"><STRONG>-background</STRONG><EM> color</EM></A></STRONG><BR>
  341. <DD>
  342. If the color is specified, the data will not contain any transparency
  343. information. In all transparent pixels the color will be replaced by
  344. the specified color.
  345. <P></P>
  346. <DT><STRONG><STRONG>-format</STRONG> => <EM>format-name</EM></STRONG><BR>
  347. <DD>
  348. Specifies the name of the image file format handler to be used to
  349. write the data to the file.  Specifically, this subcommand searches
  350. for the first handler whose name matches a initial substring of
  351. <EM>format-name</EM> and which has the capability to write an image
  352. file.  If this option is not given, this subcommand uses the first
  353. handler that has the capability to write an image file.
  354. <P></P>
  355. <DT><STRONG><STRONG>-from</STRONG> => <EM>x1 y1 ?x2 y2?</EM></STRONG><BR>
  356. <DD>
  357. Specifies a rectangular region of <EM>$image</EM> to be written to the
  358. image file.  If only <EM>x1</EM> and <EM>y1</EM> are specified, the region
  359. extends from <EM>(x1,y1)</EM> to the bottom-right corner of
  360. <EM>$image</EM>.  If all four coordinates are given, they specify
  361. diagonally opposite corners of the rectangular region.  The default,
  362. if this option is not given, is the whole image.
  363. <P></P>
  364. <DT><STRONG><STRONG>-grayscale</STRONG></STRONG><BR>
  365. <DD>
  366. If this options is specified, the data will not contain color
  367. information. All pixel data will be transformed into grayscale.
  368. <P></P></DL>
  369. </DL>
  370. <P>
  371. <HR>
  372. <H1><A NAME="image formats">IMAGE FORMATS</A></H1>
  373. <P>The photo image code is structured to allow handlers for additional
  374. image file formats to be added easily.  The photo image code maintains
  375. a list of these handlers.  Handlers are added to the list by
  376. registering them with a call to <STRONG>Tk_CreatePhotoImageFormat</STRONG>.  The
  377. standard Tk distribution comes with handlers for PPM/PGM and GIF formats,
  378. which are automatically registered on initialization.</P>
  379. <P>When reading an image file or processing
  380. string data specified with the <STRONG>-data</STRONG> configuration option, the
  381. photo image code invokes each handler in turn until one is
  382. found that claims to be able to read the data in the file or string.
  383. Usually this will find the correct handler, but if it doesn't, the
  384. user may give a format name with the <STRONG>-format</STRONG> option to specify
  385. which handler to use.  In fact the photo image code will try those
  386. handlers whose names begin with the string specified for the
  387. <STRONG>-format</STRONG> option (the comparison is case-insensitive).  For
  388. example, if the user specifies <STRONG>-format gif</STRONG>, then a handler
  389. named GIF87 or GIF89 may be invoked, but a handler
  390. named JPEG may not (assuming that such handlers had been
  391. registered).</P>
  392. <P>When writing image data to a file, the processing of the
  393. <STRONG>-format</STRONG> option is slightly different: the string value given
  394. for the <STRONG>-format</STRONG> option must begin with the complete name of the
  395. requested handler, and may contain additional information following
  396. that, which the handler can use, for example, to specify which variant
  397. to use of the formats supported by the handler.</P>
  398. <P>
  399. <HR>
  400. <H1><A NAME="color allocation">COLOR ALLOCATION</A></H1>
  401. <P>When a photo image is displayed in a window, the photo image code
  402. allocates colors to use to display the image and dithers the image, if
  403. necessary, to display a reasonable approximation to the image using
  404. the colors that are available.  The colors are allocated as a color
  405. cube, that is, the number of colors allocated is the product of the
  406. number of shades of red, green and blue.</P>
  407. <P>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.</P>
  419. <P>The user can exercise some control over the number of colors that a
  420. photo image uses with the <STRONG>-palette</STRONG> configuration option.  If
  421. this option is used, it specifies the maximum number of shades of
  422. each primary color to try to allocate.  It can also be used to force
  423. the image to be displayed in shades of gray, even on a color display,
  424. by giving a single number rather than three numbers separated by
  425. slashes.</P>
  426. <P>
  427. <HR>
  428. <H1><A NAME="credits">CREDITS</A></H1>
  429. <P>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.</P>
  432. <P>
  433. <HR>
  434. <H1><A NAME="see also">SEE ALSO</A></H1>
  435. <P><A HREF="../../../site/lib/Tk/Bitmap.html">Tk::Bitmap</A>
  436. <A HREF="../../../site/lib/Tk/Image.html">Tk::Image</A>
  437. <A HREF="../../../site/lib/Tk/Pixmap.html">Tk::Pixmap</A></P>
  438. <P>
  439. <HR>
  440. <H1><A NAME="keywords">KEYWORDS</A></H1>
  441. <P>photo, image, color</P>
  442. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  443. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  444. <STRONG><P CLASS=block> Tk::Photo - Full-color images</P></STRONG>
  445. </TD></TR>
  446. </TABLE>
  447.  
  448. </BODY>
  449.  
  450. </HTML>
  451.