ChangeLog 4.4 KB

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