| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432 |
- //
- // System.Drawing.Imaging.ImageAttributes.cs
- //
- // Author:
- // Dennis Hayes ([email protected]) (stubbed out)
- // Jordi Mas i Hernàndez ([email protected])
- // Sanjay Gupta ([email protected])
- //
- // (C) 2002-4 Ximian, Inc. http://www.ximian.com
- //
- //
- // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- using System.Runtime.InteropServices;
- namespace System.Drawing.Imaging
- {
- /// <summary>
- /// Summary description for ImageAttributes.
- /// </summary>
- public sealed class ImageAttributes : ICloneable, IDisposable {
-
- private IntPtr nativeImageAttr = IntPtr.Zero;
-
- internal IntPtr NativeObject{
- get{
- return nativeImageAttr;
- }
- }
-
- internal ImageAttributes(IntPtr native)
- {
- nativeImageAttr = native;
- }
-
- public ImageAttributes() {
-
- Status status = GDIPlus.GdipCreateImageAttributes(out nativeImageAttr);
-
- if (status != Status.Ok)
- throw new Exception ("Error calling GDIPlus.GdipCreateImageAttributes:" +status);
-
- }
- public void ClearBrushRemapTable()
- {
- ClearRemapTable (ColorAdjustType.Brush);
- }
- //Clears the color keys for all GDI+ objects
- public void ClearColorKey()
- {
- ClearColorKey (ColorAdjustType.Default);
- }
- public void ClearColorKey(ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesColorKeys (nativeImageAttr,
- type, false, 0, 0);
-
- GDIPlus.CheckStatus (status);
- }
- public void ClearColorMatrix()
- {
- ClearColorMatrix (ColorAdjustType.Default);
- }
-
- public void ClearColorMatrix(ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesColorMatrix (nativeImageAttr,
- type, false, null, null, ColorMatrixFlag.Default);
-
- GDIPlus.CheckStatus (status);
- }
-
- public void ClearGamma()
- {
- ClearGamma (ColorAdjustType.Default);
- }
-
- public void ClearGamma(ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesGamma (nativeImageAttr, type, false, 0);
-
- GDIPlus.CheckStatus (status);
- }
-
- public void ClearNoOp()
- {
- ClearNoOp (ColorAdjustType.Default);
- }
-
- public void ClearNoOp(ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesNoOp (nativeImageAttr, type, false);
-
- GDIPlus.CheckStatus (status);
- }
- public void ClearOutputChannel()
- {
- ClearOutputChannel (ColorAdjustType.Default);
- }
-
- public void ClearOutputChannel(ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesOutputChannel (nativeImageAttr,
- type, false, ColorChannelFlag.ColorChannelLast);
-
- GDIPlus.CheckStatus (status);
- }
- public void ClearOutputChannelColorProfile()
- {
- ClearOutputChannelColorProfile (ColorAdjustType.Default);
- }
-
- public void ClearOutputChannelColorProfile(ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesOutputChannelColorProfile (nativeImageAttr,
- type, false, null);
-
- GDIPlus.CheckStatus (status);
- }
- public void ClearRemapTable()
- {
- ClearRemapTable (ColorAdjustType.Default);
- }
-
- public void ClearRemapTable(ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesRemapTable (nativeImageAttr,
- type, false, 0, IntPtr.Zero);
-
- GDIPlus.CheckStatus (status);
- }
- public void ClearThreshold()
- {
- ClearThreshold (ColorAdjustType.Default);
- }
-
- public void ClearThreshold(ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesThreshold (nativeImageAttr,
- type, false, 0);
-
- GDIPlus.CheckStatus (status);
- }
- //Sets the color keys for all GDI+ objects
- public void SetColorKey(Color colorLow, Color colorHigh)
- {
-
- Status status = GDIPlus.GdipSetImageAttributesColorKeys(nativeImageAttr,
- ColorAdjustType.Default, true, colorLow.ToArgb(), colorHigh.ToArgb());
- if (status != Status.Ok)
- throw new Exception ("Error calling GDIPlus.GdipSetImageAttributesColorKeys:" +status);
- }
- public void SetColorMatrix(ColorMatrix colorMatrix)
- {
-
- Status status = GDIPlus.GdipSetImageAttributesColorMatrix(nativeImageAttr, ColorAdjustType.Default,
- true, colorMatrix, (ColorMatrix)null, ColorMatrixFlag.Default);
-
- if (status != Status.Ok)
- throw new Exception ("Error calling GDIPlus.SetColorMatrix:" +status);
- }
- public void SetColorMatrix(ColorMatrix colorMatrix, ColorMatrixFlag colorMatrixFlag)
- {
-
- Status status = GDIPlus.GdipSetImageAttributesColorMatrix(nativeImageAttr, ColorAdjustType.Default,
- true, colorMatrix, (ColorMatrix)null, colorMatrixFlag);
- if (status != Status.Ok)
- throw new Exception ("Error calling GDIPlus.SetColorMatrix:" +status);
-
- }
- public void SetColorMatrix(ColorMatrix colorMatrix, ColorMatrixFlag colorMatrixFlag, ColorAdjustType colorAdjustType) {
-
- Status status = GDIPlus.GdipSetImageAttributesColorMatrix(nativeImageAttr,colorAdjustType,
- true, colorMatrix, (ColorMatrix)null, colorMatrixFlag);
-
- if (status != Status.Ok)
- throw new Exception ("Error calling GDIPlus.SetColorMatrix:" +status);
- }
-
- public void Dispose()
- {
- if (nativeImageAttr != IntPtr.Zero) {
-
- Status status = GDIPlus.GdipDisposeImageAttributes(nativeImageAttr);
- GDIPlus.CheckStatus (status);
- nativeImageAttr = IntPtr.Zero;
- }
-
- System.GC.SuppressFinalize (this);
- }
- ~ImageAttributes()
- {
- Dispose ();
- }
-
- public object Clone()
- {
- IntPtr imgclone;
-
- Status status = GDIPlus.GdipCloneImageAttributes (nativeImageAttr, out imgclone);
- GDIPlus.CheckStatus (status);
-
- return new ImageAttributes (imgclone);
- }
-
- public void GetAdjustedPalette(ColorPalette palette, ColorAdjustType type)
- {
- IntPtr colorPalette;
-
- Status status = GDIPlus.GdipGetImageAttributesAdjustedPalette (nativeImageAttr,
- out colorPalette, type);
-
- palette.setFromGDIPalette (colorPalette);
- GDIPlus.CheckStatus (status);
- }
-
- public void SetBrushRemapTable(ColorMap[] map)
- {
- GdiColorMap gdiclr = new GdiColorMap ();
- IntPtr clrmap, lpPointer;
- int mapsize = Marshal.SizeOf (gdiclr);
- int size = mapsize * map.Length;
- clrmap = lpPointer = Marshal.AllocHGlobal (size);
-
- for (int i=0; i < map.Length; i++)
- {
- gdiclr.from = map[i].OldColor.ToArgb();
- gdiclr.to = map[i].NewColor.ToArgb();
-
- Marshal.StructureToPtr (gdiclr, lpPointer, false);
- lpPointer = (IntPtr) (lpPointer.ToInt32() + mapsize);
- }
-
- Status status = GDIPlus.GdipSetImageAttributesRemapTable (nativeImageAttr,
- ColorAdjustType.Brush, true, (uint) map.Length, clrmap);
-
- Marshal.FreeHGlobal (clrmap);
-
- GDIPlus.CheckStatus (status);
- }
-
-
- public void SetColorKey(Color colorLow, Color colorHigh, ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesColorKeys (nativeImageAttr,
- type, true, colorLow.ToArgb (), colorHigh.ToArgb ());
-
- GDIPlus.CheckStatus (status);
- }
-
-
- public void SetColorMatrices(ColorMatrix newColorMatrix, ColorMatrix grayMatrix)
- {
- Status status = GDIPlus.GdipSetImageAttributesColorMatrix (nativeImageAttr,
- ColorAdjustType.Default, true, newColorMatrix, grayMatrix, ColorMatrixFlag.Default);
-
- GDIPlus.CheckStatus (status);
- }
-
- public void SetColorMatrices(ColorMatrix newColorMatrix, ColorMatrix grayMatrix, ColorMatrixFlag flags)
- {
- Status status = GDIPlus.GdipSetImageAttributesColorMatrix (nativeImageAttr,
- ColorAdjustType.Default, true, newColorMatrix, grayMatrix, flags);
-
- GDIPlus.CheckStatus (status);
- }
-
- public void SetColorMatrices(ColorMatrix newColorMatrix, ColorMatrix grayMatrix, ColorMatrixFlag mode, ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesColorMatrix (nativeImageAttr,
- ColorAdjustType.Default, true, newColorMatrix, grayMatrix, mode);
-
- GDIPlus.CheckStatus (status);
- }
- public void SetGamma(float gamma)
- {
- SetGamma (gamma, ColorAdjustType.Default);
- }
-
- public void SetGamma(float gamma, ColorAdjustType coloradjust)
- {
- Status status = GDIPlus.GdipSetImageAttributesGamma (nativeImageAttr, coloradjust, true,
- gamma);
-
- GDIPlus.CheckStatus (status);
- }
-
- public void SetNoOp()
- {
- SetNoOp (ColorAdjustType.Default);
- }
-
- public void SetNoOp(ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesNoOp (nativeImageAttr,
- type, true);
-
- GDIPlus.CheckStatus (status);
- }
-
- public void SetOutputChannel(ColorChannelFlag flags)
- {
- SetOutputChannel (flags, ColorAdjustType.Default);
- }
-
- public void SetOutputChannel(ColorChannelFlag flags, ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesOutputChannel (nativeImageAttr,
- type, true, flags);
-
- GDIPlus.CheckStatus (status);
- }
-
- public void SetOutputChannelColorProfile(string colorProfileFilename)
- {
- SetOutputChannelColorProfile (colorProfileFilename, ColorAdjustType.Default);
- }
-
- public void SetOutputChannelColorProfile(string colorProfileFilename, ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesOutputChannelColorProfile (nativeImageAttr,
- type, true, colorProfileFilename);
-
- GDIPlus.CheckStatus (status);
- }
-
- public void SetRemapTable(ColorMap[] map)
- {
- SetRemapTable (map, ColorAdjustType.Default);
- }
-
- public void SetRemapTable(ColorMap[] map, ColorAdjustType type)
- {
- GdiColorMap gdiclr = new GdiColorMap ();
- IntPtr clrmap, lpPointer;
- int mapsize = Marshal.SizeOf (gdiclr);
- int size = mapsize * map.Length;
- clrmap = lpPointer = Marshal.AllocHGlobal (size);
-
- for (int i=0; i < map.Length; i++)
- {
- gdiclr.from = map[i].OldColor.ToArgb();
- gdiclr.to = map[i].NewColor.ToArgb();
-
- Marshal.StructureToPtr (gdiclr, lpPointer, false);
- lpPointer = (IntPtr) (lpPointer.ToInt32() + mapsize);
- }
-
- Status status = GDIPlus.GdipSetImageAttributesRemapTable (nativeImageAttr,
- type, true, (uint) map.Length, clrmap);
-
- Marshal.FreeHGlobal (clrmap);
-
- GDIPlus.CheckStatus (status);
-
- }
-
- public void SetThreshold(float threshold)
- {
- SetThreshold (threshold, ColorAdjustType.Default);
- }
-
- public void SetThreshold(float threshold, ColorAdjustType type)
- {
- Status status = GDIPlus.GdipSetImageAttributesThreshold (nativeImageAttr,
- type, true, 0);
-
- GDIPlus.CheckStatus (status);
- }
- public void SetWrapMode(WrapMode mode)
- {
- SetWrapMode (mode, Color.Black);
- }
-
-
- public void SetWrapMode(WrapMode mode, Color color)
- {
- SetWrapMode (mode, color, false);
- }
-
-
- public void SetWrapMode(WrapMode mode, Color color, bool clamp)
- {
- Status status = GDIPlus.GdipSetImageAttributesWrapMode (nativeImageAttr, mode,
- color.ToArgb(), clamp);
-
- GDIPlus.CheckStatus (status);
- }
-
- }
- }
|