~ubuntu-branches/ubuntu/saucy/lazarus/saucy

« back to all changes in this revision

Viewing changes to docs/xml/fcl/fpimage.xml

  • Committer: Package Import Robot
  • Author(s): Paul Gevers, Abou Al Montacir, Bart Martens, Paul Gevers
  • Date: 2013-06-08 14:12:17 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20130608141217-7k0cy9id8ifcnutc
Tags: 1.0.8+dfsg-1
[ Abou Al Montacir ]
* New upstream major release and multiple maintenace release offering many
  fixes and new features marking a new milestone for the Lazarus development
  and its stability level.
  - The detailed list of changes can be found here:
    http://wiki.lazarus.freepascal.org/Lazarus_1.0_release_notes
    http://wiki.lazarus.freepascal.org/Lazarus_1.0_fixes_branch
* LCL changes:
  - LCL is now a normal package.
      + Platform independent parts of the LCL are now in the package LCLBase
      + LCL is automatically recompiled when switching the target platform,
        unless pre-compiled binaries for this target are already installed.
      + No impact on existing projects.
      + Linker options needed by LCL are no more added to projects that do
        not use the LCL package.
  - Minor changes in LCL basic classes behaviour
      + TCustomForm.Create raises an exception if a form resource is not
        found.
      + TNotebook and TPage: a new implementation of these classes was added.
      + TDBNavigator: It is now possible to have focusable buttons by setting
        Options = [navFocusableButtons] and TabStop = True, useful for
        accessibility and for devices with neither mouse nor touch screen.
      + Names of TControlBorderSpacing.GetSideSpace and GetSpace were swapped
        and are now consistent. GetSideSpace = Around + GetSpace.
      + TForm.WindowState=wsFullscreen was added
      + TCanvas.TextFitInfo was added to calculate how many characters will
        fit into a specified Width. Useful for word-wrapping calculations.
      + TControl.GetColorResolvingParent and
        TControl.GetRGBColorResolvingParent were added, simplifying the work
        to obtain the final color of the control while resolving clDefault
        and the ParentColor.
      + LCLIntf.GetTextExtentExPoint now has a good default implementation
        which works in any platform not providing a specific implementation.
        However, Widgetset specific implementation is better, when available.
      + TTabControl was reorganized. Now it has the correct class hierarchy
        and inherits from TCustomTabControl as it should.
  - New unit in the LCL:
      + lazdialogs.pas: adds non-native versions of various native dialogs,
        for example TLazOpenDialog, TLazSaveDialog, TLazSelectDirectoryDialog.
        It is used by widgetsets which either do not have a native dialog, or
        do not wish to use it because it is limited. These dialogs can also be
        used by user applications directly.
      + lazdeviceapis.pas: offers an interface to more hardware devices such
        as the accelerometer, GPS, etc. See LazDeviceAPIs
      + lazcanvas.pas: provides a TFPImageCanvas descendent implementing
        drawing in a LCL-compatible way, but 100% in Pascal.
      + lazregions.pas. LazRegions is a wholly Pascal implementation of
        regions for canvas clipping, event clipping, finding in which control
        of a region tree one an event should reach, for drawing polygons, etc.
      + customdrawncontrols.pas, customdrawndrawers.pas,
        customdrawn_common.pas, customdrawn_android.pas and
        customdrawn_winxp.pas: are the Lazarus Custom Drawn Controls -controls
        which imitate the standard LCL ones, but with the difference that they
        are non-native and support skinning.
  - New APIs added to the LCL to improve support of accessibility software
    such as screen readers.
* IDE changes:
  - Many improvments.
  - The detailed list of changes can be found here:
    http://wiki.lazarus.freepascal.org/New_IDE_features_since#v1.0_.282012-08-29.29
    http://wiki.lazarus.freepascal.org/Lazarus_1.0_release_notes#IDE_Changes
* Debugger / Editor changes:
  - Added pascal sources and breakpoints to the disassembler
  - Added threads dialog.
* Components changes:
  - TAChart: many fixes and new features
  - CodeTool: support Delphi style generics and new syntax extensions.
  - AggPas: removed to honor free licencing. (Closes: Bug#708695)
[Bart Martens]
* New debian/watch file fixing issues with upstream RC release.
[Abou Al Montacir]
* Avoid changing files in .pc hidden directory, these are used by quilt for
  internal purpose and could lead to surprises during build.
[Paul Gevers]
* Updated get-orig-source target and it compinion script orig-tar.sh so that they
  repack the source file, allowing bug 708695 to be fixed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0"?>
2
 
<fpdoc-descriptions>
3
 
  <package name="fcl">
4
 
    <module name="FPImage">
5
 
      <element name="TFPMemoryImage">
6
 
        <short>
7
 
          <var>TFPMemoryImage</var> - FreePascal base class for an image held in memory</short>
8
 
      </element>
9
 
      <element name="TFPPalette">
10
 
        <short>FreePascal color palette class; base for LCL TPalette etc.</short>
11
 
        <descr>[entire review 2010-13-01 DoDi]</descr>
12
 
      </element>
13
 
      <element name="TFPCustomImage">
14
 
        <short>Abstract FreePascal base class for all image classes.</short>
15
 
        <descr>
16
 
          <link id="#LCL.intfgraphics.TLazIntfImage">TLazIntfImage</link> is an LCL implementation of this class.
17
 
 
18
 
TFPCustomImage only provides an image size and a palette, and methods to load, store and Assign images.
19
 
The data storage and handling must be added in derived classes, by overriding the virtual (abstract) methods.
20
 
 
21
 
It also provides Extra image attributes (a TStringList).
22
 
 
23
 
[entire review 2010-14-01 DoDi]</descr>
24
 
        <seealso>
25
 
          <link id="#LCL.intfgraphics.TLazIntfImage">TLazIntfImage</link>
26
 
        </seealso>
27
 
      </element>
28
 
      <element name="TFPMemoryImage"/>
29
 
      <element name="TFPCustomImageHandler">
30
 
        <short>Base class for image handlers.</short>
31
 
      </element>
32
 
      <element name="TFPCustomImageReader">
33
 
        <short>
34
 
          <var>TFPCustomImageReader</var> - FreePascal base class for Image reading</short>
35
 
      </element>
36
 
      <element name="TFPCustomImageWriter">
37
 
        <short>
38
 
          <var>TFPCustomImageWriter</var> - FreePascal base class for writing image data</short>
39
 
      </element>
40
 
      <element name="TFPPalette.FData">
41
 
        <short>
42
 
          <var>FData</var> - local variable to hold data as a Colour Array</short>
43
 
      </element>
44
 
      <element name="TFPPalette.FCount">
45
 
        <short>
46
 
          <var>FCount</var> - local variable to hold number of colours in array</short>
47
 
      </element>
48
 
      <element name="TFPPalette.FCapacity">
49
 
        <short>
50
 
          <var>FCapacity</var> - local variable to hold total capacity of array</short>
51
 
      </element>
52
 
      <element name="TFPPalette.SetCount">
53
 
        <short>Set the number of colors in the palette.</short>
54
 
      </element>
55
 
      <element name="TFPPalette.GetCount">
56
 
        <short>Get the number of used palette entries.</short>
57
 
      </element>
58
 
      <element name="TFPPalette.SetColor">
59
 
        <short>Set the color of the specified palette entry.</short>
60
 
      </element>
61
 
      <element name="TFPPalette.GetColor">
62
 
        <short>Get the color of the specified palette entry.</short>
63
 
      </element>
64
 
      <element name="TFPPalette.CheckIndex">
65
 
        <short>Perform an bounds check of the supplied index.</short>
66
 
        <errors>FPImageException when the index is out of bounds (not 0 </errors>
67
 
      </element>
68
 
      <element name="TFPPalette.EnlargeData">
69
 
        <short>Makes room in the array for more palette entries.</short>
70
 
      </element>
71
 
      <element name="TFPPalette.Create">
72
 
        <short>Creates a palette with ACount color entries.</short>
73
 
        <seealso>
74
 
          <link id="#rtl.System.TObject.Create">TObject.Create</link>
75
 
        </seealso>
76
 
      </element>
77
 
      <element name="TFPPalette.Destroy">
78
 
        <short>Destroys this instance.</short>
79
 
        <seealso>
80
 
          <link id="#rtl.System.TObject.Destroy">TObject.Destroy</link>
81
 
        </seealso>
82
 
      </element>
83
 
      <element name="TFPPalette.Build">
84
 
        <short>Builds the palette from an Image.</short>
85
 
        <descr>All pixels in the image are inspected and their unique color values are added to the palette; duplicates are ignored.</descr>
86
 
      </element>
87
 
      <element name="TFPPalette.Copy">
88
 
        <short>Replace the color table by a copy of APalette.</short>
89
 
        <seealso>
90
 
          <link id="TFPPalette.Merge"/>
91
 
        </seealso>
92
 
      </element>
93
 
      <element name="TFPPalette.Merge">
94
 
        <short>Merge the contents of the given palette into the current palette.</short>
95
 
        <seealso>
96
 
          <link id="TFPPalette.Copy"/>
97
 
        </seealso>
98
 
      </element>
99
 
      <element name="TFPPalette.IndexOf">
100
 
        <short>Returns the palette index of the given color.</short>
101
 
      </element>
102
 
      <element name="TFPPalette.Add">
103
 
        <short>Add the given color to the palette, and return its palette index.</short>
104
 
        <descr>Duplicate colors are ignored, and the index of the already existing color entry is returned.</descr>
105
 
      </element>
106
 
      <element name="TFPPalette.Clear">
107
 
        <short>Empties the palette.</short>
108
 
      </element>
109
 
      <element name="TFPPalette.Color">
110
 
        <short>The current <var>Color</var> from the palette</short>
111
 
      </element>
112
 
      <element name="TFPPalette.Count">
113
 
        <short>Get or set the number of used palette entries.</short>
114
 
      </element>
115
 
      <element name="TFPCustomImage.SetInternalColor">
116
 
        <short>Set RGBA pixel color.</short>
117
 
        <descr>This is a virtual method, that translates the RGBA color into the internal pixel format.
118
 
 
119
 
The default implementation converts the RGBA Value into an palette index, which then is stored in the pixel data.
120
 
 
121
 
Storage of true RGBA or monochrome colors (not using a palette) has to be implemented in derived classes.</descr>
122
 
      </element>
123
 
      <element name="TFPCustomImage.GetInternalColor">
124
 
        <short>Get RGBA pixel color.</short>
125
 
        <descr>This is a virtual method that extracts the internal color representation into a TFPColor, shifting and expanding bits into a TFPColor.
126
 
 
127
 
The default implementation obtains the RGBA color from the palette. When true RGBA or monochrome colors are stored as pixel data, this must be handled in derived classes.</descr>
128
 
      </element>
129
 
      <element name="TFPCustomImage.SetInternalPixel">
130
 
        <short>Set the color of a pixel, in its internal encoding.</short>
131
 
        <descr>This is an abstract method, expecting color information as an palette index by default, or monochrome or RGBA data encoded as an Integer value.
132
 
 
133
 
The color Value must be encoded in the format of the actual image, as defined in its TRawImageDescription.
134
 
 
135
 
Applications should use SetInternalColor instead, which converts the given RGBA value into the proper internal encoding.</descr>
136
 
      </element>
137
 
      <element name="TFPCustomImage.GetInternalPixel">
138
 
        <short>Returns the internal (encoded) color value of the specified pixel.</short>
139
 
        <descr>For RGBA colors returns the internal (encoded) representation of the color.
140
 
For monochrome or palette based images the intensitiy or palette index is returned.</descr>
141
 
      </element>
142
 
      <element name="TFPCustomImage.SetUsePalette">
143
 
        <short>Specifies whether a color palette is to be used.</short>
144
 
        <descr>Creates an empty palette if required.</descr>
145
 
      </element>
146
 
      <element name="TFPCustomImage.Progress">
147
 
        <short>Notifies an OnProgress handler.</short>
148
 
      </element>
149
 
      <element name="TFPCustomImage.create">
150
 
        <short>Initializes for an image of the given size in pixels.</short>
151
 
        <seealso>
152
 
          <link id="#rtl.System.TObject.Create">TObject.Create</link>
153
 
        </seealso>
154
 
      </element>
155
 
      <element name="TFPCustomImage.destroy">
156
 
        <short>Frees the palette.</short>
157
 
        <seealso>
158
 
          <link id="#rtl.Classes.TPersistent.Destroy">TPersistent.Destroy</link>
159
 
        </seealso>
160
 
      </element>
161
 
      <element link="#rtl.Classes.TPersistent.Assign" name="TFPCustomImage.Assign"/>
162
 
      <element name="TFPCustomImage.LoadFromStream">
163
 
        <short>Loads an image from a stream, optionally using an specific reader.</short>
164
 
        <descr>An overloaded version allows to specify an custom image reader.
165
 
Otherwise the registered image readers are tried.</descr>
166
 
      </element>
167
 
      <element name="TFPCustomImage.LoadFromFile">
168
 
        <short>Loads an image from an file, optionally using an specific reader.</short>
169
 
        <seealso>
170
 
          <link id="TFPCustomImage.LoadFromStream"/>
171
 
        </seealso>
172
 
      </element>
173
 
      <element name="TFPCustomImage.SaveToStream">
174
 
        <short>Saves the image in an stream, using the specified writer.</short>
175
 
      </element>
176
 
      <element name="TFPCustomImage.SaveToFile">
177
 
        <short>Saves the image in an file, optionally using the specified writer.</short>
178
 
        <descr>If no writer is specified, a registered writer is selected based on the file extension.</descr>
179
 
      </element>
180
 
      <element name="TFPCustomImage.SetSize">
181
 
        <short>Set the size of the image in pixels.</short>
182
 
        <descr>Override to perform further actions, like allocating memory.
183
 
 
184
 
This method also is called when the Width or Height is changed.</descr>
185
 
      </element>
186
 
      <element name="TFPCustomImage.Height">
187
 
        <short>Height of the image in pixels.</short>
188
 
      </element>
189
 
      <element name="TFPCustomImage.Width">
190
 
        <short>Width of the image in pixels.</short>
191
 
      </element>
192
 
      <element name="TFPCustomImage.Colors">
193
 
        <short>The RGBA color of the specified pixel.</short>
194
 
        <errors>FPImageException</errors>
195
 
        <seealso>
196
 
          <link id="TFPCustomImage.Pixels"/>
197
 
        </seealso>
198
 
      </element>
199
 
      <element name="TFPCustomImage.UsePalette">
200
 
        <short>Usage of a color palette (read/write).</short>
201
 
      </element>
202
 
      <element name="TFPCustomImage.Palette">
203
 
        <short>The color palette in use; Nil if no palette is used.</short>
204
 
      </element>
205
 
      <element name="TFPCustomImage.Pixels">
206
 
        <short>The internal color value of a pixel.</short>
207
 
        <errors>FPImageException</errors>
208
 
        <seealso>
209
 
          <link id="TFPCustomImage.Colors"/>
210
 
        </seealso>
211
 
        <descr>For RGBA colors the value is the internal (encoded) representation of the color.
212
 
For monochrome or palette based images, the value is the intensitiy or palette index.
213
 
 
214
 
This property is useful when working with monochrome or palette based images. Otherwise <link id="TFPCustomImage.Colors"/> should be used to get or set the decoded RGBA color values.</descr>
215
 
      </element>
216
 
      <element name="TFPCustomImage.Extra">
217
 
        <short>Additional information, not related to the internal image representation.</short>
218
 
        <descr>Additional image attributes, organized as a list of strings accessible by name or <link id="TFPCustomImage.ExtraValue">index</link>.
219
 
 
220
 
[Missing is a direct reference to the underlying TStringList, for e.g. retrieving the list index of an entry]</descr>
221
 
      </element>
222
 
      <element name="TFPCustomImage.ExtraValue">
223
 
        <short>Image attribute values (strings) by index.</short>
224
 
        <descr>Attribute strings also can be accessed by <link id="TFPCustomImage.Extra">name</link>.</descr>
225
 
      </element>
226
 
      <element name="TFPCustomImage.ExtraKey">
227
 
        <short>Image attribute names by index.</short>
228
 
      </element>
229
 
      <element name="TFPCustomImage.RemoveExtra">
230
 
        <short>Removes the named image attribute.</short>
231
 
      </element>
232
 
      <element name="TFPCustomImage.ExtraCount">
233
 
        <short>Returns the number of additional image attributes.</short>
234
 
        <seealso>
235
 
          <link id="TFPCustomImage.Extra"/>
236
 
        </seealso>
237
 
      </element>
238
 
      <element name="TFPCustomImage.OnProgress">
239
 
        <short>Handler for Progress events.</short>
240
 
      </element>
241
 
      <element name="TFPCustomImageClass">
242
 
        <short>Class of <link id="TFPCustomImage"/>.</short>
243
 
      </element>
244
 
      <element name="PFPIntegerArray">
245
 
        <short>Pointer to <link id="TFPIntegerArray"/>.</short>
246
 
      </element>
247
 
      <element name="TFPIntegerArray">
248
 
        <short>
249
 
          <var>TFPIntegerArray</var> - definition of integer array for use in images</short>
250
 
      </element>
251
 
      <element link="#fcl.FPimage.TFPCustomImage.SetInternalPixel" name="TFPMemoryImage.SetInternalPixel"/>
252
 
      <element link="#fcl.FPimage.TFPCustomImage.GetInternalPixel" name="TFPMemoryImage.GetInternalPixel"/>
253
 
      <element link="#fcl.FPimage.TFPCustomImage.create" name="TFPMemoryImage.create"/>
254
 
      <element link="#fcl.FPimage.TFPCustomImage.destroy" name="TFPMemoryImage.destroy"/>
255
 
      <element link="#fcl.FPimage.TFPCustomImage.SetSize" name="TFPMemoryImage.SetSize"/>
256
 
      <element name="TFPCustomImageHandler.Progress">
257
 
        <short>
258
 
          <printshort id="TFPImgProgressEvent"/>
259
 
        </short>
260
 
      </element>
261
 
      <element name="TFPCustomImageHandler.TheStream">
262
 
        <short>The stream containing the image.</short>
263
 
      </element>
264
 
      <element name="TFPCustomImageHandler.TheImage">
265
 
        <short>The image being read or written.</short>
266
 
      </element>
267
 
      <element link="#rtl.System.TObject.Create" name="TFPCustomImageHandler.Create"/>
268
 
      <element name="TFPCustomImageHandler.OnProgress">
269
 
        <short>Progress event handler.</short>
270
 
      </element>
271
 
      <element name="TFPCustomImageReader.InternalRead">
272
 
        <short>
273
 
          <var>InternalRead</var> - read specified image from nominated stream</short>
274
 
      </element>
275
 
      <element name="TFPCustomImageReader.InternalCheck">
276
 
        <short>
277
 
          <var>InternalCheck</var> - performs check on validity of stream, returns True if OK</short>
278
 
      </element>
279
 
      <element link="#rtl.System.TObject.Create" name="TFPCustomImageReader.Create"/>
280
 
      <element name="TFPCustomImageReader.ImageRead">
281
 
        <short>
282
 
          <var>ImageRead</var> read specified image from nominated stream; returns the image</short>
283
 
      </element>
284
 
      <element name="TFPCustomImageReader.CheckContents">
285
 
        <short>
286
 
          <var>CheckContents</var> - Gives True if contents are readable</short>
287
 
      </element>
288
 
      <element name="TFPCustomImageReader.DefaultImageClass">
289
 
        <short>
290
 
          <var>DefaultImageClass</var> - Image Class to create when no img is given for reading</short>
291
 
      </element>
292
 
      <element name="TFPCustomImageReaderClass">
293
 
        <short>
294
 
          <var>TFPCustomImageReaderClass</var> - class of 
295
 
          
296
 
          <var>TFPCustomImageReader</var>
297
 
        </short>
298
 
      </element>
299
 
      <element name="TFPCustomImageWriter.InternalWrite">
300
 
        <short>
301
 
          <var>InternalWrite</var> - write specified image to nominated stream</short>
302
 
      </element>
303
 
      <element name="TFPCustomImageWriter.ImageWrite">
304
 
        <short>
305
 
          <var>ImageWrite</var> - writes given image to stream</short>
306
 
      </element>
307
 
      <element name="TFPCustomImageWriterClass">
308
 
        <short>
309
 
          <var>TFPCustomImageWriterClass</var> - class of 
310
 
          
311
 
          <var>TFPCustomImageWriter</var>
312
 
        </short>
313
 
      </element>
314
 
      <element name="TIHData">
315
 
        <short>
316
 
          <var>TIHData</var> - data for Image Handler</short>
317
 
      </element>
318
 
      <element name="TImageHandlersManager">
319
 
        <short>
320
 
          <var>TImageHandlersManager</var> - class for managing image handlers</short>
321
 
      </element>
322
 
      <element name="TImageHandlersManager.Create">
323
 
        <short>
324
 
          <var>Create</var> - constructor fro 
325
 
          
326
 
          <var>TImageHandlersManager</var>: calls inherited 
327
 
          
328
 
          <var>Create</var> then constructs list of handlers</short>
329
 
        <seealso>
330
 
          <link id="#rtl.System.TObject.Create">TObject.Create</link>
331
 
        </seealso>
332
 
      </element>
333
 
      <element name="TImageHandlersManager.Destroy">
334
 
        <short>
335
 
          <var>Destroy</var> - destructor for 
336
 
          
337
 
          <var>TImageHandlersManager</var>: frees the list of handlers then calls inherited 
338
 
          
339
 
          <var>Destroy</var>
340
 
        </short>
341
 
        <seealso>
342
 
          <link id="#rtl.System.TObject.Destroy">TObject.Destroy</link>
343
 
        </seealso>
344
 
      </element>
345
 
      <element name="TImageHandlersManager.RegisterImageHandlers">
346
 
        <short>
347
 
          <var>RegisterImageHandlers</var> - method for registering Image Handlers</short>
348
 
      </element>
349
 
      <element name="TImageHandlersManager.RegisterImageReader">
350
 
        <short>
351
 
          <var>RegisterImageReader</var> - method to register an Image Reader</short>
352
 
      </element>
353
 
      <element name="TImageHandlersManager.RegisterImageWriter">
354
 
        <short>
355
 
          <var>RegisterImageWriter</var> - method to register an Image Writer</short>
356
 
      </element>
357
 
      <element name="TImageHandlersManager.Count">
358
 
        <short>
359
 
          <var>Count</var> - the number of Image Handlers</short>
360
 
      </element>
361
 
      <element name="TImageHandlersManager.ImageReader">
362
 
        <short>The <var>ImageReader</var> being used</short>
363
 
      </element>
364
 
      <element name="TImageHandlersManager.ImageWriter">
365
 
        <short>The <var>ImageWriter</var> being used</short>
366
 
      </element>
367
 
      <element name="TImageHandlersManager.Extentions">
368
 
        <short>The filename <var>Extentions</var> for the image handlers</short>
369
 
      </element>
370
 
      <element name="TImageHandlersManager.DefaultExtention">
371
 
        <short>The <var>DefaultExtention</var> to be used if no extention is supplied</short>
372
 
      </element>
373
 
      <element name="TImageHandlersManager.TypeNames">
374
 
        <short>A list of <var>TypeNames</var> to be used with the handler files</short>
375
 
      </element>
376
 
      <element name="TFPColor">
377
 
        <short>RGBA color information.</short>
378
 
        <descr>This compatible RGBA color representation allows for easy access and manipulation of colors. Concrete images instead will use other (compressed) encodings, which are not suited for direct manipulation.
379
 
 
380
 
The TFPColor record contains the Red, Green, Blue and Alpha channel values as left adjusted 16 bit words, with increasing intensity from 0 to $FFFF. Alpha=0 indicates transparent pixels.The internal representation uses the high order bits of these values, as specified by the color Depth of the image description.</descr>
381
 
        <seealso>
382
 
          <link id="TFPColor"/>
383
 
        </seealso>
384
 
      </element>
385
 
      <element name="PFPColor">
386
 
        <short>Pointer to <link id="TFPColor"/>.</short>
387
 
      </element>
388
 
      <element name="TFPCustomImage.SetHeight">
389
 
        <short>Set the image Height in pixels.</short>
390
 
        <descr>Calls SetSize, to allow for adjustments of the overall (data) size.</descr>
391
 
      </element>
392
 
      <element name="TFPCustomImage.SetWidth">
393
 
        <short>Set the image Width in pixels.</short>
394
 
        <descr>Calls SetSize, to allow for adjustments of the overall (data) size.</descr>
395
 
      </element>
396
 
      <element name="TFPImgProgressStage">
397
 
        <short>State of processing (psStarting, psRunning, psEnding).</short>
398
 
        <seealso>TFPImgProgressStage</seealso>
399
 
      </element>
400
 
      <element name="TProgressStage">
401
 
        <short>State of processing (psStarting, psRunning, psEnding).</short>
402
 
      </element>
403
 
      <element name="TFPCustomImage.GetPixel">
404
 
        <short>Returns the internal (encoded) color value of the specified pixel.</short>
405
 
        <errors>FPImageException</errors>
406
 
      </element>
407
 
      <element name="TFPCustomImage.CheckIndex">
408
 
        <short>Bounds check of pixel coordinates.</short>
409
 
        <errors>FPImageException</errors>
410
 
      </element>
411
 
      <element name="TFPImgProgressEvent">
412
 
        <short>Image processing progress event.</short>
413
 
        <seealso>
414
 
          <link id="TFPCustomImage.OnProgress"/>
415
 
        </seealso>
416
 
        <descr>
417
 
          <p>Sender: the image object</p>
418
 
          <p>Stage: Starting, Running or Ending</p>
419
 
          <p>PercentDone: how much has been accomplished</p>
420
 
          <p>RedrawNow: whether to refresh the Image</p>
421
 
          <p>R: the rectangle in which drawing progress is being monitored</p>
422
 
          <p>Msg: a message to show in the progress display</p>
423
 
          <p>Continue: set Continue to False to abort image processing</p>
424
 
        </descr>
425
 
      </element>
426
 
    </module>
427
 
  </package>
428
 
</fpdoc-descriptions>