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