| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412 |
- 2005-11-23 Vladimir Krasnov <[email protected]>
- * ImageCodec.jvm.cs: fixed ProcessOneCodec, sometime it was failed
- on parsing version of codec
- 2005-11-17 Vladimir Krasnov <[email protected]>
- * ImageCodec.jvm.cs: fixed WriteImage, removed flush
- of native output
- 2005-11-17 Raja R Harinath <[email protected]>
- * ColorMatrix.cs: Make it have Sequential layout.
- 2005-11-16 Konstantin Triger <[email protected]>
- * ImageCodec.jvm.cs: refactoring.
- 2005-11-14 Vladimir Krasnov <[email protected]>
- * ImageCodec.jvm.cs: Fixed error handling in codecs emumeration flow
- 2005-11-13 Kornél Pál <[email protected]>
- * ImageFormat.cs: Fixed ToString to use this.Equals to reflect argument
- changes to ImageFormat objects. Added Exif and Icon strings to ToString
- and reordered formats to match declaration.
- 2005-11-13 Konstantin Triger <[email protected]>
- * ImageCodec.jvm.cs: throw an exception if codec is not found.
- 2005-10-31 Jordi Mas i Hernandez <[email protected]>
- * ImageFormat.cs: Fixes ToString method
- 2005-09-27 Vladimir Krasnov <[email protected]>
- * ImageCodec.jvm.cs: implemented IDsposable,
- fixed NativeReader, NativeWriter, NativeStream
- 2005-10-20 Konstantin Triger <[email protected]>
- * Metafile.jvm.cs: implement abstact Clone
- 2005-10-04 Peter Dennis Bartok <[email protected]>
- * EncoderParameter.cs, EncoderParameters.cs: Calling GC.SuppressFinalize
- from the Dispose method; fixes bug #76329
- 2005-09-21 Vladimir Krasnov <[email protected]>
- * ImageCodec.jvm.cs: refactoring of read/write methods, members access levels
- 2005-09-14 Vladimir Krasnov <[email protected]>
- * ImageCodecInfo.jvm.cs: fixed ImageCodec namespace
- * ImageCodec.jvm.cs: refactoring of read/write methods
- 2005-09-07 Vladimir Krasnov <[email protected]>
- * ImageCodecInfo.jvm.cs: fixed GetValueFromMetadata, SetResolution
- 2005-09-07 Vladimir Krasnov <[email protected]>
- * ImageCodecInfo.jvm.cs: Refactoring
- * Added ImageCodec.jvm.cs
- 2005-08-28 Vladimir Krasnov <[email protected]>
- * ImageCodecInfo.jvm.cs: Fixed Iterate
- 2005-08-03 Andrew Skiba <[email protected]>
- * ImageCodecInfo.jvm.cs: implement via java imageio, add internal APIs for
- fast read-only requests
- * Methafile.jvm.cs: change in not implemented api to match image.jvm.cs
- 2005-08-03 Andrew Skiba <[email protected]>
- * Metafile.jvm.cs: add TARGET_JVM implementation
- 2005-08-03 Andrew Skiba <[email protected]>
- * ColorPalette.cs, FrameDimension.cs, EncoderParameters.cs: TARGET_JVM
- exclude not supported internal methods
- * EncoderParameter.jvm.cs, ImageAttributes.jvm.cs, ImageFormat.jvm.cs,
- ImageCodecInfo.jvm.cs: added TARGET_JVM implementation of these classes
- 2005-03-23 Jordi Mas i Hernandez <[email protected]>
- * ColorPalette.cs: fixes ColorPalette marshaling
- 2004-03-21 Jordi Mas i Hernadez <[email protected]>
- * ColorMatrix.cs: fixes Matrix00 init
- * ImageAttributes.cs: fixes dispose method and signature
- 2004-02-25 Jordi Mas i Hernadez <[email protected]>
- * ColorMatrix.cs: rewritten to be able to marshall it properly
-
- 2004-12-27 Zoltan Varga <[email protected]>
- * ImageCodecInfo.cs: Fix marshalling of arrays on amd64.
- 2004-11-25 Marek Safar <[email protected]>
- * ColorPalette.cs: Add CheckStatus to GetAdjustedPalette.
- 2004-11-03 Miguel de Icaza <[email protected]>
- * ColorPalette.cs: Add internal Clone method
- 2004-10-08 Ravindra <[email protected]>
- * BitmapData.cs: Synchronized the class with BitmapData struct
- in libgdiplus.
- 2004-06-13 Gert Driesen <[email protected]>
-
- * EmfPlusRecordType.cs: fixed mismatches in enum field values
- 2004-05-18 Jordi Mas i Hernadez <[email protected]>
- * ImageAttributes.cs: SetBrushRemapTable and SetRemapTable were
- passing bad parameters to GDI+ causing them not to work
- 2004-05-16 Gert Driesen ([email protected])
- * EncoderParameterValueType.cs: fix Windows build (CSC),
- MCS bug #58571
- * EncoderParameter.cs: removed ctors taking int value,
- to fix public API
- 2004-05-14 Vladimir Vukicevic <[email protected]>
- * EncoderParameters.cs: Added ToNativePtr() method to marshal
- struct correctly to a native struct. Resulting data should be
- FreeHGlobal'd when finished.
- * EncoderParameter.cs: Changed data storage to correspond to
- native code layout (so we can pass these structs directly to
- native code). Also changed layout to match native layout.
- * EncoderParameterValueType.cs: force EncoderParameterValueType to
- be Int32
- 2004-05-13 Jordi Mas i Hernadez <[email protected]>
- * ColorMatrix.cs:Make private data private
- * ColorPalette.cs: Make private data private
- * Encoder.cs: Make private data private
- * EncoderParameter.cs: Make private data private
- * EncoderParameters.cs: Make private data private
- * MetaHeader.cs: Make private data private
- * PropertyItem.cs: Make private data private
- 2004-05-04 Vladimir Vukicevic <[email protected]>
- * BitmapData.cs: re-synchronized with libgdiplus; also
- removed memory deallocs here (as the data is always owned
- by libgdiplus)
- 2004-04-28 Sanjay Gupta <[email protected]>
-
- Modified files from dos2unix format.
- 2004-04-27 Ravindra <[email protected]>
- * ImageAttributes.cs: Implemented SetWrapMode(WrapMode) method.
- 2004-04-27 Jordi Mas i Hernadez <[email protected]>
- * ImageFormat.cs: completed missimg members
- * ImageCodecInfo.cs: Use GDI+ calls instead of native C#
- 2004-04-27 Sanjay Gupta <[email protected]>
- * ImageFormat.cs: Implemented Equals() method.
- 2004-04-27 Sanjay Gupta <[email protected]>
- * ImageFormat.cs: Implemented ToString() method.
- 2004-04-06 Vladimir Vukicevic <[email protected]>
- * BitmapData.cs: synced up data structure with libgdiplus
- * BmpCodec.cs, JPEGCodec.cs, PNGCodec.cs: Removed codec impls,
- left just codecinfo getters; the codecs are in libgdiplus
- * ImageCodecInfo.cs: removed encode/decode delegates
-
- 2004-03-31 Jordi Mas i Hernadez <[email protected]>
- * FrameDimension.cs: added missing members
-
- 2004-03-26 Jordi Mas i Hernadez <[email protected]>
- * ImageAttributes.cs: added missing members and complete the wrapper
- 2004-03-04 Jordi Mas i Hernadez <[email protected]>
- * BmpCodec.cs: fixes DPI in BMP
- * Image.cs: gets DPI using GDI+ api
- 2004-03-04 Jordi Mas i Hernadez <[email protected]>
- * BmpCodec.cs
- Added support for diffent formats
- Fixed bugs in import and export
- Support for OS/2 and palettes
- * Image.cs
- Palettes
- 2004-03-04 Sanjay Gupta <[email protected]>
- * Metafile.cs: Added constructor with correct signature.
- 2004-03-04 Nick Drochak <[email protected]>
- * Metafile.cs: Fix build, remove duplicate member.
- 2004-03-03 Sanjay Gupta <[email protected]>
- *ImageAttributes.cs: Added few missing functions
- *Metafile.cs: Added stubs for missing constructors and functions
- 2004-03-03 Nick Drochak <[email protected]>
- * BmpCodec.cs: Remove unsed variable.
- 2004-02-17 Ravindra <[email protected]>
- * EncoderParameter.cs: Did few bug fixes and changed the file
- format to unix.
- 2004-02-13 Sanjay Gupta <[email protected]>
- * FrameDimension.cs: Implemented missing functionalities
- 2004-02-12 Ravindra <[email protected]>
- * EncoderParameters.cs: Implemented.
- * EncoderParameter.cs: Implemented.
- 2004-01-21 Jordi Mas i Hernàdez <[email protected]>
- * BmpBitmap.cs: fixed encoding and decoding problems
- * ImageAttributes.cs: implemented
- 2004-01-19 Ravindra <[email protected]>
- * Encoder.cs: Implemented.
- 2004-01-10 Ravindra <[email protected]>
- * All Enums: Made serializable.
- * ImageAttributes.cs: Implements ICloneable.
- * Metafile.cs: Made serializable and invisible to COM.
- 2003-11-13 Andreas Nahr <[email protected]>
- * ColorMap.cs: Implemented
- * ColorMatrix.cs: Implemented, Removed unneccesary members
- * ImageAttributes.cs: Fixed signature
- * ImageCodecInfo.cs: Added missing attribure, hide constructor
- * ImageFormat.cs: Implemented, Added attribute
- * MetaHeader.cs: Implemented
- * PropertyItem.cs: Implemented
- * ImageFlags.cs: Added Attribute
- * ImageCodecFlags.cs: Added Attribute
- * EmfPlusRecordType.cs: Added missing members
- 2003-11-12 Alexandre Pigolkine <[email protected]>
- * BitmapData.cs new function to convert BRG to RGB
- * JPEGCodec.cs convert BRG to RBG
- * PNGCodec.cs
-
-
- 2003-11-02 Alexandre Pigolkine <[email protected]>
- * BmpCodec.cs
- * ImageCodecInfo.cs
- * JPEGCodec.cs
- * PNGCodec.cs
- codec can select pixel format of bitmap
-
- 2003-10-23 Miguel de Icaza <[email protected]>
- * JPEGCodec.cs (JSAMPARRAY): Do not allocate memory here anymore,
- we will just have the JPEG library copy directly into our buffer.
- (Encode, Decode): Ported to the new model which avoid copies, and
- eliminates InternalImageInfo.
- TODO: need to port the PNG coder/decoder, and add support for RGBA
- images which got dropped from this version
- * BmpCodec.cs: Rework this one to use BitmapData and Image. Do
- not use the RawBytes property, instead pull the data one line at a
- time, and write that out.
- * ImageCodecInfo.cs: Make the encoding and decoding delegates take
- a Image parameter;
-
- * BmpCodec.cs:
- * BitmapData.cs: Make this one sequential, and also mimic the
- layout of GdiPlus.h so we can use this instead of making copies
- back and forth.
- 2003-10-12 Alexandre Pigolkine
- * BmpCodec.cs warning removed
- 2003-07-23 Alexandre Pigolkine
- * JPEGCodec.cs
- * PNGCodec.cs
- * BmpCodec.cs cosmetic changes
- 2003-07-22 Alexandre Pigolkine
- * ImageCodecInfo.cs
- * ImageFormat.cs
- * JPEGCodec.cs
- changes for PNG codec
-
- * PNGCodec.cs added
-
- 2003-07-21 Andreas Nahr <[email protected]>
- * Metafile.cs: Inherits from image (fix for System.Drawing.Design)
- 2003-06-29 Alexandre Pigolkine
- * BmpCodec.cs handle 32bpp images
- * JPEGCodec.cs small fix
- 2003-06-27 Alexandre Pigolkine <[email protected]>
- * JPEGCodec.cs encode 32 bpp images
- 2003-06-23 Alexandre Pigolkine <[email protected]>
- * JPEGCodec.cs set pixel format in InternalImageInfo
-
- 2003-06-23 Alexandre Pigolkine <[email protected]>
- * BmpCodec.cs pixel format check added
- * JPEGCodec.cs encoder implemented
- 2003-06-15 Alexandre Pigolkine <[email protected]>
- * ColorPalette.cs
- * ImageCodecInfo.cs
- * ImageFormat.cs
- implementation added
-
- * BmpCodec.cs
- * JPEGCodec.cs
- added
-
- 2002-9-2 DennisHayes <[email protected]>
- * PropertyItem.cs t
- * MetaHeader.cs t
- * MetafileHeader.cs t
- * Metafile.cs t
- * ImageFormat.cs t
- * ImageCodecInfo.cs t
- * ColorMatrix.cs t
- * ColorMap.cs t
- * WmfPlaceableFileHeader.cs t
- * Added todos back
- 2002-9-2 DennisHayes <[email protected]>
- * checked in for Everaldo Canuto (everaldo.canuto@bol,com.br)
- * BitmapData.cs
- * ColorAdjustType.cs
- * ColorChannelFlag.cs
- * ColorMap.cs
- * ColorMapType.cs
- * ColorMatrix.cs
- * ColorMatrixFlag.cs
- * ColorMode.cs
- * EmfPlusRecordType.cs
- * EmfType.cs
- * EncoderParameterValueType.cs
- * EncoderValue.cs
- * ImageCodecFlags.cs
- * ImageCodecInfo.cs
- * ImageFlags.cs
- * ImageFormat.cs
- * ImageLockMode.cs
- * MetafileFrameUnit.cs
- * MetafileHeader.cs
- * MetaHeader.cs
- * PaletteFlags.cs
- * PixelFormat.cs
- * PlayRecordCallback.cs
- * PropertyItem.cs
- * WmfPlaceableFileHeader.cs
- * Added null classes for most/all classes, Many stubs, and some implmentation
- 2002-9-2 DennisHayes <[email protected]>
- * ColorPalette.cs
- * FrameDimension.cs
- * Metafile.cs
- * Added stubs, implmentation
- 2002-05-03 Mike Kestner <[email protected]>
- * Metafile.cs : Use System.IO. Fix exception typos.
- 2002-04-27 Christian Meyer <[email protected]>
- * Metafile.cs: Copyright now holds Ximian.
- 2002-04-21 Dennis Hayes <[email protected]>
- * corrected emum values.
- 2002-04-14 Christian Meyer <[email protected]>
- * ChangeLog: created.
- * Metafile.cs: Added. Wrote some ctors. No impl done, yet.
|