ChangeLog 5.5 KB

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