ChangeLog 18 KB

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