ChangeLog 4.2 KB

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