ChangeLog: Updated ChangeLog.
[mono.git] / mcs / class / System.Drawing / System.Drawing.Imaging / ChangeLog
1 2004-05-13  Sanjay Gupta <gsanjay@novell.com>
2         
3         * WmfPlaceableFileHeader.cs: Removed extra property Id.
4
5 2004-05-04  Vladimir Vukicevic  <vladimir@pobox.com>
6
7         * BitmapData.cs: re-synchronized with libgdiplus; also
8         removed memory deallocs here (as the data is always owned
9         by libgdiplus)
10
11 2004-04-28 Sanjay Gupta <gsanjay@novell.com>
12         
13         Modified files from dos2unix format.
14
15 2004-04-27 Ravindra <rkumar@novell.com>
16
17         * ImageAttributes.cs: Implemented SetWrapMode(WrapMode) method.
18
19 2004-04-27 Jordi Mas i Hernadez <jordi@ximian.com>
20
21         * ImageFormat.cs: completed missimg members
22         * ImageCodecInfo.cs: Use GDI+ calls instead of native C#
23
24 2004-04-27 Sanjay Gupta <gsanjay@novell.com>
25         * ImageFormat.cs: Implemented Equals() method.
26
27 2004-04-27 Sanjay Gupta <gsanjay@novell.com>
28         * ImageFormat.cs: Implemented ToString() method.
29
30 2004-04-06  Vladimir Vukicevic  <vladimir@pobox.com>
31
32         * BitmapData.cs: synced up data structure with libgdiplus
33
34         * BmpCodec.cs, JPEGCodec.cs, PNGCodec.cs: Removed codec impls,
35         left just codecinfo getters; the codecs are in libgdiplus
36
37         * ImageCodecInfo.cs: removed encode/decode delegates
38         
39 2004-03-31 Jordi Mas i Hernadez <jordi@ximian.com>
40         * FrameDimension.cs: added missing members 
41         
42 2004-03-26 Jordi Mas i Hernadez <jordi@ximian.com>
43         * ImageAttributes.cs: added missing members and complete the wrapper    
44
45 2004-03-04 Jordi Mas i Hernadez <jordi@ximian.com>
46         * BmpCodec.cs: fixes DPI in BMP
47         * Image.cs: gets DPI using GDI+ api
48
49 2004-03-04 Jordi Mas i Hernadez <jordi@ximian.com>
50         * BmpCodec.cs
51                 Added support for diffent formats
52                 Fixed bugs in import and export
53                 Support for OS/2 and palettes
54         * Image.cs
55                 Palettes        
56
57 2004-03-04 Sanjay Gupta <gsanjay@novell.com>
58         * Metafile.cs: Added constructor with correct signature.
59
60 2004-03-04 Nick Drochak <ndrochak@ieee.org>
61
62         * Metafile.cs: Fix build, remove duplicate member.
63
64 2004-03-03 Sanjay Gupta <gsanjay@novell.com>
65         *ImageAttributes.cs: Added few missing functions
66         *Metafile.cs: Added stubs for missing constructors and functions
67
68 2004-03-03 Nick Drochak <ndrochak@ieee.org>
69
70         * BmpCodec.cs: Remove unsed variable.
71
72 2004-02-17 Ravindra <rkumar@novell.com>
73         * EncoderParameter.cs: Did few bug fixes and changed the file
74         format to unix.
75
76 2004-02-13 Sanjay Gupta <gsanjay@novell.com>
77         * FrameDimension.cs: Implemented missing functionalities
78
79 2004-02-12 Ravindra <rkumar@novell.com>
80         * EncoderParameters.cs: Implemented.
81         * EncoderParameter.cs: Implemented.
82
83 2004-01-21 Jordi Mas i Hernàdez <jmas@softcatala.org>
84         * BmpBitmap.cs: fixed encoding and decoding problems
85         * ImageAttributes.cs: implemented
86
87 2004-01-19  Ravindra <rkumar@novell.com>
88
89         * Encoder.cs: Implemented.
90
91 2004-01-10  Ravindra <rkumar@novell.com>
92
93         * All Enums: Made serializable.
94
95         * ImageAttributes.cs: Implements ICloneable.
96
97         * Metafile.cs: Made serializable and invisible to COM.
98
99 2003-11-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
100
101         * ColorMap.cs: Implemented
102         * ColorMatrix.cs: Implemented, Removed unneccesary members
103         * ImageAttributes.cs: Fixed signature
104         * ImageCodecInfo.cs: Added missing attribure, hide constructor
105         * ImageFormat.cs: Implemented, Added attribute
106         * MetaHeader.cs: Implemented
107         * PropertyItem.cs: Implemented
108         * ImageFlags.cs: Added Attribute
109         * ImageCodecFlags.cs: Added Attribute
110         * EmfPlusRecordType.cs: Added missing members
111
112 2003-11-12  Alexandre Pigolkine <pigolkine@gmx.de>
113         * BitmapData.cs         new function to convert BRG to RGB
114         * JPEGCodec.cs          convert BRG to RBG
115         * PNGCodec.cs
116                                         
117                                         
118 2003-11-02  Alexandre Pigolkine <pigolkine@gmx.de>
119         * BmpCodec.cs
120         * ImageCodecInfo.cs
121         * JPEGCodec.cs
122         * PNGCodec.cs
123                                         codec can select pixel format of bitmap 
124         
125 2003-10-23  Miguel de Icaza  <miguel@ximian.com>
126
127         * JPEGCodec.cs (JSAMPARRAY): Do not allocate memory here anymore,
128         we will just have the JPEG library copy directly into our buffer. 
129
130         (Encode, Decode): Ported to the new model which avoid copies, and
131         eliminates InternalImageInfo.
132
133         TODO: need to port the PNG coder/decoder, and add support for RGBA
134         images which got dropped from this version
135
136         * BmpCodec.cs: Rework this one to use BitmapData and Image.  Do
137         not use the RawBytes property, instead pull the data one line at a
138         time, and write that out.
139
140         * ImageCodecInfo.cs: Make the encoding and decoding delegates take
141         a Image parameter;  
142         
143         * BmpCodec.cs: 
144
145         * BitmapData.cs: Make this one sequential, and also mimic the
146         layout of GdiPlus.h so we can use this instead of making copies
147         back and forth.
148
149 2003-10-12 Alexandre Pigolkine
150         * BmpCodec.cs           warning removed
151
152 2003-07-23 Alexandre Pigolkine
153         * JPEGCodec.cs
154         * PNGCodec.cs           
155         * BmpCodec.cs           cosmetic changes
156
157 2003-07-22 Alexandre Pigolkine
158         * ImageCodecInfo.cs
159         * ImageFormat.cs
160         * JPEGCodec.cs
161                 changes for PNG codec
162                 
163         * PNGCodec.cs           added
164         
165 2003-07-21  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
166
167         * Metafile.cs: Inherits from image (fix for System.Drawing.Design)
168
169 2003-06-29 Alexandre Pigolkine
170         * BmpCodec.cs           handle 32bpp images
171         * JPEGCodec.cs          small fix
172
173 2003-06-27 Alexandre Pigolkine <pigolkine@gmx.de>
174         * JPEGCodec.cs  encode 32 bpp images
175
176 2003-06-23 Alexandre Pigolkine <pigolkine@gmx.de>
177         * JPEGCodec.cs  set pixel format in InternalImageInfo
178         
179 2003-06-23 Alexandre Pigolkine <pigolkine@gmx.de>
180         * BmpCodec.cs   pixel format check added
181         * JPEGCodec.cs  encoder implemented
182
183 2003-06-15 Alexandre Pigolkine <pigolkine@gmx.de>
184         * ColorPalette.cs
185         * ImageCodecInfo.cs
186         * ImageFormat.cs
187                 implementation added
188                 
189         * BmpCodec.cs
190         * JPEGCodec.cs
191                 added   
192         
193 2002-9-2  DennisHayes <dennish@raytek.com>
194
195 * PropertyItem.cs t
196 * MetaHeader.cs t
197 * MetafileHeader.cs t
198 * Metafile.cs t
199 * ImageFormat.cs t
200 * ImageCodecInfo.cs t
201 * ColorMatrix.cs t
202 * ColorMap.cs t
203 * WmfPlaceableFileHeader.cs t
204 * Added todos back
205
206 2002-9-2  DennisHayes <dennish@raytek.com>
207         * checked in for Everaldo Canuto (everaldo.canuto@bol,com.br)
208         * BitmapData.cs
209         * ColorAdjustType.cs
210         * ColorChannelFlag.cs
211         * ColorMap.cs
212         * ColorMapType.cs
213         * ColorMatrix.cs
214         * ColorMatrixFlag.cs
215         * ColorMode.cs
216         * EmfPlusRecordType.cs
217         * EmfType.cs
218         * EncoderParameterValueType.cs
219         * EncoderValue.cs
220         * ImageCodecFlags.cs
221         * ImageCodecInfo.cs
222         * ImageFlags.cs
223         * ImageFormat.cs
224         * ImageLockMode.cs
225         * MetafileFrameUnit.cs
226         * MetafileHeader.cs
227         * MetaHeader.cs
228         * PaletteFlags.cs
229         * PixelFormat.cs
230         * PlayRecordCallback.cs
231         * PropertyItem.cs
232         * WmfPlaceableFileHeader.cs
233         * Added null classes for most/all classes, Many stubs, and some implmentation
234
235 2002-9-2  DennisHayes <dennish@raytek.com>
236
237         * ColorPalette.cs
238         * FrameDimension.cs
239         * Metafile.cs
240         * Added stubs, implmentation
241
242 2002-05-03  Mike Kestner  <mkestner@speakeasy.net>
243
244         * Metafile.cs : Use System.IO. Fix exception typos.
245
246 2002-04-27  Christian Meyer  <Christian.Meyer@cs.tum.edu>
247
248         * Metafile.cs: Copyright now holds Ximian.
249
250 2002-04-21  Dennis Hayes <dennish@raytek.com>
251
252         * corrected emum values.
253
254 2002-04-14  Christian Meyer  <Christian.Meyer@cs.tum.edu>
255
256         * ChangeLog: created.
257         * Metafile.cs: Added. Wrote some ctors. No impl done, yet.
258