ChangeLog 3.6 KB

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