PMS32 Online- Hilfereferenz

MY.GDI.DRAWING.IMAGING.IMAGECODECINFO

ImageCodecInfo - Diese Member ist nicht genauer definiert. Bitte in der entsprechenden Klasse nachsehen. => xfcImageCodecInfo


Hilfe: GDI Method or Property
Diese Member ist nicht genauer definiert. Bitte in der entsprechenden Klasse nachsehen. => xfcImageCodecInfo


Code: GDI Method or Property
*/ Kurzbeispiel für den Zugriff auf diese Struktur
*/ Der Zugriff erfolgt über: My.GDI.Drawing.Imaging.ImageCodecInfo
*/ Wird dieses Objekt in einem REPLACE oder einer Schleife SCAN ... ENDSCAN | FOR ... NEXT benötigt
*/ so sollte vor der Schleife die Objektstruktur in eine Variable geholt werden!
*/ Die Ausführungsgeschwindigkeit wird dadurch sehr vergrößert!
*/ Beispiel:
*/ Definieren einer LOKALEN Variablen
LOCAL loImageCodecInfo AS My.GDI.Drawing.Imaging.ImageCodecInfo
*/ Setzen der Variablen
loImageCodecInfo = My.GDI.Drawing.Imaging.ImageCodecInfo
*/ Jetzt erst die Schleifen durchlaufen... man beachte ALL, dass können ne Menge Sätze sein...
REPLACE ALL Feldname1 WITH loImageCodecInfo.Function1(),Feldname2 WITH loImageCodecInfo.Function1(), ...
*/ Oder in einer Schleife...
SCAN
	lvValue = loImageCodecInfo.Function(Alias.Spalte) + 25
	lvValue = loImageCodecInfo.Function2(m.lvValue)
	REPLACE Feldname WITH m.lvValue,...
ENDSCAN
*/ Es sind auch geschachtelte Aufrufe möglich...

Memberliste von ImageCodecInfo


Liste der Methoden von ImageCodecInfo


GetImageDecoders() - GDI Method or Property

Rückgabe:[Variant], Returns an array of ImageCodecInfo objects that contain information about the image decoders built into GDI+.
Hilfeinformation
Rückgabe:[Variant], Returns an array of ImageCodecInfo objects that contain information about the image decoders built into GDI+.

Aufrufinformation
Variant = My.GDI.Drawing.Imaging.ImageCodecInfo.GetImageDecoders()
Codeinformation


GetImageEncoders() - GDI Method or Property

Rückgabe:[Variant], Returns an array of ImageCodecInfo objects that contain information about the image encoders built into GDI+.
Hilfeinformation
Rückgabe:[Variant], Returns an array of ImageCodecInfo objects that contain information about the image encoders built into GDI+.

Aufrufinformation
Variant = My.GDI.Drawing.Imaging.ImageCodecInfo.GetImageEncoders()
Codeinformation


Liste der Properties von ImageCodecInfo


BaseName - Basisname

Name der Basisklasse in der GDI Struktur
Hilfeinformation
Name der Basisklasse in der GDI Struktur

Aufrufinformation
Number = My.GDI.Drawing.Imaging.ImageCodecInfo.BaseName
Codeinformation
WAIT WINDOW My.GDI.Drawing.Imaging.ImageCodecInfo.BaseName

Clsid - GDI Method or Property

Gets or sets a Guid structure that contains a GUID that identifies a specific codec.
Hilfeinformation
Gets or sets a Guid structure that contains a GUID that identifies a specific codec.

Aufrufinformation
String = My.GDI.Drawing.Imaging.ImageCodecInfo.Clsid
Codeinformation


CodecName - GDI Method or Property

Gets or sets a string that contains the name of the codec.
Hilfeinformation
Gets or sets a string that contains the name of the codec.

Aufrufinformation
String = My.GDI.Drawing.Imaging.ImageCodecInfo.CodecName
Codeinformation


DllName - GDI Method or Property

Gets or sets string that contains the path name of the DLL that holds the codec. If the codec is not in a DLL, this pointer is a null reference (Nothing in Visual Basic).
Hilfeinformation
Gets or sets string that contains the path name of the DLL that holds the codec. If the codec is not in a DLL, this pointer is a null reference (Nothing in Visual Basic).

Aufrufinformation
Date = My.GDI.Drawing.Imaging.ImageCodecInfo.DllName
Codeinformation


FilenameExtension - GDI Method or Property

Gets or sets string that contains the file name extension(s) used in the codec. The extensions are separated by semicolons.
Hilfeinformation
Gets or sets string that contains the file name extension(s) used in the codec. The extensions are separated by semicolons.

Aufrufinformation
Number = My.GDI.Drawing.Imaging.ImageCodecInfo.FilenameExtension
Codeinformation


Flags - GDI Method or Property

Gets or sets 32-bit value used to store additional information about the codec. This property returns a combination of flags from the ImageCodecFlags enumeration.
Hilfeinformation
Gets or sets 32-bit value used to store additional information about the codec. This property returns a combination of flags from the ImageCodecFlags enumeration.

Aufrufinformation
Number = My.GDI.Drawing.Imaging.ImageCodecInfo.Flags
Codeinformation


FormatDescription - GDI Method or Property

Gets or sets a string that describes the codec's file format.
Hilfeinformation
Gets or sets a string that describes the codec's file format.

Aufrufinformation
Number = My.GDI.Drawing.Imaging.ImageCodecInfo.FormatDescription
Codeinformation


FormatID - GDI Method or Property

Gets or sets a Guid structure that contains a GUID that identifies the codec's format.
Hilfeinformation
Gets or sets a Guid structure that contains a GUID that identifies the codec's format.

Aufrufinformation
Number = My.GDI.Drawing.Imaging.ImageCodecInfo.FormatID
Codeinformation


MimeType - GDI Method or Property

Gets or sets a string that contains the codec's Multipurpose Internet Mail Extensions (MIME) type.
Hilfeinformation
Gets or sets a string that contains the codec's Multipurpose Internet Mail Extensions (MIME) type.

Aufrufinformation
String = My.GDI.Drawing.Imaging.ImageCodecInfo.MimeType
Codeinformation


SignatureCount - GDI Method or Property


Hilfeinformation

Aufrufinformation
S = My.GDI.Drawing.Imaging.ImageCodecInfo.SignatureCount
Codeinformation


SignatureMasks - GDI Method or Property

Gets or sets a two dimensional array of bytes that can be used as a filter.
Hilfeinformation
Gets or sets a two dimensional array of bytes that can be used as a filter.

Aufrufinformation
S = My.GDI.Drawing.Imaging.ImageCodecInfo.SignatureMasks
Codeinformation


SignaturePatterns - GDI Method or Property

Gets or sets a two dimensional array of bytes that represents the signature of the codec.
Hilfeinformation
Gets or sets a two dimensional array of bytes that represents the signature of the codec.

Aufrufinformation
S = My.GDI.Drawing.Imaging.ImageCodecInfo.SignaturePatterns
Codeinformation


SignatureSize - GDI Method or Property


Hilfeinformation

Aufrufinformation
S = My.GDI.Drawing.Imaging.ImageCodecInfo.SignatureSize
Codeinformation


Version - Version

Gibt die Versionsnummer des integrierten MetaFileObjekts zurück
Hilfeinformation
Gibt die Versionsnummer des integrierten MetaFileObjekts zurück

Aufrufinformation
String = My.GDI.Drawing.Imaging.ImageCodecInfo.Version
Codeinformation
LOCAL lcVersion AS String
*/ Version der integrierten GDI Klasse
lcVersion = My.GDI.Drawing.Imaging.ImageCodecInfo.Version

cMethod - Methode des Fehlers

Methode in der der letzte Fehler auftrat.
Hilfeinformation
Methode in der der letzte Fehler auftrat.
Aufbau: [Fehlernummer] [Methode] [Zeilennummer] [Message]

Aufrufinformation
String = My.GDI.Drawing.Imaging.ImageCodecInfo.cMethod
Codeinformation
*/ Abruf...
WAIT WINDOW My.GDI.Drawing.Imaging.ImageCodecInfo.cMethod

nError - Fehlernummer d. Fehlers

Fehlernummer des letzten Fehlers.
Hilfeinformation
Fehlernummer des letzten Fehlers.
Ist der Wert kleiner null, so handelt es sich um einen logischen Fehler.

Aufrufinformation
Number = My.GDI.Drawing.Imaging.ImageCodecInfo.nError
Codeinformation
WAIT WINDOW My.GDI.Drawing.Imaging.ImageCodecInfo.nError

nLine - Zeilennummer d. Fehlers

Zeilennummer, in der der letzte Fehler auftrat
Hilfeinformation
Zeilennummer, in der der letzte Fehler auftrat

Aufrufinformation
Number = My.GDI.Drawing.Imaging.ImageCodecInfo.nLine
Codeinformation
WAIT WINDOW My.GDI.Drawing.Imaging.ImageCodecInfo.nLine


Siehe auch : Hauptmenü /  Hauptindex /  Such Index /  Cursor Index /  Programm Module /  Tabellen Index /  Tabellenmodule /  Masken Index /  Programmcode Index /  Servicepacks /  My.Struktur /  Funktionen /  Sonstiges Index

Lokale Benutzerhilfe : Meine eigene Hilfe /  Zurück zur PMS32 - Hilfe


Dateiversion:1.0.04#3648 - H.U.DD#SSFF 02.12.2022  Senden Sie Ihren Kommentar zu diesem Thema an das Entwicklungsteam von PMS32  Weitere Informationen finden Sie unter der aktuellen PMS32 WEB-Hilfe
Die Informationen dieser Mitteilung sind vertraulich und nur für Sie bestimmt. Unbefugtes Weiterleiten,  Veröffentlichen, Kopieren usw. sind untersagt und werden gerichtlich verfolgt.  © PMS Compelec GmbH 2022 ® el-Projekt