Condividi tramite


CIQRCodeGenerator Classe

Definizione

Genera un codice a matrice.

[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
Ereditarietà
Attributi

Commenti

Nell'esempio seguente viene illustrato questo filtro in uso

// 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);

Produce l'output seguente:

Costruttori

CIQRCodeGenerator()

Crea un nuovo CIQRCodeGenerator con valori predefiniti.

CIQRCodeGenerator(IntPtr)

Costruttore utilizzato durante la creazione di rappresentazioni gestite di oggetti non gestiti; Chiamato dal runtime.

CIQRCodeGenerator(NSCoder)

Costruttore che inizializza l'oggetto dai dati archiviati nell'oggetto unarchiver.

CIQRCodeGenerator(NSObjectFlag)

Costruttore da chiamare sulle classi derivate per ignorare l'inizializzazione e allocare semplicemente l'oggetto.

Proprietà

Attributes

Attributi configurabili del filtro.

(Ereditato da CIFilter)
Class

Genera un codice a matrice.

(Ereditato da NSObject)
ClassHandle

Handle per questa classe.

(Ereditato da CIFilter)
CorrectionLevel

Ottiene o imposta il livello di correzione degli errori.

DebugDescription

Descrizione significativa dello sviluppatore di questo oggetto.

(Ereditato da NSObject)
Description

Descrizione dell'oggetto, versione Objective-C di ToString.

(Ereditato da NSObject)
Handle

Handle (puntatore) alla rappresentazione dell'oggetto non gestito.

(Ereditato da NSObject)
Image

Ottiene o imposta un'immagine da filtrare.

(Ereditato da CIFilter)
InputKeys

Ottiene una matrice che contiene i nomi delle chiavi di input per il filtro.

(Ereditato da CIFilter)
IsDirectBinding

Genera un codice a matrice.

(Ereditato da NSObject)
IsProxy

Genera un codice a matrice.

(Ereditato da NSObject)
Item[NSString]

Ottiene il valore identificato da key.

(Ereditato da CIFilter)
Message

Ottiene o imposta il messaggio da codificare.

(Ereditato da CICodeGenerator)
Name

Ottiene il nome del filtro.

(Ereditato da CIFilter)
OutputImage

Ottiene l'immagine risultante dall'applicazione del filtro a Image.

(Ereditato da CIFilter)
OutputKeys

Ottiene una matrice che contiene i nomi delle chiavi di output per il filtro.

(Ereditato da CIFilter)
RetainCount

Restituisce il conteggio di mantenimento objective-C corrente per l'oggetto .

(Ereditato da NSObject)
Self

Genera un codice a matrice.

(Ereditato da NSObject)
Superclass

Genera un codice a matrice.

(Ereditato da NSObject)
SuperHandle

Handle utilizzato per rappresentare i metodi nella classe di base per questo NSObject.

(Ereditato da NSObject)
Zone

Genera un codice a matrice.

(Ereditato da NSObject)

Metodi

AddObserver(NSObject, NSString, NSKeyValueObservingOptions, IntPtr)

Registra un oggetto per essere osservato esternamente (usando NSString keyPath).   Le modifiche osservate vengono inviate al metodo dell'oggetto ObserveValue(NSString, NSObject, NSDictionary, IntPtr) dell'osservatore.

(Ereditato da NSObject)
AddObserver(NSObject, String, NSKeyValueObservingOptions, IntPtr)

Registra un oggetto per essere osservato esternamente (usando string keyPath).   Le modifiche osservate vengono inviate al metodo dell'oggetto ObserveValue(NSString, NSObject, NSDictionary, IntPtr) dell'osservatore.

(Ereditato da NSObject)
AddObserver(NSString, NSKeyValueObservingOptions, Action<NSObservedChange>)

Registra un oggetto per essere osservato esternamente usando un metodo arbitrario.

(Ereditato da NSObject)
AddObserver(String, NSKeyValueObservingOptions, Action<NSObservedChange>)

Registra un oggetto per essere osservato esternamente usando un metodo arbitrario.

(Ereditato da NSObject)
Apply(CIKernel, NSArray, NSDictionary)

Genera un codice a matrice.

(Ereditato da CIFilter)
AwakeFromNib()

Chiamato dopo il caricamento dell'oggetto dal file nib. Gli override devono chiamare base. AwakeFromNib().

(Ereditato da NSObject)
BeginInvokeOnMainThread(Action)

Genera un codice a matrice.

(Ereditato da NSObject)
BeginInvokeOnMainThread(Selector, NSObject)

Richiama in modo asincrono il codice specificato nel thread principale dell'interfaccia utente.

(Ereditato da NSObject)
Bind(NSString, NSObject, String, NSDictionary)

Genera un codice a matrice.

(Ereditato da NSObject)
Bind(String, NSObject, String, NSDictionary)
Obsoleti.

Genera un codice a matrice.

(Ereditato da NSObject)
BindingInfo(String)
Obsoleti.

Genera un codice a matrice.

(Ereditato da NSObject)
BindingOptionDescriptions(String)
Obsoleti.

Genera un codice a matrice.

(Ereditato da NSObject)
BindingValueClass(String)
Obsoleti.

Genera un codice a matrice.

(Ereditato da NSObject)
CommitEditing()

Genera un codice a matrice.

(Ereditato da NSObject)
CommitEditing(NSObject, Selector, IntPtr)

Genera un codice a matrice.

(Ereditato da NSObject)
ConformsToProtocol(IntPtr)

Richiamato per determinare se questo oggetto implementa il protocollo specificato.

(Ereditato da NSObject)
Copy()

Esegue una copia dell'oggetto Objective-C sottostante.

(Ereditato da NSObject)
Copy(NSZone)

Esegue una copia dell'oggetto Objective-C sottostante.

(Ereditato da CIFilter)
DangerousAutorelease()

Genera un codice a matrice.

(Ereditato da NSObject)
DangerousRelease()

Genera un codice a matrice.

(Ereditato da NSObject)
DangerousRetain()

Genera un codice a matrice.

(Ereditato da NSObject)
DidChange(NSKeyValueChange, NSIndexSet, NSString)

Indica che si è verificata una modifica agli indici per una relazione a molti.

(Ereditato da NSObject)
DidChange(NSString, NSKeyValueSetMutationKind, NSSet)

Genera un codice a matrice.

(Ereditato da NSObject)
DidChangeValue(String)

Indica che si è verificata una modifica sulla chiave specificata.

(Ereditato da NSObject)
Dispose()

Rilascia le risorse utilizzate dall'oggetto NSObject.

(Ereditato da NSObject)
Dispose(Boolean)

Rilascia le risorse utilizzate dall'oggetto NSObject.

(Ereditato da NSObject)
DoesNotRecognizeSelector(Selector)

Indica che questo oggetto non riconosce il selettore specificato.

(Ereditato da NSObject)
EncodeTo(NSCoder)

Codifica lo stato dell'oggetto nel codificatore fornito

(Ereditato da CIFilter)
Equals(NSObject)

Genera un codice a matrice.

(Ereditato da NSObject)
Equals(Object)

Genera un codice a matrice.

(Ereditato da NSObject)
ExposedBindings()

Genera un codice a matrice.

(Ereditato da NSObject)
GetBindingInfo(NSString)

Genera un codice a matrice.

(Ereditato da NSObject)
GetBindingOptionDescriptions(NSString)

Genera un codice a matrice.

(Ereditato da NSObject)
GetBindingValueClass(NSString)

Genera un codice a matrice.

(Ereditato da NSObject)
GetDictionaryOfValuesFromKeys(NSString[])

Recupera i valori delle chiavi specificate.

(Ereditato da NSObject)
GetFilterUIView(NSDictionary, NSArray)

Genera un codice a matrice.

(Ereditato da CIFilter)
GetHashCode()

Genera un codice hash per l'istanza corrente.

(Ereditato da NSObject)
GetMethodForSelector(Selector)

Genera un codice a matrice.

(Ereditato da NSObject)
GetNativeField(String)
Obsoleti.

Genera un codice a matrice.

(Ereditato da NSObject)
GetNativeHash()

Genera un codice a matrice.

(Ereditato da NSObject)
Init()

Genera un codice a matrice.

(Ereditato da NSObject)
InitializeHandle(IntPtr)

Genera un codice a matrice.

(Ereditato da NSObject)
InitializeHandle(IntPtr, String)

Genera un codice a matrice.

(Ereditato da NSObject)
Invoke(Action, Double)

Genera un codice a matrice.

(Ereditato da NSObject)
Invoke(Action, TimeSpan)

Genera un codice a matrice.

(Ereditato da NSObject)
InvokeOnMainThread(Action)

Genera un codice a matrice.

(Ereditato da NSObject)
InvokeOnMainThread(Selector, NSObject)

Richiama in modo sincrono il codice specificato nel thread principale dell'interfaccia utente.

(Ereditato da NSObject)
IsEqual(NSObject)

Genera un codice a matrice.

(Ereditato da NSObject)
IsKindOfClass(Class)

Genera un codice a matrice.

(Ereditato da NSObject)
IsMemberOfClass(Class)

Genera un codice a matrice.

(Ereditato da NSObject)
MarkDirty()

Promuove un normale oggetto peer (IsDirectBinding è true) in un oggetto toggleref.

(Ereditato da NSObject)
MutableCopy()

Crea una copia modificabile dell'oggetto NSObject specificato.

(Ereditato da NSObject)
ObjectDidEndEditing(NSObject)

Genera un codice a matrice.

(Ereditato da NSObject)
ObserveValue(NSString, NSObject, NSDictionary, IntPtr)

Indica che il valore in corrispondenza del keyPath specificato rispetto a questo oggetto è stato modificato.

(Ereditato da NSObject)
PerformSelector(Selector)

Genera un codice a matrice.

(Ereditato da NSObject)
PerformSelector(Selector, NSObject)

Genera un codice a matrice.

(Ereditato da NSObject)
PerformSelector(Selector, NSObject, Double)

Richiama il selettore nell'istanza corrente e, se non obj è Null, lo passa come singolo parametro.

(Ereditato da NSObject)
PerformSelector(Selector, NSObject, Double, NSString[])

Genera un codice a matrice.

(Ereditato da NSObject)
PerformSelector(Selector, NSObject, NSObject)

Genera un codice a matrice.

(Ereditato da NSObject)
PerformSelector(Selector, NSThread, NSObject, Boolean)

Genera un codice a matrice.

(Ereditato da NSObject)
PerformSelector(Selector, NSThread, NSObject, Boolean, NSString[])

Genera un codice a matrice.

(Ereditato da NSObject)
PrepareForInterfaceBuilder()

Genera un codice a matrice.

(Ereditato da NSObject)
RemoveObserver(NSObject, NSString)

Impedisce all'osservatore specificato di ricevere ulteriori notifiche di valori modificati per keyPath specificato.

(Ereditato da NSObject)
RemoveObserver(NSObject, NSString, IntPtr)

Impedisce all'osservatore specificato di ricevere ulteriori notifiche di valori modificati per keyPath e contesto specificati.

(Ereditato da NSObject)
RemoveObserver(NSObject, String)

Impedisce all'osservatore specificato di ricevere ulteriori notifiche di valori modificati per keyPath specificato.

(Ereditato da NSObject)
RemoveObserver(NSObject, String, IntPtr)

Impedisce all'osservatore specificato di ricevere ulteriori notifiche di valori modificati per keyPath e contesto specificati.

(Ereditato da NSObject)
RespondsToSelector(Selector)

Indica se questo oggetto riconosce il selettore specificato.

(Ereditato da NSObject)
SetDefaults()

Imposta tutti i valori di input sulle impostazioni predefinite.

(Ereditato da CIFilter)
SetNativeField(String, NSObject)
Obsoleti.

Genera un codice a matrice.

(Ereditato da NSObject)
SetNilValueForKey(NSString)

Imposta il valore della chiave specificata su Null.

(Ereditato da NSObject)
SetValueForKey(NSObject, NSString)

Imposta il valore della proprietà specificata dalla chiave sul valore specificato.

(Ereditato da NSObject)
SetValueForKeyPath(IntPtr, NSString)

Costruttore utilizzato durante la creazione di rappresentazioni gestite di oggetti non gestiti; Chiamato dal runtime.

(Ereditato da NSObject)
SetValueForKeyPath(NSObject, NSString)

Imposta il valore di una proprietà che può essere raggiunta usando un percorso chiave.

(Ereditato da NSObject)
SetValueForUndefinedKey(NSObject, NSString)

Indica un tentativo di scrittura di un valore in una chiave non definita. Se non ne viene eseguito l'override, genera un'eccezione NSUndefinedKeyException.

(Ereditato da NSObject)
SetValuesForKeysWithDictionary(NSDictionary)

Imposta i valori di questo NSObject su quelli nel dizionario specificato.

(Ereditato da NSObject)
ToString()

Restituisce una rappresentazione di stringa del valore dell'istanza corrente.

(Ereditato da NSObject)
Unbind(NSString)

Genera un codice a matrice.

(Ereditato da NSObject)
Unbind(String)
Obsoleti.

Genera un codice a matrice.

(Ereditato da NSObject)
ValueForKey(NSString)

Restituisce il valore della proprietà associata alla chiave specificata.

(Ereditato da NSObject)
ValueForKeyPath(NSString)

Restituisce il valore di una proprietà che può essere raggiunta utilizzando un percorso chiave.

(Ereditato da NSObject)
ValueForUndefinedKey(NSString)

Indica un tentativo di lettura di un valore di una chiave non definita. Se non ne viene eseguito l'override, genera un'eccezione NSUndefinedKeyException.

(Ereditato da NSObject)
WillChange(NSKeyValueChange, NSIndexSet, NSString)

Indica che i valori degli indici specificati nella chiave specificata stanno per essere modificati.

(Ereditato da NSObject)
WillChange(NSString, NSKeyValueSetMutationKind, NSSet)

Genera un codice a matrice.

(Ereditato da NSObject)
WillChangeValue(String)

Indica che il valore della chiave specificata sta per essere modificato.

(Ereditato da NSObject)

Metodi di estensione

ObjectDidBeginEditing(NSObject, INSEditor)

Genera un codice a matrice.

ObjectDidEndEditing(NSObject, INSEditor)

Genera un codice a matrice.

GetValidModes(NSObject, NSFontPanel)

Genera un codice a matrice.

ValidateToolbarItem(NSObject, NSToolbarItem)

Genera un codice a matrice.

GetDebugDescription(INSObjectProtocol)

Genera un codice a matrice.

AcceptsPreviewPanelControl(NSObject, QLPreviewPanel)

Genera un codice a matrice.

BeginPreviewPanelControl(NSObject, QLPreviewPanel)

Genera un codice a matrice.

EndPreviewPanelControl(NSObject, QLPreviewPanel)

Genera un codice a matrice.

GetAccessibilityCustomRotors(NSObject)

Ottiene la matrice di UIAccessibilityCustomRotor oggetti appropriati per this l'oggetto .

SetAccessibilityCustomRotors(NSObject, UIAccessibilityCustomRotor[])

Imposta la matrice di UIAccessibilityCustomRotor oggetti appropriati per this l'oggetto .

Si applica a