2
0

ChangeLog 17 KB

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