-
- All Superinterfaces:
- Transparency
- All Known Implementing Classes:
- Color, ColorUIResource, GradientPaint, LinearGradientPaint, MultipleGradientPaint, RadialGradientPaint, SystemColor, TexturePaint
public interface Paint extends Transparency
ThisPaint
interface defines how color patterns can be generated forGraphics2D
operations. A class implementing thePaint
interface is added to theGraphics2D
context in order to define the color pattern used by thedraw
andfill
methods.Instances of classes implementing
Paint
must be read-only because theGraphics2D
does not clone these objects when they are set as an attribute with thesetPaint
method or when theGraphics2D
object is itself cloned.
-
-
Field Summary
-
Fields inherited from interface java.awt.Transparency
BITMASK, OPAQUE, TRANSLUCENT
-
-
Method Summary
Methods Modifier and Type Method and Description PaintContext
createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints)
Creates and returns aPaintContext
used to generate the color pattern.-
Methods inherited from interface java.awt.Transparency
getTransparency
-
-
-
-
Method Detail
-
createContext
PaintContext createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints)
Creates and returns aPaintContext
used to generate the color pattern. The arguments to this method convey additional information about the rendering operation that may be used or ignored on various implementations of thePaint
interface. A caller must pass non-null
values for all of the arguments except for theColorModel
argument which may benull
to indicate that no specificColorModel
type is preferred. Implementations of thePaint
interface are allowed to use or ignore any of the arguments as makes sense for their function, and are not constrained to use the specifiedColorModel
for the returnedPaintContext
, even if it is notnull
. Implementations are allowed to throwNullPointerException
for anynull
argument other than theColorModel
argument, but are not required to do so.- Parameters:
cm
- the preferredColorModel
which represents the most convenient format for the caller to receive the pixel data, ornull
if there is no preference.deviceBounds
- the device space bounding box of the graphics primitive being rendered. Implementations of thePaint
interface are allowed to throwNullPointerException
for anull
deviceBounds
.userBounds
- the user space bounding box of the graphics primitive being rendered. Implementations of thePaint
interface are allowed to throwNullPointerException
for anull
userBounds
.xform
- theAffineTransform
from user space into device space. Implementations of thePaint
interface are allowed to throwNullPointerException
for anull
xform
.hints
- the set of hints that the context object can use to choose between rendering alternatives. Implementations of thePaint
interface are allowed to throwNullPointerException
for anull
hints
.- Returns:
- the
PaintContext
for generating color patterns. - See Also:
PaintContext
,ColorModel
,Rectangle
,Rectangle2D
,AffineTransform
,RenderingHints
-
-
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/Paint.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.