ChangeLog 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. 2004-05-14 Vladimir Vukicevic <[email protected]>
  2. * EncoderParameters.cs: Added ToNativePtr() method to marshal
  3. struct correctly to a native struct. Resulting data should be
  4. FreeHGlobal'd when finished.
  5. * EncoderParameter.cs: Changed data storage to correspond to
  6. native code layout (so we can pass these structs directly to
  7. native code). Also changed layout to match native layout.
  8. * EncoderParameterValueType.cs: force EncoderParameterValueType to
  9. be Int32
  10. 2004-05-13 Jordi Mas i Hernadez <[email protected]>
  11. * ColorMatrix.cs:Make private data private
  12. * ColorPalette.cs: Make private data private
  13. * Encoder.cs: Make private data private
  14. * EncoderParameter.cs: Make private data private
  15. * EncoderParameters.cs: Make private data private
  16. * MetaHeader.cs: Make private data private
  17. * PropertyItem.cs: Make private data private
  18. 2004-05-04 Vladimir Vukicevic <[email protected]>
  19. * BitmapData.cs: re-synchronized with libgdiplus; also
  20. removed memory deallocs here (as the data is always owned
  21. by libgdiplus)
  22. 2004-04-28 Sanjay Gupta <[email protected]>
  23. Modified files from dos2unix format.
  24. 2004-04-27 Ravindra <[email protected]>
  25. * ImageAttributes.cs: Implemented SetWrapMode(WrapMode) method.
  26. 2004-04-27 Jordi Mas i Hernadez <[email protected]>
  27. * ImageFormat.cs: completed missimg members
  28. * ImageCodecInfo.cs: Use GDI+ calls instead of native C#
  29. 2004-04-27 Sanjay Gupta <[email protected]>
  30. * ImageFormat.cs: Implemented Equals() method.
  31. 2004-04-27 Sanjay Gupta <[email protected]>
  32. * ImageFormat.cs: Implemented ToString() method.
  33. 2004-04-06 Vladimir Vukicevic <[email protected]>
  34. * BitmapData.cs: synced up data structure with libgdiplus
  35. * BmpCodec.cs, JPEGCodec.cs, PNGCodec.cs: Removed codec impls,
  36. left just codecinfo getters; the codecs are in libgdiplus
  37. * ImageCodecInfo.cs: removed encode/decode delegates
  38. 2004-03-31 Jordi Mas i Hernadez <[email protected]>
  39. * FrameDimension.cs: added missing members
  40. 2004-03-26 Jordi Mas i Hernadez <[email protected]>
  41. * ImageAttributes.cs: added missing members and complete the wrapper
  42. 2004-03-04 Jordi Mas i Hernadez <[email protected]>
  43. * BmpCodec.cs: fixes DPI in BMP
  44. * Image.cs: gets DPI using GDI+ api
  45. 2004-03-04 Jordi Mas i Hernadez <[email protected]>
  46. * BmpCodec.cs
  47. Added support for diffent formats
  48. Fixed bugs in import and export
  49. Support for OS/2 and palettes
  50. * Image.cs
  51. Palettes
  52. 2004-03-04 Sanjay Gupta <[email protected]>
  53. * Metafile.cs: Added constructor with correct signature.
  54. 2004-03-04 Nick Drochak <[email protected]>
  55. * Metafile.cs: Fix build, remove duplicate member.
  56. 2004-03-03 Sanjay Gupta <[email protected]>
  57. *ImageAttributes.cs: Added few missing functions
  58. *Metafile.cs: Added stubs for missing constructors and functions
  59. 2004-03-03 Nick Drochak <[email protected]>
  60. * BmpCodec.cs: Remove unsed variable.
  61. 2004-02-17 Ravindra <[email protected]>
  62. * EncoderParameter.cs: Did few bug fixes and changed the file
  63. format to unix.
  64. 2004-02-13 Sanjay Gupta <[email protected]>
  65. * FrameDimension.cs: Implemented missing functionalities
  66. 2004-02-12 Ravindra <[email protected]>
  67. * EncoderParameters.cs: Implemented.
  68. * EncoderParameter.cs: Implemented.
  69. 2004-01-21 Jordi Mas i Hernàdez <[email protected]>
  70. * BmpBitmap.cs: fixed encoding and decoding problems
  71. * ImageAttributes.cs: implemented
  72. 2004-01-19 Ravindra <[email protected]>
  73. * Encoder.cs: Implemented.
  74. 2004-01-10 Ravindra <[email protected]>
  75. * All Enums: Made serializable.
  76. * ImageAttributes.cs: Implements ICloneable.
  77. * Metafile.cs: Made serializable and invisible to COM.
  78. 2003-11-13 Andreas Nahr <[email protected]>
  79. * ColorMap.cs: Implemented
  80. * ColorMatrix.cs: Implemented, Removed unneccesary members
  81. * ImageAttributes.cs: Fixed signature
  82. * ImageCodecInfo.cs: Added missing attribure, hide constructor
  83. * ImageFormat.cs: Implemented, Added attribute
  84. * MetaHeader.cs: Implemented
  85. * PropertyItem.cs: Implemented
  86. * ImageFlags.cs: Added Attribute
  87. * ImageCodecFlags.cs: Added Attribute
  88. * EmfPlusRecordType.cs: Added missing members
  89. 2003-11-12 Alexandre Pigolkine <[email protected]>
  90. * BitmapData.cs new function to convert BRG to RGB
  91. * JPEGCodec.cs convert BRG to RBG
  92. * PNGCodec.cs
  93. 2003-11-02 Alexandre Pigolkine <[email protected]>
  94. * BmpCodec.cs
  95. * ImageCodecInfo.cs
  96. * JPEGCodec.cs
  97. * PNGCodec.cs
  98. codec can select pixel format of bitmap
  99. 2003-10-23 Miguel de Icaza <[email protected]>
  100. * JPEGCodec.cs (JSAMPARRAY): Do not allocate memory here anymore,
  101. we will just have the JPEG library copy directly into our buffer.
  102. (Encode, Decode): Ported to the new model which avoid copies, and
  103. eliminates InternalImageInfo.
  104. TODO: need to port the PNG coder/decoder, and add support for RGBA
  105. images which got dropped from this version
  106. * BmpCodec.cs: Rework this one to use BitmapData and Image. Do
  107. not use the RawBytes property, instead pull the data one line at a
  108. time, and write that out.
  109. * ImageCodecInfo.cs: Make the encoding and decoding delegates take
  110. a Image parameter;
  111. * BmpCodec.cs:
  112. * BitmapData.cs: Make this one sequential, and also mimic the
  113. layout of GdiPlus.h so we can use this instead of making copies
  114. back and forth.
  115. 2003-10-12 Alexandre Pigolkine
  116. * BmpCodec.cs warning removed
  117. 2003-07-23 Alexandre Pigolkine
  118. * JPEGCodec.cs
  119. * PNGCodec.cs
  120. * BmpCodec.cs cosmetic changes
  121. 2003-07-22 Alexandre Pigolkine
  122. * ImageCodecInfo.cs
  123. * ImageFormat.cs
  124. * JPEGCodec.cs
  125. changes for PNG codec
  126. * PNGCodec.cs added
  127. 2003-07-21 Andreas Nahr <[email protected]>
  128. * Metafile.cs: Inherits from image (fix for System.Drawing.Design)
  129. 2003-06-29 Alexandre Pigolkine
  130. * BmpCodec.cs handle 32bpp images
  131. * JPEGCodec.cs small fix
  132. 2003-06-27 Alexandre Pigolkine <[email protected]>
  133. * JPEGCodec.cs encode 32 bpp images
  134. 2003-06-23 Alexandre Pigolkine <[email protected]>
  135. * JPEGCodec.cs set pixel format in InternalImageInfo
  136. 2003-06-23 Alexandre Pigolkine <[email protected]>
  137. * BmpCodec.cs pixel format check added
  138. * JPEGCodec.cs encoder implemented
  139. 2003-06-15 Alexandre Pigolkine <[email protected]>
  140. * ColorPalette.cs
  141. * ImageCodecInfo.cs
  142. * ImageFormat.cs
  143. implementation added
  144. * BmpCodec.cs
  145. * JPEGCodec.cs
  146. added
  147. 2002-9-2 DennisHayes <[email protected]>
  148. * PropertyItem.cs t
  149. * MetaHeader.cs t
  150. * MetafileHeader.cs t
  151. * Metafile.cs t
  152. * ImageFormat.cs t
  153. * ImageCodecInfo.cs t
  154. * ColorMatrix.cs t
  155. * ColorMap.cs t
  156. * WmfPlaceableFileHeader.cs t
  157. * Added todos back
  158. 2002-9-2 DennisHayes <[email protected]>
  159. * checked in for Everaldo Canuto (everaldo.canuto@bol,com.br)
  160. * BitmapData.cs
  161. * ColorAdjustType.cs
  162. * ColorChannelFlag.cs
  163. * ColorMap.cs
  164. * ColorMapType.cs
  165. * ColorMatrix.cs
  166. * ColorMatrixFlag.cs
  167. * ColorMode.cs
  168. * EmfPlusRecordType.cs
  169. * EmfType.cs
  170. * EncoderParameterValueType.cs
  171. * EncoderValue.cs
  172. * ImageCodecFlags.cs
  173. * ImageCodecInfo.cs
  174. * ImageFlags.cs
  175. * ImageFormat.cs
  176. * ImageLockMode.cs
  177. * MetafileFrameUnit.cs
  178. * MetafileHeader.cs
  179. * MetaHeader.cs
  180. * PaletteFlags.cs
  181. * PixelFormat.cs
  182. * PlayRecordCallback.cs
  183. * PropertyItem.cs
  184. * WmfPlaceableFileHeader.cs
  185. * Added null classes for most/all classes, Many stubs, and some implmentation
  186. 2002-9-2 DennisHayes <[email protected]>
  187. * ColorPalette.cs
  188. * FrameDimension.cs
  189. * Metafile.cs
  190. * Added stubs, implmentation
  191. 2002-05-03 Mike Kestner <[email protected]>
  192. * Metafile.cs : Use System.IO. Fix exception typos.
  193. 2002-04-27 Christian Meyer <[email protected]>
  194. * Metafile.cs: Copyright now holds Ximian.
  195. 2002-04-21 Dennis Hayes <[email protected]>
  196. * corrected emum values.
  197. 2002-04-14 Christian Meyer <[email protected]>
  198. * ChangeLog: created.
  199. * Metafile.cs: Added. Wrote some ctors. No impl done, yet.