Keine Cache-Version

Caching deaktiviert Standardeinstellung für diese Seite:aktiviert (code LNG204)
Wenn die Anzeige zu langsam ist, können Sie den Benutzermodus deaktivieren, um die zwischengespeicherte Version anzuzeigen.
java.awt.image

Class DataBufferByte

    • Constructor Detail

      • DataBufferByte

        public DataBufferByte(int size)
        Constructs a byte-based DataBuffer with a single bank and the specified size.
        Parameters:
        size - The size of the DataBuffer.
      • DataBufferByte

        public DataBufferByte(int size,
                      int numBanks)
        Constructs a byte based DataBuffer with the specified number of banks all of which are the specified size.
        Parameters:
        size - The size of the banks in the DataBuffer.
        numBanks - The number of banks in the aDataBuffer.
      • DataBufferByte

        public DataBufferByte(byte[] dataArray,
                      int size)
        Constructs a byte-based DataBuffer with a single bank using the specified array. Only the first size elements should be used by accessors of this DataBuffer. dataArray must be large enough to hold size elements.

        Note that DataBuffer objects created by this constructor may be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).

        Parameters:
        dataArray - The byte array for the DataBuffer.
        size - The size of the DataBuffer bank.
      • DataBufferByte

        public DataBufferByte(byte[] dataArray,
                      int size,
                      int offset)
        Constructs a byte-based DataBuffer with a single bank using the specified array, size, and offset. dataArray must have at least offset + size elements. Only elements offset through offset + size - 1 should be used by accessors of this DataBuffer.

        Note that DataBuffer objects created by this constructor may be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).

        Parameters:
        dataArray - The byte array for the DataBuffer.
        size - The size of the DataBuffer bank.
        offset - The offset into the dataArray. dataArray must have at least offset + size elements.
      • DataBufferByte

        public DataBufferByte(byte[][] dataArray,
                      int size)
        Constructs a byte-based DataBuffer with the specified arrays. The number of banks is equal to dataArray.length. Only the first size elements of each array should be used by accessors of this DataBuffer.

        Note that DataBuffer objects created by this constructor may be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).

        Parameters:
        dataArray - The byte arrays for the DataBuffer.
        size - The size of the banks in the DataBuffer.
      • DataBufferByte

        public DataBufferByte(byte[][] dataArray,
                      int size,
                      int[] offsets)
        Constructs a byte-based DataBuffer with the specified arrays, size, and offsets. The number of banks is equal to dataArray.length. Each array must be at least as large as size + the corresponding offset. There must be an entry in the offset array for each dataArray entry. For each bank, only elements offset through offset + size - 1 should be used by accessors of this DataBuffer.

        Note that DataBuffer objects created by this constructor may be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).

        Parameters:
        dataArray - The byte arrays for the DataBuffer.
        size - The size of the banks in the DataBuffer.
        offsets - The offsets into each array.
    • Method Detail

      • getData

        public byte[] getData()
        Returns the default (first) byte data array.

        Note that calling this method may cause this DataBuffer object to be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).

        Returns:
        The first byte data array.
      • getData

        public byte[] getData(int bank)
        Returns the data array for the specified bank.

        Note that calling this method may cause this DataBuffer object to be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).

        Parameters:
        bank - The bank whose data array you want to get.
        Returns:
        The data array for the specified bank.
      • getBankData

        public byte[][] getBankData()
        Returns the data arrays for all banks.

        Note that calling this method may cause this DataBuffer object to be incompatible with performance optimizations used by some implementations (such as caching an associated image in video memory).

        Returns:
        All of the data arrays.
      • getElem

        public int getElem(int i)
        Returns the requested data array element from the first (default) bank.
        Overrides:
        getElem in class DataBuffer
        Parameters:
        i - The data array element you want to get.
        Returns:
        The requested data array element as an integer.
        See Also:
        setElem(int, int), setElem(int, int, int)
      • getElem

        public int getElem(int bank,
                  int i)
        Returns the requested data array element from the specified bank.
        Specified by:
        getElem in class DataBuffer
        Parameters:
        bank - The bank from which you want to get a data array element.
        i - The data array element you want to get.
        Returns:
        The requested data array element as an integer.
        See Also:
        setElem(int, int), setElem(int, int, int)
      • setElem

        public void setElem(int i,
                   int val)
        Sets the requested data array element in the first (default) bank to the specified value.
        Overrides:
        setElem in class DataBuffer
        Parameters:
        i - The data array element you want to set.
        val - The integer value to which you want to set the data array element.
        See Also:
        getElem(int), getElem(int, int)
      • setElem

        public void setElem(int bank,
                   int i,
                   int val)
        Sets the requested data array element in the specified bank from the given integer.
        Specified by:
        setElem in class DataBuffer
        Parameters:
        bank - The bank in which you want to set the data array element.
        i - The data array element you want to set.
        val - The integer value to which you want to set the specified data array element.
        See Also:
        getElem(int), getElem(int, int)

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/awt/image/databufferbyte.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.

Inhaltsverzeichnis Haut