forked from bgrabitmap/BGRABitmapDelphi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bgrabitmap.pas
187 lines (157 loc) · 5.25 KB
/
bgrabitmap.pas
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
{ ***************************************************************************
* *
* This file is part of BGRABitmap library which is distributed under the *
* modified LGPL. *
* *
* See the file COPYING.modifiedLGPL.txt, included in this distribution, *
* for details about the copyright. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
************************* BGRABitmap library ******************************
- Drawing routines with transparency and antialiasing with Lazarus.
Offers also various transforms.
- These routines allow to manipulate 32bit images in BGRA format or RGBA
format (depending on the platform).
- This code is under modified LGPL (see COPYING.modifiedLGPL.txt).
This means that you can link this library inside your programs for any purpose.
Only the included part of the code must remain LGPL.
- If you make some improvements to this library, please notify here:
http://www.lazarus.freepascal.org/index.php/topic,12037.0.html
********************* Contact : Circular at operamail.com *******************
******************************* CONTRIBUTOR(S) ******************************
- Edivando S. Santos Brasil | [email protected]
(Compatibility with FPC ($Mode objfpc/delphi) and delphi VCL 11/2018)
***************************** END CONTRIBUTOR(S) *****************************}
Unit BGRABitmap;
{$i bgrabitmap.inc}{$H+}
interface
{ Compiler directives are used to include the best version according
to the platform }
uses
Classes, SysUtils, BGRATypes, {$IFNDEF FPC}Types, GraphType,{$ENDIF}
{$IFDEF BGRABITMAP_USE_FPGUI}
BGRAfpGUIBitmap,
{$ELSE}
{$IFDEF FPC}
{$IFDEF BGRABITMAP_USE_LCL}
{$IFDEF LCLwin32}
BGRAWinBitmap,
{$ELSE}
{$IFDEF LCLgtk}
BGRAGtkBitmap,
{$ELSE}
{$IFDEF LCLgtk2}
BGRAGtkBitmap,
{$ELSE}
{$IFDEF LCLqt}
BGRAQtBitmap,
{$ELSE}
{$IFDEF DARWIN}
BGRAMacBitmap,
{$ELSE}
BGRALCLBitmap,
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ELSE}
BGRANoGuiBitmap,
{$ENDIF}
{$ELSE}
BGRAWinBitmap,
{$ENDIF}
{$ENDIF}
BGRAGraphics;
type
{$IFDEF BGRABITMAP_USE_FPGUI}
TBGRABitmap = class(TBGRAfpGUIBitmap);
{$ELSE}
{$IFDEF BGRABITMAP_USE_LCL}
{$IFDEF FPC}
{$IFDEF LCLwin32}
TBGRABitmap = class(TBGRAWinBitmap);
{$ELSE}
{$IFDEF LCLgtk}
TBGRABitmap = class(TBGRAGtkBitmap);
{$ELSE}
{$IFDEF LCLgtk2}
TBGRABitmap = class(TBGRAGtkBitmap);
{$ELSE}
{$IFDEF LCLqt}
TBGRABitmap = class(TBGRAQtBitmap);
{$ELSE}
{$IFDEF DARWIN}
TBGRABitmap = class(TBGRAMacBitmap);
{$ELSE}
TBGRABitmap = class(TBGRALCLBitmap);
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ELSE}
TBGRABitmap = class(TBGRAWinBitmap);
{$ENDIF}
{$ELSE}
TBGRABitmap = class(TBGRANoGUIBitmap);
{$ENDIF}
{$ENDIF}
// draw a bitmap from pure data
procedure BGRABitmapDraw(ACanvas: TCanvas; Rect: TRect; AData: Pointer;
VerticalFlip: boolean; AWidth, AHeight: integer; Opaque: boolean);
{ Replace the content of the variable Destination with the variable
Temp and frees previous object contained in Destination.
This function is useful as a shortcut for :
var
temp: TBGRABitmap;
begin
...
temp := someBmp.Filter... as TBGRABitmap;
someBmp.Free;
someBmp := temp;
end;
which becomes :
begin
...
BGRAReplace(someBmp, someBmp.Filter... );
end;
}
procedure BGRAReplace(var Destination: TBGRABitmap; Temp: TObject);
implementation
uses BGRABitmapTypes, BGRAReadBMP, BGRAReadBmpMioMap, BGRAReadGif,
{$IFDEF FPC}BGRAReadIco, BGRAReadLzp, BGRAWriteLzp, BGRAReadPCX, BGRAReadPSD, BGRAReadTGA,{$ENDIF}
BGRAReadJpeg, BGRAReadPng, BGRAReadXPM;
var
tempBmp: TBGRABitmap;
procedure BGRABitmapDraw(ACanvas: TCanvas; Rect: TRect; AData: Pointer;
VerticalFlip: boolean; AWidth, AHeight: integer; Opaque: boolean);
var
LineOrder: TRawImageLineOrder;
begin
if tempBmp = nil then
tempBmp := TBGRABitmap.Create;
if VerticalFlip then
LineOrder := riloBottomToTop
else
LineOrder := riloTopToBottom;
if Opaque then
tempBmp.DataDrawOpaque(ACanvas, Rect, AData, LineOrder, AWidth, AHeight)
else
tempBmp.DataDrawTransparent(ACanvas, Rect, AData, LineOrder, AWidth, AHeight);
end;
procedure BGRAReplace(var Destination: TBGRABitmap; Temp: TObject);
begin
Destination.Free;
Destination := Temp as TBGRABitmap;
end;
initialization
//this variable is assigned to access appropriate functions
//depending on the platform
BGRABitmapFactory := TBGRABitmap;
finalization
tempBmp.Free;
end.