ChangeLog 8.1 KB

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