-
- All Known Implementing Classes:
- AlphaComposite
public interface Composite
TheComposite
interface, along withCompositeContext
, defines the methods to compose a draw primitive with the underlying graphics area. After theComposite
is set in theGraphics2D
context, it combines a shape, text, or an image being rendered with the colors that have already been rendered according to pre-defined rules. The classes implementing this interface provide the rules and a method to create the context for a particular operation.CompositeContext
is an environment used by the compositing operation, which is created by theGraphics2D
prior to the start of the operation.CompositeContext
contains private information and resources needed for a compositing operation. When theCompositeContext
is no longer needed, theGraphics2D
object disposes of it in order to reclaim resources allocated for the operation.Instances of classes implementing
Composite
must be immutable because theGraphics2D
does not clone these objects when they are set as an attribute with thesetComposite
method or when theGraphics2D
object is cloned. This is to avoid undefined rendering behavior ofGraphics2D
, resulting from the modification of theComposite
object after it has been set in theGraphics2D
context.Since this interface must expose the contents of pixels on the target device or image to potentially arbitrary code, the use of custom objects which implement this interface when rendering directly to a screen device is governed by the
readDisplayPixels
AWTPermission
. The permission check will occur when such a custom object is passed to thesetComposite
method of aGraphics2D
retrieved from aComponent
.
-
-
Method Summary
Methods Modifier and Type Method and Description CompositeContext
createContext(ColorModel srcColorModel, ColorModel dstColorModel, RenderingHints hints)
Creates a context containing state that is used to perform the compositing operation.
-
-
-
Method Detail
-
createContext
CompositeContext createContext(ColorModel srcColorModel, ColorModel dstColorModel, RenderingHints hints)
Creates a context containing state that is used to perform the compositing operation. In a multi-threaded environment, several contexts can exist simultaneously for a singleComposite
object.- Parameters:
srcColorModel
- theColorModel
of the sourcedstColorModel
- theColorModel
of the destinationhints
- the hint that the context object uses to choose between rendering alternatives- Returns:
- the
CompositeContext
object used to perform the compositing operation.
-
-
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/Composite.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
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.