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