mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-17 01:46:22 +08:00
27 lines
478 B
C#
27 lines
478 B
C#
using CPF.Mac.CoreGraphics;
|
|
using CPF.Mac.Foundation;
|
|
|
|
namespace CPF.Mac.CoreImage
|
|
{
|
|
public class CIImageInitializationOptions : DictionaryContainer
|
|
{
|
|
public CGColorSpace ColorSpace
|
|
{
|
|
set
|
|
{
|
|
SetNativeValue(CIImage.CIImageColorSpaceKey, (value == null) ? null : value);
|
|
}
|
|
}
|
|
|
|
public CIImageInitializationOptions()
|
|
: base(new NSMutableDictionary())
|
|
{
|
|
}
|
|
|
|
public CIImageInitializationOptions(NSDictionary dictionary)
|
|
: base(dictionary)
|
|
{
|
|
}
|
|
}
|
|
}
|