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