ChangeLog 17 KB

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