ChangeLog 5.7 KB

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