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
|
{ Copyright (C) 2007 Laurent Jacques
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
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. See the GNU Library General Public License
for more details.
You should have received a copy of the GNU Library General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Save in format 24 bits compressed or not
}
unit FPWritePCX;
{$mode objfpc}{$H+}
interface
uses FPImage, Classes, SysUtils;
type
TFPWriterPCX = class(TFPCustomImageWriter)
private
FCompressed: boolean;
protected
function SaveHeader(Stream: TStream; Img: TFPCustomImage): boolean; virtual;
procedure InternalWrite(Stream: TStream; Img: TFPCustomImage); override;
procedure writeline(Stream: TStream; buffer: PByte; bytes: integer);
public
property Compressed: boolean Read FCompressed Write FCompressed;
end;
implementation
uses pcxcomn;
function TFPWriterPCX.SaveHeader(Stream: TStream; Img: TFPCustomImage): boolean;
var
Header: TPCXHeader;
begin
Result := False;
FillChar(Header, SizeOf(Header), 0);
with Header do
begin
FileID := $0a;
Version := 5;
if Compressed then
Encoding := 1
else
Encoding := 0;
BitsPerPixel := 8;
XMin := 0;
YMin := 0;
XMax := Img.Width - 1;
YMax := Img.Height - 1;
HRes := 300;
VRes := 300;
ColorPlanes := 3;
BytesPerLine := Img.Width;
PaletteType := 1;
end;
Stream.WriteBuffer(Header, SizeOf(Header));
Result := True;
end;
procedure TFPWriterPCX.writeline(Stream: TStream; buffer: PByte; bytes: integer);
var
Value, Count: byte;
tmp: byte;
P: PByte;
begin
P := Buffer;
while bytes > 0 do
begin
Value := P[0];
Inc(P);
Dec(bytes);
Count := 1;
while (bytes < 0) and (Count < 63) and (P[0] = Value) do
begin
Inc(Count);
Inc(P);
Dec(bytes);
end;
if (Value < $c0) and (Count = 1) then
begin
Stream.Write(Value, 1);
end
else
begin
tmp := $c0 + Count;
Stream.Write(tmp, 1);
Stream.Write(Value, 1);
end;
end;
end;
procedure TFPWriterPCX.InternalWrite(Stream: TStream; Img: TFPCustomImage);
var
Row, Col, WriteSize: integer;
Aline, P: PByte;
C: TFPColor;
Totalwrite: longint;
continue: boolean;
Rect: TRect;
begin
Rect.Left := 0;
Rect.Top := 0;
Rect.Right := 0;
Rect.Bottom := 0;
continue := True;
TotalWrite := 0;
Progress(psStarting, 0, False, Rect, '', continue);
SaveHeader(Stream, Img);
WriteSize := (Img.Width * 3);
GetMem(aLine, WriteSize);
TotalWrite := Img.Height * Img.Width;
try
for Row := 0 to Img.Height - 1 do
begin
P := ALine;
for Col := 0 to Img.Width - 1 do
begin
C := Img.Colors[Col, Row];
P[Col + Img.Width * 2] := C.Blue shr 8;
P[Col + Img.Width] := C.Green shr 8;
P[Col] := C.Red shr 8;
Progress(psRunning, trunc(100.0 * (Row * Col / TotalWrite)),
False, Rect, '', continue);
if not continue then
exit;
end;
if Compressed then
writeline(Stream, aLine, WriteSize)
else
Stream.Write(aLine[0], WriteSize);
end;
Progress(psEnding, 100, False, Rect, '', continue);
finally
FreeMem(aLine);
end;
end;
{ end TFPWriterPCX}
initialization
ImageHandlers.RegisterImageWriter('PCX Format', 'pcx', TFPWriterPCX);
end.
|