Welcome to mirror list, hosted at ThFree Co, Russian Federation.

demo1.pas « delphi « utils - github.com/mm2/Little-CMS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b69c98e04302b9f8e7a9a0962c1675e42c369dd (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
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
unit demo1;

interface

uses
  Windows, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  ExtCtrls, StdCtrls, ExtDlgs, lcms2dll, ComCtrls;

type
  TForm1 = class(TForm)

    Image1: TImage;
    Image2: TImage;
    Panel1: TPanel;
    Splitter1: TSplitter;
    Button2: TButton;
    ComboBoxInput: TComboBox;
    ComboBoxOutput: TComboBox;
    Label1: TLabel;
    Label2: TLabel;
    WBCompensation: TCheckBox;
    NoTransform: TCheckBox;
    RadioGroup1: TRadioGroup;
    OpenPictureDialog1: TOpenPictureDialog;
    Button1: TButton;
    ProgressBar1: TProgressBar;
    ComboBoxIntent: TComboBox;
    Label3: TLabel;
    Button3: TButton;
    Button4: TButton;
    OpenDialog1: TOpenDialog;
    Label4: TLabel;
    ScrollBar1: TScrollBar;

    procedure Button2Click(Sender: TObject);
    procedure Button1Click(Sender: TObject);
    procedure Button3Click(Sender: TObject);
    procedure Button4Click(Sender: TObject);
    procedure ComboBoxIntentChange(Sender: TObject);
    procedure ScrollBar1Change(Sender: TObject);
  private
    { Private declarations }
    function ComputeFlags: DWORD;

  public
    constructor Create(Owner: TComponent); Override;
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.DFM}

CONST
  IS_INPUT = $1;
  IS_DISPLAY = $2;
  IS_COLORSPACE = $4;
  IS_OUTPUT = $8;
  IS_ABSTRACT = $10;

VAR
   IntentCodes: array [0 .. 20] of cmsUInt32Number;

FUNCTION InSignatures(Signature: cmsProfileClassSignature;  dwFlags: DWORD): Boolean;
BEGIN

  if (((dwFlags AND IS_DISPLAY) <> 0) AND (Signature = cmsSigDisplayClass)) then
    InSignatures := TRUE
  else if (((dwFlags AND IS_OUTPUT) <> 0) AND (Signature = cmsSigOutputClass))
    then
    InSignatures := TRUE
  else if (((dwFlags AND IS_INPUT) <> 0) AND (Signature = cmsSigInputClass))
    then
    InSignatures := TRUE
  else if (((dwFlags AND IS_COLORSPACE) <> 0) AND
      (Signature = cmsSigColorSpaceClass)) then
    InSignatures := TRUE
  else if (((dwFlags AND IS_ABSTRACT) <> 0) AND
      (Signature = cmsSigAbstractClass)) then
    InSignatures := TRUE
  else
    InSignatures := FALSE
END;

PROCEDURE FillCombo(var Combo: TComboBox; Signatures: DWORD);
var
  Files, Descriptions: TStringList;
  Found: Integer;
  SearchRec: TSearchRec;
  Path, Profile: String;
  Dir: ARRAY [0 .. 1024] OF Char;
  hProfile: cmsHPROFILE;
  Descrip: array [0 .. 256] of Char;
begin
  Files := TStringList.Create;
  Descriptions := TStringList.Create;
  GetSystemDirectory(Dir, 1023);
  Path := String(Dir) + '\SPOOL\DRIVERS\COLOR\';
  Found := FindFirst(Path + '*.ic?', faAnyFile, SearchRec);
  while Found = 0 do
  begin
    Profile := Path + SearchRec.Name;
    hProfile := cmsOpenProfileFromFile(PAnsiChar(AnsiString(Profile)), 'r');
    if (hProfile <> NIL) THEN
    begin

      if ((cmsGetColorSpace(hProfile) = cmsSigRgbData) AND InSignatures
          (cmsGetDeviceClass(hProfile), Signatures)) then
      begin
        cmsGetProfileInfo(hProfile, cmsInfoDescription, 'EN', 'us', Descrip,
          256);
        Descriptions.Add(Descrip);
        Files.Add(Profile);
      end;
      cmsCloseProfile(hProfile);
    end;

    Found := FindNext(SearchRec);

  end;
  FindClose(SearchRec);
  Combo.Items := Descriptions;
  Combo.Tag := Integer(Files);
end;

// A rather simple Logger... note the "cdecl" convention
PROCEDURE ErrorLogger(ContextID: cmsContext; ErrorCode: cmsUInt32Number;
  Text: PAnsiChar); Cdecl;
begin
  MessageBox(0, PWideChar(WideString(Text)), 'Something is going wrong...',
    MB_OK OR MB_ICONWARNING or MB_TASKMODAL);
end;

constructor TForm1.Create(Owner: TComponent);
var
  IntentNames: array [0 .. 20] of PAnsiChar;
  i, n: Integer;
begin
  inherited Create(Owner);

   // Set the logger
  cmsSetLogErrorHandler(ErrorLogger);

  ScrollBar1.Min := 0;
  ScrollBar1.Max := 100;

  FillCombo(ComboBoxInput, IS_INPUT OR IS_COLORSPACE OR IS_DISPLAY);
  FillCombo(ComboBoxOutput, $FFFF  );


  // Get the supported intents
  n := cmsGetSupportedIntents(20, @IntentCodes, @IntentNames);


  ComboBoxIntent.Items.BeginUpdate;
  ComboBoxIntent.Items.Clear;
  for i:= 0 TO n - 1 DO
    ComboBoxIntent.Items.Add(String(IntentNames[i]));

  ComboBoxIntent.ItemIndex := 0;
  ComboBoxIntent.Items.EndUpdate;
end;



procedure TForm1.ScrollBar1Change(Sender: TObject);
var d: Integer;
    s: String;
begin
     d := ScrollBar1.Position;
     Str(d, s);
     Label4.Caption := 'Adaptation state '+s + '% (Abs. col only)';
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
  if OpenPictureDialog1.Execute then
  begin
    Image1.Picture.LoadFromFile(OpenPictureDialog1.FileName);
    Image1.Picture.Bitmap.PixelFormat := pf24bit;

    Image2.Picture.LoadFromFile(OpenPictureDialog1.FileName);
    Image2.Picture.Bitmap.PixelFormat := pf24bit;

  end
end;

function SelectedFile(var Combo: TComboBox): string;
var
  List: TStringList;
  n: Integer;
begin

  List := TStringList(Combo.Tag);
  n := Combo.ItemIndex;
  if (n >= 0) then
    SelectedFile := List.Strings[n]
  else
    SelectedFile := Combo.Text;
end;

procedure TForm1.ComboBoxIntentChange(Sender: TObject);
begin
   ScrollBar1.Enabled := (ComboBoxIntent.itemIndex = 3);
end;

function TForm1.ComputeFlags: DWORD;
var
  dwFlags: DWORD;
begin
  dwFlags := 0;
  if (WBCompensation.Checked) then
  begin
    dwFlags := dwFlags OR cmsFLAGS_BLACKPOINTCOMPENSATION
  end;

  if (NoTransform.Checked) then
  begin
    dwFlags := dwFlags OR cmsFLAGS_NULLTRANSFORM
  end;

  case RadioGroup1.ItemIndex of
    0:
      dwFlags := dwFlags OR cmsFLAGS_NOOPTIMIZE;
    1:
      dwFlags := dwFlags OR cmsFLAGS_HIGHRESPRECALC;
    3:
      dwFlags := dwFlags OR cmsFLAGS_LOWRESPRECALC;
  end;

  ComputeFlags := dwFlags
end;

procedure TForm1.Button1Click(Sender: TObject);
var
  Source, Dest: String;
  hSrc, hDest: cmsHPROFILE;
  xform: cmsHTRANSFORM;
  i, PicW, PicH: Integer;
  Intent: Integer;
  dwFlags: DWORD;
begin

  Source := SelectedFile(ComboBoxInput);
  Dest := SelectedFile(ComboBoxOutput);

  dwFlags := ComputeFlags;

  Intent := IntentCodes[ComboBoxIntent.ItemIndex];

  cmsSetAdaptationState(  ScrollBar1.Position / 100.0 );

  if (Source <> '') AND (Dest <> '') then
  begin
    hSrc := cmsOpenProfileFromFile(PAnsiChar(AnsiString(Source)), 'r');
    hDest := cmsOpenProfileFromFile(PAnsiChar(AnsiString(Dest)), 'r');

    if (hSrc <> Nil) and (hDest <> Nil) then
    begin
      xform := cmsCreateTransform(hSrc, TYPE_BGR_8, hDest, TYPE_BGR_8, Intent,
        dwFlags);
    end
    else
    begin
      xform := nil;
    end;

    if hSrc <> nil then
    begin
      cmsCloseProfile(hSrc);
    end;

    if hDest <> Nil then
    begin
      cmsCloseProfile(hDest);
    end;

    if (xform <> nil) then
    begin

      PicW := Image2.Picture.width;
      PicH := Image2.Picture.height;
      ProgressBar1.Min := 0;
      ProgressBar1.Max := PicH;
      ProgressBar1.Step := 1;

      for i := 0 TO (PicH - 1) do
      begin
        if ((i MOD 100) = 0) then
          ProgressBar1.Position := i;

        cmsDoTransform(xform, Image1.Picture.Bitmap.Scanline[i],
          Image2.Picture.Bitmap.Scanline[i], PicW);

      end;
      ProgressBar1.Position := PicH;

      cmsDeleteTransform(xform);

    end;

    Image2.Repaint;
    ProgressBar1.Position := 0;
  end
end;

procedure TForm1.Button3Click(Sender: TObject);
begin
  if OpenDialog1.Execute then
    ComboBoxInput.Text := OpenDialog1.FileName;
end;

procedure TForm1.Button4Click(Sender: TObject);
begin
  if OpenDialog1.Execute then
    ComboBoxOutput.Text := OpenDialog1.FileName;
end;

end.