BarcodeScannerProviderConnection.CreateFrameReaderAsync Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
CreateFrameReaderAsync() |
Erstellt eine neue BarcodeScannerFrameReader-instance. |
CreateFrameReaderAsync(BitmapPixelFormat) |
Erstellt eine neue BarcodeScannerFrameReader-instance, die Frames nach Möglichkeit im bevorzugten Format zurückgibt. |
CreateFrameReaderAsync(BitmapPixelFormat, BitmapSize) |
Erstellt eine neue BarcodeScannerFrameReader-instance, die Frames nach Möglichkeit im bevorzugten Format und der bevorzugten Größe zurückgibt. |
CreateFrameReaderAsync()
Erstellt eine neue BarcodeScannerFrameReader-instance.
public:
virtual IAsyncOperation<BarcodeScannerFrameReader ^> ^ CreateFrameReaderAsync() = CreateFrameReaderAsync;
/// [Windows.Foundation.Metadata.Overload("CreateFrameReaderAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<BarcodeScannerFrameReader> CreateFrameReaderAsync();
[Windows.Foundation.Metadata.Overload("CreateFrameReaderAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<BarcodeScannerFrameReader> CreateFrameReaderAsync();
function createFrameReaderAsync()
Public Function CreateFrameReaderAsync () As IAsyncOperation(Of BarcodeScannerFrameReader)
Gibt zurück
Ein neues BarcodeScannerFrameReader-instance, das Frames aus dieser BarcodeScannerProviderConnection liest.
- Attribute
Windows-Anforderungen
Gerätefamilie |
Windows 10, version 1809 (eingeführt in 10.0.17763.0)
|
API contract |
Windows.Foundation.UniversalApiContract (eingeführt in v7.0)
|
Gilt für:
CreateFrameReaderAsync(BitmapPixelFormat)
Erstellt eine neue BarcodeScannerFrameReader-instance, die Frames nach Möglichkeit im bevorzugten Format zurückgibt.
public:
virtual IAsyncOperation<BarcodeScannerFrameReader ^> ^ CreateFrameReaderAsync(BitmapPixelFormat preferredFormat) = CreateFrameReaderAsync;
/// [Windows.Foundation.Metadata.Overload("CreateFrameReaderWithFormatAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<BarcodeScannerFrameReader> CreateFrameReaderAsync(BitmapPixelFormat const& preferredFormat);
[Windows.Foundation.Metadata.Overload("CreateFrameReaderWithFormatAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<BarcodeScannerFrameReader> CreateFrameReaderAsync(BitmapPixelFormat preferredFormat);
function createFrameReaderAsync(preferredFormat)
Public Function CreateFrameReaderAsync (preferredFormat As BitmapPixelFormat) As IAsyncOperation(Of BarcodeScannerFrameReader)
Parameter
- preferredFormat
- BitmapPixelFormat
Das bevorzugte Bildformat als BitmapPixelFormat.
Gibt zurück
Ein neues BarcodeScannerFrameReader-instance, das Frames aus dieser BarcodeScannerProviderConnection liest.
- Attribute
Windows-Anforderungen
Gerätefamilie |
Windows 10, version 1809 (eingeführt in 10.0.17763.0)
|
API contract |
Windows.Foundation.UniversalApiContract (eingeführt in v7.0)
|
Hinweise
Wenn das angeforderte Format von der Kamera nicht zurückgegeben werden kann, werden Frames mit einem standardmäßig unterstützten Format zurückgegeben. Um sicherzustellen, dass die zurückgegebenen Frames einem bestimmten Format entsprechen, überprüfen Sie die Format-Eigenschaft für die zurückgegebenen BarcodeScannerVideoFrame-Objekte .
Gilt für:
CreateFrameReaderAsync(BitmapPixelFormat, BitmapSize)
Erstellt eine neue BarcodeScannerFrameReader-instance, die Frames nach Möglichkeit im bevorzugten Format und der bevorzugten Größe zurückgibt.
public:
virtual IAsyncOperation<BarcodeScannerFrameReader ^> ^ CreateFrameReaderAsync(BitmapPixelFormat preferredFormat, BitmapSize preferredSize) = CreateFrameReaderAsync;
/// [Windows.Foundation.Metadata.Overload("CreateFrameReaderWithFormatAndSizeAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<BarcodeScannerFrameReader> CreateFrameReaderAsync(BitmapPixelFormat const& preferredFormat, BitmapSize const& preferredSize);
[Windows.Foundation.Metadata.Overload("CreateFrameReaderWithFormatAndSizeAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<BarcodeScannerFrameReader> CreateFrameReaderAsync(BitmapPixelFormat preferredFormat, BitmapSize preferredSize);
function createFrameReaderAsync(preferredFormat, preferredSize)
Public Function CreateFrameReaderAsync (preferredFormat As BitmapPixelFormat, preferredSize As BitmapSize) As IAsyncOperation(Of BarcodeScannerFrameReader)
Parameter
- preferredFormat
- BitmapPixelFormat
Das bevorzugte Bildformat als BitmapPixelFormat.
- preferredSize
- BitmapSize
Die bevorzugte Framegröße als BitmapSize in Pixel.
Gibt zurück
Ein neues BarcodeScannerFrameReader-instance, das Frames aus dieser BarcodeScannerProviderConnection liest.
- Attribute
Windows-Anforderungen
Gerätefamilie |
Windows 10, version 1809 (eingeführt in 10.0.17763.0)
|
API contract |
Windows.Foundation.UniversalApiContract (eingeführt in v7.0)
|
Hinweise
Wenn das angeforderte Format oder die angeforderte Größe von der Kamera nicht zurückgegeben werden kann, werden Frames mit einem standardmäßig unterstützten Format und/oder einer unterstützten Größe zurückgegeben. Um sicherzustellen, dass die zurückgegebenen Frames einem bestimmten Format oder einer bestimmten Größe entsprechen, überprüfen Sie die Eigenschaften Format, Height und Width für die zurückgegebenen BarcodeScannerVideoFrame-Objekte .