0023912: TDataStd_ExtStringArray::Value() returns a copy of TCollection_ExtendedStrin...
[occt.git] / src / Image / Image_GPixelField.gxx
1 // Copyright (c) 1995-1999 Matra Datavision
2 // Copyright (c) 1999-2012 OPEN CASCADE SAS
3 //
4 // The content of this file is subject to the Open CASCADE Technology Public
5 // License Version 6.5 (the "License"). You may not use the content of this file
6 // except in compliance with the License. Please obtain a copy of the License
7 // at http://www.opencascade.org and read it completely before using this file.
8 //
9 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
10 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
11 //
12 // The Original Code and all software distributed under the License is
13 // distributed on an "AS IS" basis, without warranty of any kind, and the
14 // Initial Developer hereby disclaims all such warranties, including without
15 // limitation, any warranties of merchantability, fitness for a particular
16 // purpose or non-infringement. Please see the License for the specific terms
17 // and conditions governing the rights and limitations under the License.
18
19 #include <Standard_OutOfRange.hxx>
20 #include <Standard_DimensionMismatch.hxx>
21 #include <Standard_RangeError.hxx>
22 #include <Standard_OutOfMemory.hxx>
23
24 #ifdef TRACE
25 static int GPixelFieldCount = 0 ;
26 #endif
27
28 //=======================================================================
29 //function : Image_GPixelField
30 //purpose  : 
31 //=======================================================================
32
33 Image_GPixelField::Image_GPixelField (const Standard_Integer Width,
34                                       const Standard_Integer Height) :
35         myWidth(Width),
36         myHeight(Height),
37         myDeletable(Standard_True)
38 {
39
40   Standard_Integer Size = myWidth * myHeight;
41  
42   Standard_RangeError_Raise_if(( myWidth <= 0  || myHeight <= 0 ),
43                                "Image_GPixelField::Create");
44
45 #ifdef TRACE
46   cout << form("\tCreate a new GPixelField ( Count : %d )\n",++GPixelFieldCount)
47        << flush ;
48 #endif
49
50   myData = new Item [Size];
51 }
52
53 //=======================================================================
54 //function : Image_GPixelField
55 //purpose  : 
56 //=======================================================================
57
58 Image_GPixelField::Image_GPixelField (const Standard_Integer Width,
59                                       const Standard_Integer Height,
60                                         const Item& V) :
61         myWidth(Width),
62         myHeight(Height),
63         myDeletable(Standard_True)
64 {
65
66   Standard_Integer Size = myWidth * myHeight;
67  
68   Standard_RangeError_Raise_if(( myWidth <= 0  || myHeight <= 0 ),
69                                "Image_GPixelField::Create");
70
71 #ifdef TRACE
72   cout << form("\tCreate a new GPixelField ( Count : %d )\n",++GPixelFieldCount)
73        << flush ;
74 #endif
75
76   myData = new Item [Size];
77   
78   for (Standard_Integer I = 0; I < Size ; I++) ((Item *)myData)[I] = V;
79 }
80
81 //=======================================================================
82 //function : Destroy
83 //purpose  : 
84 //=======================================================================
85
86 void Image_GPixelField::Destroy () 
87 {
88 #ifdef TRACE
89   cout << form("\t\tDelete a GPixelField ( Count : %d )\n", --GPixelFieldCount )
90        << flush ;
91 #endif
92
93   if(myDeletable) {
94     delete [] (Item *) myData;
95   }
96 }
97