]> git.ipfire.org Git - thirdparty/cups.git/blob - ppdc/ppdc-profile.cxx
976caefc2fe9ab09b613d9ea11d5c96f4173c2e9
[thirdparty/cups.git] / ppdc / ppdc-profile.cxx
1 //
2 // Color profile class for the CUPS PPD Compiler.
3 //
4 // Copyright 2007-2009 by Apple Inc.
5 // Copyright 2002-2005 by Easy Software Products.
6 //
7 // These coded instructions, statements, and computer programs are the
8 // property of Apple Inc. and are protected by Federal copyright
9 // law. Distribution and use rights are outlined in the file "LICENSE.txt"
10 // which should have been included with this file. If this file is
11 // file is missing or damaged, see the license at "http://www.cups.org/".
12 //
13
14 //
15 // Include necessary headers...
16 //
17
18 #include "ppdc-private.h"
19
20
21 //
22 // 'ppdcProfile::ppdcProfile()' - Create a color profile.
23 //
24
25 ppdcProfile::ppdcProfile(const char *r, // I - Resolution name
26 const char *m, // I - Media type name
27 float d, // I - Density
28 float g, // I - Gamma
29 const float *p) // I - 3x3 transform matrix
30 : ppdcShared()
31 {
32 PPDC_NEW;
33
34 resolution = new ppdcString(r);
35 media_type = new ppdcString(m);
36 density = d;
37 gamma = g;
38
39 memcpy(profile, p, sizeof(profile));
40 }
41
42
43 //
44 // 'ppdcProfile::~ppdcProfile()' - Destroy a color profile.
45 //
46
47 ppdcProfile::~ppdcProfile()
48 {
49 PPDC_DELETE;
50
51 resolution->release();
52 media_type->release();
53 }