-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathzint_render_canvas.pas
243 lines (203 loc) · 7.14 KB
/
zint_render_canvas.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
unit zint_render_canvas;
{
Based on Zint (done by Robin Stuart and the Zint team)
http://github.com/zint/zint
Translation by TheUnknownOnes
http://theunknownones.net
License: Apache License 2.0
}
{$IFDEF FPC}
{$mode objfpc}{$H+}
{$ENDIF}
interface
uses
Classes, zint, Graphics;
type
{ TZintRenderTargetCanvas }
TZintRenderTargetCanvas = class(TZintCustomRenderTarget)
protected
FCanvas : TCanvas;
FFGColor: TColor;
FBGColor: TColor;
FFont: TFont;
procedure OnFontChange(Sender : TObject);
procedure SetCanvas(const Value: TCanvas); virtual;
procedure SetFont(const Value: TFont); virtual;
procedure ClearBackground(const AParams : TZintClearBackgroundParams); override;
procedure DrawRect(const AParams : TZintDrawRectParams); override;
procedure DrawHexagon(const AParams : TZintDrawHexagonParams); override;
procedure DrawRing(const AParams : TZintDrawRingParams); override;
procedure DrawRingFull(const AParams : TZintDrawRingParams); override;
procedure DrawText(const AParams: TZintDrawTextParams); override;
function CalcTextHeight(const AParams : TZintCalcTextHeightParams) : Single; override;
function CalcTextWidth(const AParams : TZintCalcTextWidthParams) : Single; override;
procedure Inflate(const ANewWidth, ANewHeight : Single); override;
procedure RenderStart; override;
procedure SetColor(const Index: Integer; const Value: TColor); virtual;
public
constructor Create(AOwner : TPersistent); override;
destructor Destroy; override;
property Canvas : TCanvas read FCanvas write SetCanvas;
published
property ForegroundColor : TColor index 0 read FFGColor write SetColor default clBlack;
property BackgroundColor : TColor index 1 read FBGColor write SetColor default clWhite;
property Font: TFont read FFont write SetFont;
end;
implementation
uses
Types;
{ TZintRenderTargetCanvas }
procedure TZintRenderTargetCanvas.SetCanvas(const Value: TCanvas);
begin
if Assigned(Value) then
begin
FXDesired := Value.ClipRect.Left;
FYDesired := Value.ClipRect.Top;
FWidthDesired:=Value.ClipRect.Right-Value.ClipRect.Left;
FHeightDesired:=Value.ClipRect.Right-Value.ClipRect.Left;
end;
FCanvas := Value;
end;
procedure TZintRenderTargetCanvas.SetColor(const Index: Integer;
const Value: TColor);
begin
case Index of
0 : FFGColor := Value;
1 : FBGColor := Value;
end;
Changed;
end;
procedure TZintRenderTargetCanvas.SetFont(const Value: TFont);
begin
FFont.Assign(Value);
Changed;
end;
procedure TZintRenderTargetCanvas.ClearBackground(
const AParams: TZintClearBackgroundParams);
begin
FCanvas.Brush.Color:=FBGColor;
FCanvas.Brush.Style:=bsSolid;
FCanvas.FillRect(Rect(Round(AParams.X),
Round(AParams.Y),
Round(AParams.X + AParams.Width),
Round(AParams.Y + AParams.Height)));
end;
procedure TZintRenderTargetCanvas.DrawRect(const AParams: TZintDrawRectParams);
begin
FCanvas.Brush.Color:=FFGColor;
FCanvas.Brush.Style:=bsSolid;
FCanvas.FillRect(Rect(Round(AParams.X),
Round(AParams.Y),
Round(AParams.X + AParams.Width),
Round(AParams.Y + AParams.Height)));
end;
procedure TZintRenderTargetCanvas.DrawHexagon(const AParams: TZintDrawHexagonParams);
var
hexagon_width, hexagon_height : Single;
Points : array[0..5] of TPoint;
begin
FCanvas.Pen.Style:=psClear;
FCanvas.Brush.Style:=bsSolid;
FCanvas.Brush.Color:=ffgcolor;
hexagon_width:=AParams.Width*FHexagonScale;
hexagon_height:=AParams.Height*FHexagonScale;
Points[0] := Point(Round(AParams.X-(hexagon_width/2)), Round(AParams.Y - hexagon_height/4));
Points[1] := Point(Round(AParams.X-(hexagon_width/2)), Round(AParams.Y + hexagon_height/4));
Points[2] := Point(Round(AParams.X -(hexagon_width/2) + sqrt(3) * hexagon_height / 4), Round(AParams.Y + hexagon_height / 2));
Points[3] := Point(Round(AParams.X -(hexagon_width/2) + sqrt(3) * hexagon_height / 2), Round(AParams.Y + hexagon_height / 4));
Points[4] := Point(Round(AParams.X -(hexagon_width/2) + sqrt(3) * hexagon_height / 2), Round(AParams.Y - hexagon_height / 4));
Points[5] := Point(Round(AParams.X -(hexagon_width/2) + sqrt(3) * hexagon_height / 4), Round(AParams.Y - hexagon_height / 2));
{$IFDEF FPC}
FCanvas.Polygon(@Points[0], Length(Points), true);
{$ELSE}
FCanvas.Polygon(Points);
{$ENDIF}
end;
procedure TZintRenderTargetCanvas.DrawRing(const AParams: TZintDrawRingParams);
var
LineWidth, HalfLineWidth : Integer;
begin
LineWidth := Round(AParams.OuterRadius - AParams.InnerRadius);
HalfLineWidth := Round((AParams.OuterRadius - AParams.InnerRadius) / 2);
FCanvas.Brush.Style := bsClear;
FCanvas.Pen.Width := LineWidth;
FCanvas.Pen.Color := FFGColor;
FCanvas.Pen.Style := psSolid;
FCanvas.Ellipse(Round(AParams.x - AParams.OuterRadius + HalfLineWidth),
Round(AParams.y - AParams.OuterRadius + HalfLineWidth),
Round(AParams.x + AParams.OuterRadius - HalfLineWidth),
Round(AParams.y + AParams.OuterRadius - HalfLineWidth));
end;
procedure TZintRenderTargetCanvas.DrawRingFull(const AParams: TZintDrawRingParams);
var
HalfRadius: Double;
begin
FCanvas.Brush.Style := bsSolid;
FCanvas.Brush.Color := FFGColor;
FCanvas.Pen.Width := 0;
FCanvas.Pen.Color := FFGColor;
FCanvas.Pen.Style := psSolid;
HalfRadius := AParams.OuterRadius / 2;
FCanvas.Ellipse(Round(AParams.x - HalfRadius),
Round(AParams.y - HalfRadius),
Round(AParams.x + HalfRadius),
Round(AParams.y + HalfRadius));
end;
procedure TZintRenderTargetCanvas.DrawText(const AParams: TZintDrawTextParams);
var
r : TRect;
txt : String;
{$IFDEF FPC}
ts : TTextStyle;
{$ENDIF}
begin
r.Left := Round(AParams.X);
r.Top := Round(AParams.Y);
r.Right := Round(AParams.X + AParams.Width);
r.Bottom := Round(AParams.Y + AParams.Height);
FCanvas.Brush.Style := bsClear;
txt:=AParams.Text;
{$IFDEF FPC}
ts.Alignment := taCenter;
ts.Layout := tlCenter;
ts.SystemFont := False;
FCanvas.TextRect(r, r.Left, r.Top, txt, ts);
{$ELSE}
FCanvas.TextRect(r, txt, [tfCenter, tfVerticalCenter]);
{$ENDIF}
end;
procedure TZintRenderTargetCanvas.Inflate(const ANewWidth, ANewHeight: Single);
begin
//a canvas can't inflate, but we have to prevent the abstract-error
end;
procedure TZintRenderTargetCanvas.OnFontChange(Sender: TObject);
begin
Changed;
end;
function TZintRenderTargetCanvas.CalcTextHeight(const AParams : TZintCalcTextHeightParams): Single;
begin
Result := FCanvas.TextHeight(AParams.Text);
end;
function TZintRenderTargetCanvas.CalcTextWidth(const AParams : TZintCalcTextWidthParams): Single;
begin
Result := FCanvas.TextWidth(AParams.Text);
end;
procedure TZintRenderTargetCanvas.RenderStart;
begin
FCanvas.Font.Assign(Font);
end;
constructor TZintRenderTargetCanvas.Create(AOwner : TPersistent);
begin
FFont:=TFont.Create;
FFont.Color:=clBlack;
FFont.OnChange := {$IFDEF FPC}@{$ENDIF}OnFontChange;
FFGColor:=clBlack;
FBGColor:=clWhite;
inherited;
end;
destructor TZintRenderTargetCanvas.Destroy;
begin
FFont.Free;
inherited;
end;
end.