ChangeLog 11 KB

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