blob: 603564a29767e3cca0c49888ec4662659e660304 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<fpdoc-descriptions>
<package name="CoreLib">
<!--
====================================================================
gfx_imgfmt_bmp
====================================================================
-->
<module name="gfx_imgfmt_bmp">
<short>BMP image reader implementation</short>
<descr>This unit implements a BMP (Bitmap) image reader.
</descr>
<!-- unresolved type reference Visibility: default -->
<element name="Classes">
<short></short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<!-- unresolved type reference Visibility: default -->
<element name="SysUtils">
<short></short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<!-- unresolved type reference Visibility: default -->
<element name="fpgfx">
<short></short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<!-- unresolved type reference Visibility: default -->
<element name="gfxbase">
<short></short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<!-- unresolved type reference Visibility: default -->
<element name="fpcanvas">
<short></short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<!-- procedure Visibility: default -->
<element name="ReadImage_BMP">
<short>Reads the internal structure of the BMP file.</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<!-- argument Visibility: default -->
<element name="ReadImage_BMP.img">
<short></short>
</element>
<!-- argument Visibility: default -->
<element name="ReadImage_BMP.bmp">
<short></short>
</element>
<!-- argument Visibility: default -->
<element name="ReadImage_BMP.bmpsize">
<short></short>
</element>
<!-- function Visibility: default -->
<element name="LoadImage_BMP">
<short>Load's the image from the file specified.</short>
<descr>This functions loads the BMP image from the file specified and returns
a TfpgImage object representing the BMP file.
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<!-- function result Visibility: default -->
<element name="LoadImage_BMP.Result">
<short>The TfpgImage represeting the BMP file.</short>
</element>
<!-- argument Visibility: default -->
<element name="LoadImage_BMP.AFileName">
<short>The file name on disk containing the BMP data.</short>
</element>
<!-- function Visibility: default -->
<element name="CreateImage_BMP">
<short>Creates a TfpgImage representing a BMP file from data in memory.</short>
<descr>Creates a TfpgImage representing a BMP file from data in memory.
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<!-- function result Visibility: default -->
<element name="CreateImage_BMP.Result">
<short></short>
</element>
<!-- argument Visibility: default -->
<element name="CreateImage_BMP.bmp">
<short>Pointer to BMP data in memory.</short>
</element>
<!-- argument Visibility: default -->
<element name="CreateImage_BMP.bmpsize">
<short>Size of the data in memory to read.</short>
</element>
</module> <!-- gfx_imgfmt_bmp -->
</package>
</fpdoc-descriptions>
|