mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-17 01:46:22 +08:00
42 lines
516 B
C#
42 lines
516 B
C#
using System;
|
|
|
|
namespace CPF.Mac.CoreImage
|
|
{
|
|
public class CIWhitePointAdjust : CIFilter
|
|
{
|
|
public CIImage Image
|
|
{
|
|
get
|
|
{
|
|
return GetInputImage();
|
|
}
|
|
set
|
|
{
|
|
SetInputImage(value);
|
|
}
|
|
}
|
|
|
|
public CIColor Color
|
|
{
|
|
get
|
|
{
|
|
return GetColor("inputColor");
|
|
}
|
|
set
|
|
{
|
|
SetValue("inputColor", value);
|
|
}
|
|
}
|
|
|
|
public CIWhitePointAdjust()
|
|
: base(CIFilter.CreateFilter("CIWhitePointAdjust"))
|
|
{
|
|
}
|
|
|
|
public CIWhitePointAdjust(IntPtr handle)
|
|
: base(handle)
|
|
{
|
|
}
|
|
}
|
|
}
|