ChangeLog 4.1 KB

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