CIQRCodeGenerator 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
生成 QR 码。
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 9, ObjCRuntime.PlatformArchitecture.All, null)]
public class CIQRCodeGenerator : CoreImage.CICodeGenerator
type CIQRCodeGenerator = class
inherit CICodeGenerator
- 继承
- 属性
注解
以下示例显示此筛选器正在使用中
// Create a CIQRCodeGenerator filter with the input image
var qr_code_generator = new CIQRCodeGenerator ()
{
Message = NSData.FromString ("https://xamarin.com"),
CorrectionLevel = "M",
};
// Get the altered image from the filter
var output = new CILanczosScaleTransform {
Image = qr_code_generator.OutputImage,
Scale = 4
}.OutputImage;
// To render the results, we need to create a context, and then
// use one of the context rendering APIs, in this case, we render the
// result into a CoreGraphics image, which is merely a useful representation
//
var context = CIContext.FromOptions (null);
var cgimage = context.CreateCGImage (output, output.Extent);
// The above cgimage can be added to a screen view, for example, this
// would add it to a UIImageView on the screen:
myImageView.Image = UIImage.FromImage (cgimage);
生成以下输出:
构造函数
CIQRCodeGenerator() |
使用默认值创建新的 CIQRCodeGenerator。 |
CIQRCodeGenerator(IntPtr) |
创建非托管对象的托管表示形式时使用的构造函数;由运行时调用。 |
CIQRCodeGenerator(NSCoder) |
从 unarchiver 对象中存储的数据初始化 对象的构造函数。 |
CIQRCodeGenerator(NSObjectFlag) |
用于调用派生类的构造函数,以跳过初始化并仅分配 对象。 |
属性
Attributes |
筛选器的可配置属性。 (继承自 CIFilter) |
Class |
生成 QR 码。 (继承自 NSObject) |
ClassHandle |
此类的句柄。 (继承自 CIFilter) |
CorrectionLevel |
获取或设置错误更正级别。 |
DebugDescription |
此对象的开发人员有意义的说明。 (继承自 NSObject) |
Description |
对象的说明,即 ToString 的 Objective-C 版本。 (继承自 NSObject) |
Handle |
处理指向非托管对象表示形式的 (指针) 。 (继承自 NSObject) |
Image |
获取或设置要筛选的图像。 (继承自 CIFilter) |
InputKeys |
获取一个数组,该数组包含筛选器的输入键的名称。 (继承自 CIFilter) |
IsDirectBinding |
生成 QR 码。 (继承自 NSObject) |
IsProxy |
生成 QR 码。 (继承自 NSObject) |
Item[NSString] |
获取由 |
Message |
获取或设置要编码的消息。 (继承自 CICodeGenerator) |
Name |
获取筛选器名称。 (继承自 CIFilter) |
OutputImage |
获取将筛选器应用于 Image后产生的图像。 (继承自 CIFilter) |
OutputKeys |
获取一个数组,其中包含筛选器的输出键的名称。 (继承自 CIFilter) |
RetainCount |
返回对象的当前 Objective-C 保留计数。 (继承自 NSObject) |
Self |
生成 QR 码。 (继承自 NSObject) |
Superclass |
生成 QR 码。 (继承自 NSObject) |
SuperHandle |
用于表示此 NSObject 基类中方法的句柄。 (继承自 NSObject) |
Zone |
生成 QR 码。 (继承自 NSObject) |