| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // System.Drawing.Imaging.ImageAttributes.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- using System.Drawing;
- namespace System.Drawing.Imaging
- {
- /// <summary>
- /// Summary description for ImageAttributes.
- /// </summary>
- public sealed class ImageAttributes : ICloneable, IDisposable {
- public ImageAttributes() {
- }
- //Clears the color keys for all GDI+ objects
- public void ClearColorKey(){
- }
- //Sets the color keys for all GDI+ objects
- public void SetColorKey(Color colorLow, Color colorHigh){
- }
- public void SetColorMatrix(ColorMatrix colorMatrix) {
- throw new NotImplementedException();
- }
- public void SetColorMatrix(ColorMatrix colorMatrix, ColorMatrixFlag colorMatrixFlag) {
- throw new NotImplementedException();
- }
- public void SetColorMatrix(ColorMatrix colorMatrix, ColorMatrixFlag colorMatrixFlag, ColorAdjustType colorAdjustType) {
- throw new NotImplementedException();
- }
- public void Dispose() {
- }
- ~ImageAttributes() {
- }
- [MonoTODO]
- object ICloneable.Clone()
- {
- throw new NotImplementedException ();
- }
- }
- }
|