ChangeLog 9.3 KB

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