ChangeLog 15 KB

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