Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
86 lines (81 loc) · 3.11 KB

File metadata and controls

86 lines (81 loc) · 3.11 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
* Copyright (c) 1997, 1998, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package java.awt;
import java.awt.image.ColorModel;
/**
* The <code>Composite</code> interface, along with
* {@link CompositeContext}, defines the methods to compose a draw
* primitive with the underlying graphics area.
* After the <code>Composite</code> is set in the
* {@link Graphics2D} 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.
* <code>CompositeContext</code> is an environment used by the
* compositing operation, which is created by the <code>Graphics2D</code>
* prior to the start of the operation. <code>CompositeContext</code>
* contains private information and resources needed for a compositing
* operation. When the <code>CompositeContext</code> is no longer needed,
* the <code>Graphics2D</code> object disposes of it in order to reclaim
* resources allocated for the operation.
* <p>
* Instances of classes implementing <code>Composite</code> must be
* immutable because the <code>Graphics2D</code> does not clone
* these objects when they are set as an attribute with the
* <code>setComposite</code> method or when the <code>Graphics2D</code>
* object is cloned. This is to avoid undefined rendering behavior of
* <code>Graphics2D</code>, resulting from the modification of
* the <code>Composite</code> object after it has been set in the
* <code>Graphics2D</code> context.
* <p>
* 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 <code>readDisplayPixels</code>
* {@link AWTPermission}. The permission check will occur when such
* a custom object is passed to the <code>setComposite</code> method
* of a <code>Graphics2D</code> retrieved from a {@link Component}.
* @see AlphaComposite
* @see CompositeContext
* @see Graphics2D#setComposite
*/
public interface Composite {
/**
* 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 single
* <code>Composite</code> object.
* @param srcColorModel the {@link ColorModel} of the source
* @param dstColorModel the <code>ColorModel</code> of the destination
* @param hints the hint that the context object uses to choose between
* rendering alternatives
* @return the <code>CompositeContext</code> object used to perform the
* compositing operation.
*/
public CompositeContext createContext(ColorModel srcColorModel,
ColorModel dstColorModel,
RenderingHints hints);
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.