ChangeLog 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. 2004-03-21 Jordi Mas i Hernadez <[email protected]>
  2. * ColorMatrix.cs: fixes Matrix00 init
  3. * ImageAttributes.cs: fixes dispose method and signature
  4. 2004-02-25 Jordi Mas i Hernadez <[email protected]>
  5. * ColorMatrix.cs: rewritten to be able to marshall it properly
  6. 2004-12-27 Zoltan Varga <[email protected]>
  7. * ImageCodecInfo.cs: Fix marshalling of arrays on amd64.
  8. 2004-11-25 Marek Safar <[email protected]>
  9. * ColorPalette.cs: Add CheckStatus to GetAdjustedPalette.
  10. 2004-11-03 Miguel de Icaza <[email protected]>
  11. * ColorPalette.cs: Add internal Clone method
  12. 2004-10-08 Ravindra <[email protected]>
  13. * BitmapData.cs: Synchronized the class with BitmapData struct
  14. in libgdiplus.
  15. 2004-06-13 Gert Driesen <[email protected]>
  16. * EmfPlusRecordType.cs: fixed mismatches in enum field values
  17. 2004-05-18 Jordi Mas i Hernadez <[email protected]>
  18. * ImageAttributes.cs: SetBrushRemapTable and SetRemapTable were
  19. passing bad parameters to GDI+ causing them not to work
  20. 2004-05-16 Gert Driesen ([email protected])
  21. * EncoderParameterValueType.cs: fix Windows build (CSC),
  22. MCS bug #58571
  23. * EncoderParameter.cs: removed ctors taking int value,
  24. to fix public API
  25. 2004-05-14 Vladimir Vukicevic <[email protected]>
  26. * EncoderParameters.cs: Added ToNativePtr() method to marshal
  27. struct correctly to a native struct. Resulting data should be
  28. FreeHGlobal'd when finished.
  29. * EncoderParameter.cs: Changed data storage to correspond to
  30. native code layout (so we can pass these structs directly to
  31. native code). Also changed layout to match native layout.
  32. * EncoderParameterValueType.cs: force EncoderParameterValueType to
  33. be Int32
  34. 2004-05-13 Jordi Mas i Hernadez <[email protected]>
  35. * ColorMatrix.cs:Make private data private
  36. * ColorPalette.cs: Make private data private
  37. * Encoder.cs: Make private data private
  38. * EncoderParameter.cs: Make private data private
  39. * EncoderParameters.cs: Make private data private
  40. * MetaHeader.cs: Make private data private
  41. * PropertyItem.cs: Make private data private
  42. 2004-05-04 Vladimir Vukicevic <[email protected]>
  43. * BitmapData.cs: re-synchronized with libgdiplus; also
  44. removed memory deallocs here (as the data is always owned
  45. by libgdiplus)
  46. 2004-04-28 Sanjay Gupta <[email protected]>
  47. Modified files from dos2unix format.
  48. 2004-04-27 Ravindra <[email protected]>
  49. * ImageAttributes.cs: Implemented SetWrapMode(WrapMode) method.
  50. 2004-04-27 Jordi Mas i Hernadez <[email protected]>
  51. * ImageFormat.cs: completed missimg members
  52. * ImageCodecInfo.cs: Use GDI+ calls instead of native C#
  53. 2004-04-27 Sanjay Gupta <[email protected]>
  54. * ImageFormat.cs: Implemented Equals() method.
  55. 2004-04-27 Sanjay Gupta <[email protected]>
  56. * ImageFormat.cs: Implemented ToString() method.
  57. 2004-04-06 Vladimir Vukicevic <[email protected]>
  58. * BitmapData.cs: synced up data structure with libgdiplus
  59. * BmpCodec.cs, JPEGCodec.cs, PNGCodec.cs: Removed codec impls,
  60. left just codecinfo getters; the codecs are in libgdiplus
  61. * ImageCodecInfo.cs: removed encode/decode delegates
  62. 2004-03-31 Jordi Mas i Hernadez <[email protected]>
  63. * FrameDimension.cs: added missing members
  64. 2004-03-26 Jordi Mas i Hernadez <[email protected]>
  65. * ImageAttributes.cs: added missing members and complete the wrapper
  66. 2004-03-04 Jordi Mas i Hernadez <[email protected]>
  67. * BmpCodec.cs: fixes DPI in BMP
  68. * Image.cs: gets DPI using GDI+ api
  69. 2004-03-04 Jordi Mas i Hernadez <[email protected]>
  70. * BmpCodec.cs
  71. Added support for diffent formats
  72. Fixed bugs in import and export
  73. Support for OS/2 and palettes
  74. * Image.cs
  75. Palettes
  76. 2004-03-04 Sanjay Gupta <[email protected]>
  77. * Metafile.cs: Added constructor with correct signature.
  78. 2004-03-04 Nick Drochak <[email protected]>
  79. * Metafile.cs: Fix build, remove duplicate member.
  80. 2004-03-03 Sanjay Gupta <[email protected]>
  81. *ImageAttributes.cs: Added few missing functions
  82. *Metafile.cs: Added stubs for missing constructors and functions
  83. 2004-03-03 Nick Drochak <[email protected]>
  84. * BmpCodec.cs: Remove unsed variable.
  85. 2004-02-17 Ravindra <[email protected]>
  86. * EncoderParameter.cs: Did few bug fixes and changed the file
  87. format to unix.
  88. 2004-02-13 Sanjay Gupta <[email protected]>
  89. * FrameDimension.cs: Implemented missing functionalities
  90. 2004-02-12 Ravindra <[email protected]>
  91. * EncoderParameters.cs: Implemented.
  92. * EncoderParameter.cs: Implemented.
  93. 2004-01-21 Jordi Mas i Hernàdez <[email protected]>
  94. * BmpBitmap.cs: fixed encoding and decoding problems
  95. * ImageAttributes.cs: implemented
  96. 2004-01-19 Ravindra <[email protected]>
  97. * Encoder.cs: Implemented.
  98. 2004-01-10 Ravindra <[email protected]>
  99. * All Enums: Made serializable.
  100. * ImageAttributes.cs: Implements ICloneable.
  101. * Metafile.cs: Made serializable and invisible to COM.
  102. 2003-11-13 Andreas Nahr <[email protected]>
  103. * ColorMap.cs: Implemented
  104. * ColorMatrix.cs: Implemented, Removed unneccesary members
  105. * ImageAttributes.cs: Fixed signature
  106. * ImageCodecInfo.cs: Added missing attribure, hide constructor
  107. * ImageFormat.cs: Implemented, Added attribute
  108. * MetaHeader.cs: Implemented
  109. * PropertyItem.cs: Implemented
  110. * ImageFlags.cs: Added Attribute
  111. * ImageCodecFlags.cs: Added Attribute
  112. * EmfPlusRecordType.cs: Added missing members
  113. 2003-11-12 Alexandre Pigolkine <[email protected]>
  114. * BitmapData.cs new function to convert BRG to RGB
  115. * JPEGCodec.cs convert BRG to RBG
  116. * PNGCodec.cs
  117. 2003-11-02 Alexandre Pigolkine <[email protected]>
  118. * BmpCodec.cs
  119. * ImageCodecInfo.cs
  120. * JPEGCodec.cs
  121. * PNGCodec.cs
  122. codec can select pixel format of bitmap
  123. 2003-10-23 Miguel de Icaza <[email protected]>
  124. * JPEGCodec.cs (JSAMPARRAY): Do not allocate memory here anymore,
  125. we will just have the JPEG library copy directly into our buffer.
  126. (Encode, Decode): Ported to the new model which avoid copies, and
  127. eliminates InternalImageInfo.
  128. TODO: need to port the PNG coder/decoder, and add support for RGBA
  129. images which got dropped from this version
  130. * BmpCodec.cs: Rework this one to use BitmapData and Image. Do
  131. not use the RawBytes property, instead pull the data one line at a
  132. time, and write that out.
  133. * ImageCodecInfo.cs: Make the encoding and decoding delegates take
  134. a Image parameter;
  135. * BmpCodec.cs:
  136. * BitmapData.cs: Make this one sequential, and also mimic the
  137. layout of GdiPlus.h so we can use this instead of making copies
  138. back and forth.
  139. 2003-10-12 Alexandre Pigolkine
  140. * BmpCodec.cs warning removed
  141. 2003-07-23 Alexandre Pigolkine
  142. * JPEGCodec.cs
  143. * PNGCodec.cs
  144. * BmpCodec.cs cosmetic changes
  145. 2003-07-22 Alexandre Pigolkine
  146. * ImageCodecInfo.cs
  147. * ImageFormat.cs
  148. * JPEGCodec.cs
  149. changes for PNG codec
  150. * PNGCodec.cs added
  151. 2003-07-21 Andreas Nahr <[email protected]>
  152. * Metafile.cs: Inherits from image (fix for System.Drawing.Design)
  153. 2003-06-29 Alexandre Pigolkine
  154. * BmpCodec.cs handle 32bpp images
  155. * JPEGCodec.cs small fix
  156. 2003-06-27 Alexandre Pigolkine <[email protected]>
  157. * JPEGCodec.cs encode 32 bpp images
  158. 2003-06-23 Alexandre Pigolkine <[email protected]>
  159. * JPEGCodec.cs set pixel format in InternalImageInfo
  160. 2003-06-23 Alexandre Pigolkine <[email protected]>
  161. * BmpCodec.cs pixel format check added
  162. * JPEGCodec.cs encoder implemented
  163. 2003-06-15 Alexandre Pigolkine <[email protected]>
  164. * ColorPalette.cs
  165. * ImageCodecInfo.cs
  166. * ImageFormat.cs
  167. implementation added
  168. * BmpCodec.cs
  169. * JPEGCodec.cs
  170. added
  171. 2002-9-2 DennisHayes <[email protected]>
  172. * PropertyItem.cs t
  173. * MetaHeader.cs t
  174. * MetafileHeader.cs t
  175. * Metafile.cs t
  176. * ImageFormat.cs t
  177. * ImageCodecInfo.cs t
  178. * ColorMatrix.cs t
  179. * ColorMap.cs t
  180. * WmfPlaceableFileHeader.cs t
  181. * Added todos back
  182. 2002-9-2 DennisHayes <[email protected]>
  183. * checked in for Everaldo Canuto (everaldo.canuto@bol,com.br)
  184. * BitmapData.cs
  185. * ColorAdjustType.cs
  186. * ColorChannelFlag.cs
  187. * ColorMap.cs
  188. * ColorMapType.cs
  189. * ColorMatrix.cs
  190. * ColorMatrixFlag.cs
  191. * ColorMode.cs
  192. * EmfPlusRecordType.cs
  193. * EmfType.cs
  194. * EncoderParameterValueType.cs
  195. * EncoderValue.cs
  196. * ImageCodecFlags.cs
  197. * ImageCodecInfo.cs
  198. * ImageFlags.cs
  199. * ImageFormat.cs
  200. * ImageLockMode.cs
  201. * MetafileFrameUnit.cs
  202. * MetafileHeader.cs
  203. * MetaHeader.cs
  204. * PaletteFlags.cs
  205. * PixelFormat.cs
  206. * PlayRecordCallback.cs
  207. * PropertyItem.cs
  208. * WmfPlaceableFileHeader.cs
  209. * Added null classes for most/all classes, Many stubs, and some implmentation
  210. 2002-9-2 DennisHayes <[email protected]>
  211. * ColorPalette.cs
  212. * FrameDimension.cs
  213. * Metafile.cs
  214. * Added stubs, implmentation
  215. 2002-05-03 Mike Kestner <[email protected]>
  216. * Metafile.cs : Use System.IO. Fix exception typos.
  217. 2002-04-27 Christian Meyer <[email protected]>
  218. * Metafile.cs: Copyright now holds Ximian.
  219. 2002-04-21 Dennis Hayes <[email protected]>
  220. * corrected emum values.
  221. 2002-04-14 Christian Meyer <[email protected]>
  222. * ChangeLog: created.
  223. * Metafile.cs: Added. Wrote some ctors. No impl done, yet.