ChangeLog 15 KB

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