ChangeLog 6.6 KB

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