ChangeLog 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539
  1. 2007-03-09 Sebastien Pouliot <[email protected]>
  2. * MetafileHeader.cs: WmfHeader throws if the metafile isn't a WMF (e.g.
  3. EMF, EMF+ or EMF dual).
  4. 2007-03-09 Sebastien Pouliot <[email protected]>
  5. * MetafileHeader.cs: Fix offset to match correct C definition.
  6. 2007-02-21 Sebastien Pouliot <[email protected]>
  7. * Metafile.cs: Implement a few cases required to playback metafiles.
  8. * MetafileHeader.cs: Implemented.
  9. * MetaHeader.cs: Implemented.
  10. * WmfPlaceableFileHeader.cs: Adjust packing.
  11. 2007-01-12 Sebastien Pouliot <[email protected]>
  12. * ImageAttribute.cs: Reuse code in SetColorMatrix overloads.
  13. 2007-01-08 Sebastien Pouliot <[email protected]>
  14. * ImageCodecInfo.cs: Remove MonoTODO on SignaturePatterns.
  15. 2006-11-22 Sebastien Pouliot <[email protected]>
  16. * ImageAttributes.cs: Better MonoTODO description.
  17. * ImageCodecInfo.cs: Add MonoTODO description.
  18. * Metafile.cs: Use a single MonoTODO on the class itself. MoMA will
  19. detect and report that every ctors/methods/properties are throwing
  20. NotImplementedException.
  21. * MetafileHeader.cs: Use a single MonoTODO on the class itself. MoMA
  22. will detect and report that every ctors/methods/properties are
  23. throwing NotImplementedException.
  24. 2006-10-31 Sebastien Pouliot <[email protected]>
  25. * MetaHeader.cs: Fix layout (order is important in sequential structs)
  26. and use the struct field names;
  27. * WmfPlaceableFileHeader.cs: Implement all TODO.
  28. 2006-09-14 Sebastien Pouliot <[email protected]>
  29. * BitmapData.cs: Change fields visibility to private as they either
  30. have get/set properties or shouldn't be used in managed code (as they
  31. do not exists when using MS GDI+). Added more warnings comments.
  32. 2006-09-01 Sebastien Pouliot <[email protected]>
  33. * BitmapData.cs: Invert left and top fields to be in sync with gdip.h
  34. 2006-08-25 Sebastien Pouliot <[email protected]>
  35. * ColorMatrix.cs: Add Alloc and Free method helpers for interop.
  36. * ImageAttributes.cs: Fix all methods accepting a ColorMatrix (i.e.
  37. which calls GdipSetImageAttributesColorMatrix) to use IntPtr instead
  38. of the ColorMatrix itself.
  39. 2006-07-19 Sebastien Pouliot <[email protected]>
  40. * ImageFormat.cs: Re-fixed ToString method to match MS output when
  41. the ImageFormat instance comes from the static properties. Create the
  42. default ImageFormat on demand (and avoid creating 10 instances of
  43. ImageFormat in the static ctor).
  44. 2006-05-30 Sebastien Pouliot <[email protected]>
  45. * ImageFormat.cs: Avoid double-cast in Equals method.
  46. 2006-05-24 Sebastien Pouliot <[email protected]>
  47. * ImageFormat.cs: Fixed ToString method to match MS output.
  48. 2006-05-21 Sebastien Pouliot <[email protected]>
  49. * ColorAdjustType.cs: Removed [Serializable] from 2.0 profile.
  50. * ColorChannelFlag.cs: Removed [Serializable] from 2.0 profile.
  51. * ColorMapType.cs: Removed [Serializable] from 2.0 profile.
  52. * ColorMatrixFlag.cs: Removed [Serializable] from 2.0 profile.
  53. * ColorMode.cs: Removed [Serializable] from 2.0 profile.
  54. * EmfPlusRecordType.cs: Removed [Serializable] from 2.0 profile.
  55. * EmfType.cs: Removed [Serializable] from 2.0 profile.
  56. * EncoderParameterValueType.cs: Removed [Serializable] from 2.0
  57. profile.
  58. * EncoderValue.cs: Removed [Serializable] from 2.0 profile.
  59. * ImageCodecFlags.cs: Removed [Serializable] from 2.0 profile.
  60. * ImageCodecInfo.cs: Removed [Serializable] from 2.0 profile.
  61. * ImageFlags.cs: Removed [Serializable] from 2.0 profile.
  62. * ImageLockMode.cs: Removed [Serializable] from 2.0 profile.
  63. * Metafile.cs: Removed [Serializable] from 2.0 profile.
  64. * MetafileFrameUnit.cs: Removed [Serializable] from 2.0 profile.
  65. * MetafileType.cs: Removed [Serializable] from 2.0 profile.
  66. * PixelFormat.cs: Removed [Serializable] from 2.0 profile.
  67. * PlayRecordCallback.cs: Removed [Serializable] from 2.0 profile.
  68. 2006-05-05 Sebastien Pouliot <[email protected]>
  69. * PaletteFlags.cs: corcompare fixes for 2.0. Add [Flags] and remove
  70. [Serializable]
  71. 2006-04-20 Peter Dennis Bartok <[email protected]>
  72. * BitmapData.cs: Updated to match the BitmapData structure
  73. from libgdiplus r59689.
  74. 2006-04-19 Peter Dennis Bartok <[email protected]>
  75. * BitmapData.cs: Updated to match the BitmapData structure
  76. from libgdiplus r59661.
  77. 2006-04-03 Gonzalo Paniagua Javier <[email protected]>
  78. * ImageAttributes.cs: SetColorKey(color, color) now calls the
  79. color,color,ColorAdjustType.
  80. 2006-02-09 Peter Dennis Bartok <[email protected]>
  81. * ColorPalette.cs, EncoderParameters.cs, EncoderParameter.cs,
  82. ImageAttributes.cs: 64bit cleanup and some simplifications
  83. 2006-01-27 Sebastien Pouliot <[email protected]>
  84. * ImageAttributes.cs: Ensure Marshal.FreeHGlobal is called for all
  85. unmanaged memory allocated with AllocHGlobal.
  86. * ImageCodecInfo.cs: Ensure Marshal.FreeHGlobal is called for all
  87. unmanaged memory allocated with AllocHGlobal.
  88. 2005-11-23 Vladimir Krasnov <[email protected]>
  89. * ImageCodec.jvm.cs: fixed ProcessOneCodec, sometime it was failed
  90. on parsing version of codec
  91. 2005-11-17 Vladimir Krasnov <[email protected]>
  92. * ImageCodec.jvm.cs: fixed WriteImage, removed flush
  93. of native output
  94. 2005-11-17 Raja R Harinath <[email protected]>
  95. * ColorMatrix.cs: Make it have Sequential layout.
  96. 2005-11-16 Konstantin Triger <[email protected]>
  97. * ImageCodec.jvm.cs: refactoring.
  98. 2005-11-14 Vladimir Krasnov <[email protected]>
  99. * ImageCodec.jvm.cs: Fixed error handling in codecs emumeration flow
  100. 2005-11-13 Kornél Pál <[email protected]>
  101. * ImageFormat.cs: Fixed ToString to use this.Equals to reflect argument
  102. changes to ImageFormat objects. Added Exif and Icon strings to ToString
  103. and reordered formats to match declaration.
  104. 2005-11-13 Konstantin Triger <[email protected]>
  105. * ImageCodec.jvm.cs: throw an exception if codec is not found.
  106. 2005-10-31 Jordi Mas i Hernandez <[email protected]>
  107. * ImageFormat.cs: Fixes ToString method
  108. 2005-09-27 Vladimir Krasnov <[email protected]>
  109. * ImageCodec.jvm.cs: implemented IDsposable,
  110. fixed NativeReader, NativeWriter, NativeStream
  111. 2005-10-20 Konstantin Triger <[email protected]>
  112. * Metafile.jvm.cs: implement abstact Clone
  113. 2005-10-04 Peter Dennis Bartok <[email protected]>
  114. * EncoderParameter.cs, EncoderParameters.cs: Calling GC.SuppressFinalize
  115. from the Dispose method; fixes bug #76329
  116. 2005-09-21 Vladimir Krasnov <[email protected]>
  117. * ImageCodec.jvm.cs: refactoring of read/write methods, members access levels
  118. 2005-09-14 Vladimir Krasnov <[email protected]>
  119. * ImageCodecInfo.jvm.cs: fixed ImageCodec namespace
  120. * ImageCodec.jvm.cs: refactoring of read/write methods
  121. 2005-09-07 Vladimir Krasnov <[email protected]>
  122. * ImageCodecInfo.jvm.cs: fixed GetValueFromMetadata, SetResolution
  123. 2005-09-07 Vladimir Krasnov <[email protected]>
  124. * ImageCodecInfo.jvm.cs: Refactoring
  125. * Added ImageCodec.jvm.cs
  126. 2005-08-28 Vladimir Krasnov <[email protected]>
  127. * ImageCodecInfo.jvm.cs: Fixed Iterate
  128. 2005-08-03 Andrew Skiba <[email protected]>
  129. * ImageCodecInfo.jvm.cs: implement via java imageio, add internal APIs for
  130. fast read-only requests
  131. * Methafile.jvm.cs: change in not implemented api to match image.jvm.cs
  132. 2005-08-03 Andrew Skiba <[email protected]>
  133. * Metafile.jvm.cs: add TARGET_JVM implementation
  134. 2005-08-03 Andrew Skiba <[email protected]>
  135. * ColorPalette.cs, FrameDimension.cs, EncoderParameters.cs: TARGET_JVM
  136. exclude not supported internal methods
  137. * EncoderParameter.jvm.cs, ImageAttributes.jvm.cs, ImageFormat.jvm.cs,
  138. ImageCodecInfo.jvm.cs: added TARGET_JVM implementation of these classes
  139. 2005-03-23 Jordi Mas i Hernandez <[email protected]>
  140. * ColorPalette.cs: fixes ColorPalette marshaling
  141. 2004-03-21 Jordi Mas i Hernadez <[email protected]>
  142. * ColorMatrix.cs: fixes Matrix00 init
  143. * ImageAttributes.cs: fixes dispose method and signature
  144. 2004-02-25 Jordi Mas i Hernadez <[email protected]>
  145. * ColorMatrix.cs: rewritten to be able to marshall it properly
  146. 2004-12-27 Zoltan Varga <[email protected]>
  147. * ImageCodecInfo.cs: Fix marshalling of arrays on amd64.
  148. 2004-11-25 Marek Safar <[email protected]>
  149. * ColorPalette.cs: Add CheckStatus to GetAdjustedPalette.
  150. 2004-11-03 Miguel de Icaza <[email protected]>
  151. * ColorPalette.cs: Add internal Clone method
  152. 2004-10-08 Ravindra <[email protected]>
  153. * BitmapData.cs: Synchronized the class with BitmapData struct
  154. in libgdiplus.
  155. 2004-06-13 Gert Driesen <[email protected]>
  156. * EmfPlusRecordType.cs: fixed mismatches in enum field values
  157. 2004-05-18 Jordi Mas i Hernadez <[email protected]>
  158. * ImageAttributes.cs: SetBrushRemapTable and SetRemapTable were
  159. passing bad parameters to GDI+ causing them not to work
  160. 2004-05-16 Gert Driesen ([email protected])
  161. * EncoderParameterValueType.cs: fix Windows build (CSC),
  162. MCS bug #58571
  163. * EncoderParameter.cs: removed ctors taking int value,
  164. to fix public API
  165. 2004-05-14 Vladimir Vukicevic <[email protected]>
  166. * EncoderParameters.cs: Added ToNativePtr() method to marshal
  167. struct correctly to a native struct. Resulting data should be
  168. FreeHGlobal'd when finished.
  169. * EncoderParameter.cs: Changed data storage to correspond to
  170. native code layout (so we can pass these structs directly to
  171. native code). Also changed layout to match native layout.
  172. * EncoderParameterValueType.cs: force EncoderParameterValueType to
  173. be Int32
  174. 2004-05-13 Jordi Mas i Hernadez <[email protected]>
  175. * ColorMatrix.cs:Make private data private
  176. * ColorPalette.cs: Make private data private
  177. * Encoder.cs: Make private data private
  178. * EncoderParameter.cs: Make private data private
  179. * EncoderParameters.cs: Make private data private
  180. * MetaHeader.cs: Make private data private
  181. * PropertyItem.cs: Make private data private
  182. 2004-05-04 Vladimir Vukicevic <[email protected]>
  183. * BitmapData.cs: re-synchronized with libgdiplus; also
  184. removed memory deallocs here (as the data is always owned
  185. by libgdiplus)
  186. 2004-04-28 Sanjay Gupta <[email protected]>
  187. Modified files from dos2unix format.
  188. 2004-04-27 Ravindra <[email protected]>
  189. * ImageAttributes.cs: Implemented SetWrapMode(WrapMode) method.
  190. 2004-04-27 Jordi Mas i Hernadez <[email protected]>
  191. * ImageFormat.cs: completed missimg members
  192. * ImageCodecInfo.cs: Use GDI+ calls instead of native C#
  193. 2004-04-27 Sanjay Gupta <[email protected]>
  194. * ImageFormat.cs: Implemented Equals() method.
  195. 2004-04-27 Sanjay Gupta <[email protected]>
  196. * ImageFormat.cs: Implemented ToString() method.
  197. 2004-04-06 Vladimir Vukicevic <[email protected]>
  198. * BitmapData.cs: synced up data structure with libgdiplus
  199. * BmpCodec.cs, JPEGCodec.cs, PNGCodec.cs: Removed codec impls,
  200. left just codecinfo getters; the codecs are in libgdiplus
  201. * ImageCodecInfo.cs: removed encode/decode delegates
  202. 2004-03-31 Jordi Mas i Hernadez <[email protected]>
  203. * FrameDimension.cs: added missing members
  204. 2004-03-26 Jordi Mas i Hernadez <[email protected]>
  205. * ImageAttributes.cs: added missing members and complete the wrapper
  206. 2004-03-04 Jordi Mas i Hernadez <[email protected]>
  207. * BmpCodec.cs: fixes DPI in BMP
  208. * Image.cs: gets DPI using GDI+ api
  209. 2004-03-04 Jordi Mas i Hernadez <[email protected]>
  210. * BmpCodec.cs
  211. Added support for diffent formats
  212. Fixed bugs in import and export
  213. Support for OS/2 and palettes
  214. * Image.cs
  215. Palettes
  216. 2004-03-04 Sanjay Gupta <[email protected]>
  217. * Metafile.cs: Added constructor with correct signature.
  218. 2004-03-04 Nick Drochak <[email protected]>
  219. * Metafile.cs: Fix build, remove duplicate member.
  220. 2004-03-03 Sanjay Gupta <[email protected]>
  221. *ImageAttributes.cs: Added few missing functions
  222. *Metafile.cs: Added stubs for missing constructors and functions
  223. 2004-03-03 Nick Drochak <[email protected]>
  224. * BmpCodec.cs: Remove unsed variable.
  225. 2004-02-17 Ravindra <[email protected]>
  226. * EncoderParameter.cs: Did few bug fixes and changed the file
  227. format to unix.
  228. 2004-02-13 Sanjay Gupta <[email protected]>
  229. * FrameDimension.cs: Implemented missing functionalities
  230. 2004-02-12 Ravindra <[email protected]>
  231. * EncoderParameters.cs: Implemented.
  232. * EncoderParameter.cs: Implemented.
  233. 2004-01-21 Jordi Mas i Hernàdez <[email protected]>
  234. * BmpBitmap.cs: fixed encoding and decoding problems
  235. * ImageAttributes.cs: implemented
  236. 2004-01-19 Ravindra <[email protected]>
  237. * Encoder.cs: Implemented.
  238. 2004-01-10 Ravindra <[email protected]>
  239. * All Enums: Made serializable.
  240. * ImageAttributes.cs: Implements ICloneable.
  241. * Metafile.cs: Made serializable and invisible to COM.
  242. 2003-11-13 Andreas Nahr <[email protected]>
  243. * ColorMap.cs: Implemented
  244. * ColorMatrix.cs: Implemented, Removed unneccesary members
  245. * ImageAttributes.cs: Fixed signature
  246. * ImageCodecInfo.cs: Added missing attribure, hide constructor
  247. * ImageFormat.cs: Implemented, Added attribute
  248. * MetaHeader.cs: Implemented
  249. * PropertyItem.cs: Implemented
  250. * ImageFlags.cs: Added Attribute
  251. * ImageCodecFlags.cs: Added Attribute
  252. * EmfPlusRecordType.cs: Added missing members
  253. 2003-11-12 Alexandre Pigolkine <[email protected]>
  254. * BitmapData.cs new function to convert BRG to RGB
  255. * JPEGCodec.cs convert BRG to RBG
  256. * PNGCodec.cs
  257. 2003-11-02 Alexandre Pigolkine <[email protected]>
  258. * BmpCodec.cs
  259. * ImageCodecInfo.cs
  260. * JPEGCodec.cs
  261. * PNGCodec.cs
  262. codec can select pixel format of bitmap
  263. 2003-10-23 Miguel de Icaza <[email protected]>
  264. * JPEGCodec.cs (JSAMPARRAY): Do not allocate memory here anymore,
  265. we will just have the JPEG library copy directly into our buffer.
  266. (Encode, Decode): Ported to the new model which avoid copies, and
  267. eliminates InternalImageInfo.
  268. TODO: need to port the PNG coder/decoder, and add support for RGBA
  269. images which got dropped from this version
  270. * BmpCodec.cs: Rework this one to use BitmapData and Image. Do
  271. not use the RawBytes property, instead pull the data one line at a
  272. time, and write that out.
  273. * ImageCodecInfo.cs: Make the encoding and decoding delegates take
  274. a Image parameter;
  275. * BmpCodec.cs:
  276. * BitmapData.cs: Make this one sequential, and also mimic the
  277. layout of GdiPlus.h so we can use this instead of making copies
  278. back and forth.
  279. 2003-10-12 Alexandre Pigolkine
  280. * BmpCodec.cs warning removed
  281. 2003-07-23 Alexandre Pigolkine
  282. * JPEGCodec.cs
  283. * PNGCodec.cs
  284. * BmpCodec.cs cosmetic changes
  285. 2003-07-22 Alexandre Pigolkine
  286. * ImageCodecInfo.cs
  287. * ImageFormat.cs
  288. * JPEGCodec.cs
  289. changes for PNG codec
  290. * PNGCodec.cs added
  291. 2003-07-21 Andreas Nahr <[email protected]>
  292. * Metafile.cs: Inherits from image (fix for System.Drawing.Design)
  293. 2003-06-29 Alexandre Pigolkine
  294. * BmpCodec.cs handle 32bpp images
  295. * JPEGCodec.cs small fix
  296. 2003-06-27 Alexandre Pigolkine <[email protected]>
  297. * JPEGCodec.cs encode 32 bpp images
  298. 2003-06-23 Alexandre Pigolkine <[email protected]>
  299. * JPEGCodec.cs set pixel format in InternalImageInfo
  300. 2003-06-23 Alexandre Pigolkine <[email protected]>
  301. * BmpCodec.cs pixel format check added
  302. * JPEGCodec.cs encoder implemented
  303. 2003-06-15 Alexandre Pigolkine <[email protected]>
  304. * ColorPalette.cs
  305. * ImageCodecInfo.cs
  306. * ImageFormat.cs
  307. implementation added
  308. * BmpCodec.cs
  309. * JPEGCodec.cs
  310. added
  311. 2002-9-2 DennisHayes <[email protected]>
  312. * PropertyItem.cs t
  313. * MetaHeader.cs t
  314. * MetafileHeader.cs t
  315. * Metafile.cs t
  316. * ImageFormat.cs t
  317. * ImageCodecInfo.cs t
  318. * ColorMatrix.cs t
  319. * ColorMap.cs t
  320. * WmfPlaceableFileHeader.cs t
  321. * Added todos back
  322. 2002-9-2 DennisHayes <[email protected]>
  323. * checked in for Everaldo Canuto (everaldo.canuto@bol,com.br)
  324. * BitmapData.cs
  325. * ColorAdjustType.cs
  326. * ColorChannelFlag.cs
  327. * ColorMap.cs
  328. * ColorMapType.cs
  329. * ColorMatrix.cs
  330. * ColorMatrixFlag.cs
  331. * ColorMode.cs
  332. * EmfPlusRecordType.cs
  333. * EmfType.cs
  334. * EncoderParameterValueType.cs
  335. * EncoderValue.cs
  336. * ImageCodecFlags.cs
  337. * ImageCodecInfo.cs
  338. * ImageFlags.cs
  339. * ImageFormat.cs
  340. * ImageLockMode.cs
  341. * MetafileFrameUnit.cs
  342. * MetafileHeader.cs
  343. * MetaHeader.cs
  344. * PaletteFlags.cs
  345. * PixelFormat.cs
  346. * PlayRecordCallback.cs
  347. * PropertyItem.cs
  348. * WmfPlaceableFileHeader.cs
  349. * Added null classes for most/all classes, Many stubs, and some implmentation
  350. 2002-9-2 DennisHayes <[email protected]>
  351. * ColorPalette.cs
  352. * FrameDimension.cs
  353. * Metafile.cs
  354. * Added stubs, implmentation
  355. 2002-05-03 Mike Kestner <[email protected]>
  356. * Metafile.cs : Use System.IO. Fix exception typos.
  357. 2002-04-27 Christian Meyer <[email protected]>
  358. * Metafile.cs: Copyright now holds Ximian.
  359. 2002-04-21 Dennis Hayes <[email protected]>
  360. * corrected emum values.
  361. 2002-04-14 Christian Meyer <[email protected]>
  362. * ChangeLog: created.
  363. * Metafile.cs: Added. Wrote some ctors. No impl done, yet.