1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
|
//
// System.Drawing.Imaging.ImageAttributes.cs
//
// Authors:
// Dennis Hayes (dennish@raytek.com) (stubbed out)
// Jordi Mas i Hernàndez (jmas@softcatala.org)
// Sanjay Gupta (gsanjay@novell.com)
// Sebastien Pouliot <sebastien@ximian.com>
//
// (C) 2002-4 Ximian, Inc. http://www.ximian.com
// Copyright (C) 2004, 2006 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.Drawing.Drawing2D;
using System.Runtime.InteropServices;
namespace System.Drawing.Imaging {
[StructLayout(LayoutKind.Sequential)]
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,
IntPtr.Zero, IntPtr.Zero, 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)
{
SetColorKey (colorLow, colorHigh, ColorAdjustType.Default);
}
public void SetColorMatrix (ColorMatrix colorMatrix)
{
IntPtr cm = ColorMatrix.Alloc (colorMatrix);
try {
Status status = GDIPlus.GdipSetImageAttributesColorMatrix (nativeImageAttr,
ColorAdjustType.Default, true, cm, IntPtr.Zero, ColorMatrixFlag.Default);
GDIPlus.CheckStatus (status);
}
finally {
ColorMatrix.Free (cm);
}
}
[MonoTODO ("colorMatrixFlag parameter is ignored in libgdiplus")]
public void SetColorMatrix (ColorMatrix colorMatrix, ColorMatrixFlag colorMatrixFlag)
{
IntPtr cm = ColorMatrix.Alloc (colorMatrix);
try {
Status status = GDIPlus.GdipSetImageAttributesColorMatrix (nativeImageAttr,
ColorAdjustType.Default, true, cm, IntPtr.Zero, colorMatrixFlag);
GDIPlus.CheckStatus (status);
}
finally {
ColorMatrix.Free (cm);
}
}
[MonoTODO ("colorMatrixFlag parameter is ignored in libgdiplus")]
public void SetColorMatrix (ColorMatrix colorMatrix, ColorMatrixFlag colorMatrixFlag, ColorAdjustType colorAdjustType)
{
IntPtr cm = ColorMatrix.Alloc (colorMatrix);
try {
Status status = GDIPlus.GdipSetImageAttributesColorMatrix (nativeImageAttr,
colorAdjustType, true, cm, IntPtr.Zero, colorMatrixFlag);
GDIPlus.CheckStatus (status);
}
finally {
ColorMatrix.Free (cm);
}
}
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);
try {
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.ToInt64() + mapsize);
}
Status status = GDIPlus.GdipSetImageAttributesRemapTable (nativeImageAttr,
ColorAdjustType.Brush, true, (uint) map.Length, clrmap);
GDIPlus.CheckStatus (status);
}
finally {
Marshal.FreeHGlobal (clrmap);
}
}
public void SetColorKey(Color colorLow, Color colorHigh, ColorAdjustType type)
{
Status status = GDIPlus.GdipSetImageAttributesColorKeys (nativeImageAttr,
type, true, colorLow.ToArgb (), colorHigh.ToArgb ());
GDIPlus.CheckStatus (status);
}
[MonoTODO ("grayMatrix parameter is ignored in libgdiplus")]
public void SetColorMatrices (ColorMatrix newColorMatrix, ColorMatrix grayMatrix)
{
IntPtr cm = ColorMatrix.Alloc (newColorMatrix);
try {
IntPtr gm = ColorMatrix.Alloc (grayMatrix);
try {
Status status = GDIPlus.GdipSetImageAttributesColorMatrix (nativeImageAttr,
ColorAdjustType.Default, true, cm, gm, ColorMatrixFlag.Default);
GDIPlus.CheckStatus (status);
}
finally {
ColorMatrix.Free (gm);
}
}
finally {
ColorMatrix.Free (cm);
}
}
[MonoTODO ("grayMatrix and colorMatrixFlag parameters are ignored in libgdiplus")]
public void SetColorMatrices (ColorMatrix newColorMatrix, ColorMatrix grayMatrix, ColorMatrixFlag flags)
{
IntPtr cm = ColorMatrix.Alloc (newColorMatrix);
try {
IntPtr gm = ColorMatrix.Alloc (grayMatrix);
try {
Status status = GDIPlus.GdipSetImageAttributesColorMatrix (nativeImageAttr,
ColorAdjustType.Default, true, cm, gm, flags);
GDIPlus.CheckStatus (status);
}
finally {
ColorMatrix.Free (gm);
}
}
finally {
ColorMatrix.Free (cm);
}
}
[MonoTODO ("grayMatrix and colorMatrixFlag parameters are ignored in libgdiplus")]
public void SetColorMatrices (ColorMatrix newColorMatrix, ColorMatrix grayMatrix, ColorMatrixFlag mode, ColorAdjustType type)
{
IntPtr cm = ColorMatrix.Alloc (newColorMatrix);
try {
IntPtr gm = ColorMatrix.Alloc (grayMatrix);
try {
Status status = GDIPlus.GdipSetImageAttributesColorMatrix (nativeImageAttr,
ColorAdjustType.Default, true, cm, gm, mode);
GDIPlus.CheckStatus (status);
}
finally {
ColorMatrix.Free (gm);
}
}
finally {
ColorMatrix.Free (cm);
}
}
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);
try {
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.ToInt64() + mapsize);
}
Status status = GDIPlus.GdipSetImageAttributesRemapTable (nativeImageAttr,
type, true, (uint) map.Length, clrmap);
GDIPlus.CheckStatus (status);
}
finally {
Marshal.FreeHGlobal (clrmap);
}
}
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);
}
}
}
|