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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1994 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 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. '" RCS: @(#) $Id: image.n,v 1.6.4.1 2004/10/28 10:19:29 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH image n 4.0 Tk "Tk Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. image - Create and manipulate images
  16. .SH SYNOPSIS
  17. fBimagefR fIoption fR?fIarg arg ...fR?
  18. .BE
  19. .SH DESCRIPTION
  20. .PP
  21. The fBimagefR command is used to create, delete, and query images.
  22. It can take several different forms, depending on the
  23. fIoptionfR argument.  The legal forms are:
  24. .TP
  25. fBimage create fItype fR?fInamefR? ?fIoption value ...fR?
  26. Creates a new image and a command with the same name and returns its name.
  27. fItypefR specifies the type of the image, which must be one of
  28. the types currently defined (e.g., fBbitmapfR).
  29. fInamefR specifies the name for the image;  if it is omitted then
  30. Tk picks a name of the form fBimagefIxfR, where fIxfR is
  31. an integer.
  32. There may be any number of fIoptionfR-fIvaluefR pairs,
  33. which provide configuration options for the new image.
  34. The legal set of options is defined separately for each image
  35. type;  see below for details on the options for built-in image types.
  36. If an image already exists by the given name then it is replaced
  37. with the new image and any instances of that image will redisplay
  38. with the new contents.
  39. It is important to note that the image command will silently overwrite any
  40. procedure that may currently be defined by the given name, so choose the
  41. name wisely.  It is recommended to use a separate namespace for image names
  42. (e.g., fB::img::logofR, fB::img::largefR).
  43. .TP
  44. fBimage delete fR?fIname namefR ...?
  45. Deletes each of the named images and returns an empty string.
  46. If there are instances of the images displayed in widgets,
  47. the images won't actually be deleted until all of the instances
  48. are released.
  49. However, the association between the instances and the image
  50. manager will be dropped.
  51. Existing instances will retain their sizes but redisplay as
  52. empty areas.
  53. If a deleted image is recreated with another call to fBimage createfR,
  54. the existing instances will use the new image.
  55. .TP
  56. fBimage height fInamefR
  57. Returns a decimal string giving the height of image fInamefR
  58. in pixels.
  59. .TP
  60. fBimage inuse fInamefR
  61. Returns a boolean value indicating whether or not the image given by
  62. fInamefR is in use by any widgets.
  63. .TP
  64. fBimage namesfR
  65. Returns a list containing the names of all existing images.
  66. .TP
  67. fBimage type fInamefR
  68. Returns the type of image fInamefR (the value of the fItypefR
  69. argument to fBimage createfR when the image was created).
  70. .TP
  71. fBimage typesfR
  72. Returns a list whose elements are all of the valid image types
  73. (i.e., all of the values that may be supplied for the fItypefR
  74. argument to fBimage createfR).
  75. .TP
  76. fBimage width fInamefR
  77. Returns a decimal string giving the width of image fInamefR
  78. in pixels.
  79. .PP
  80. Additional operations (e.g. writing the image to a file) may be
  81. available as subcommands of the image instance command. See the manual
  82. page for the particular image type for details.
  83. .SH "BUILT-IN IMAGE TYPES"
  84. .PP
  85. The following image types are defined by Tk so they will be available
  86. in any Tk application.
  87. Individual applications or extensions may define additional types.
  88. .TP
  89. fBbitmapfR
  90. Each pixel in the image displays a foreground color, a background
  91. color, or nothing.
  92. See the fBbitmapfR manual entry for more information.
  93. .TP
  94. fBphotofR
  95. Displays a variety of full-color images, using dithering to
  96. approximate colors on displays with limited color capabilities.
  97. See the fBphotofR manual entry for more information.
  98. .SH "SEE ALSO"
  99. bitmap(n), options(n), photo(n)
  100. .SH KEYWORDS
  101. height, image, types of images, width