Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
c29eb43d
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
c29eb43d
编写于
1月 19, 2017
作者:
P
psadhukhan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8040635: [macosx] Printing a shape filled with a texture doesn't work under Mac OS X
Reviewed-by: prr, jdv
上级
0162b058
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
212 addition
and
1 deletion
+212
-1
src/macosx/classes/sun/java2d/OSXSurfaceData.java
src/macosx/classes/sun/java2d/OSXSurfaceData.java
+1
-1
test/java/awt/print/PrinterJob/TexturePaintPrintingTest.java
test/java/awt/print/PrinterJob/TexturePaintPrintingTest.java
+211
-0
未找到文件。
src/macosx/classes/sun/java2d/OSXSurfaceData.java
浏览文件 @
c29eb43d
...
...
@@ -572,7 +572,7 @@ public abstract class OSXSurfaceData extends BufImgSurfaceData {
TexturePaint
color
=
(
TexturePaint
)
sg2d
.
paint
;
this
.
fGraphicsStatesInt
.
put
(
kColorStateIndex
,
kColorTexture
);
texturePaintImage
=
color
.
getImage
();
SurfaceData
textureSurfaceData
=
BufImgSurfaceData
.
createData
(
texturePaintImage
);
SurfaceData
textureSurfaceData
=
OSXOffScreenSurfaceData
.
createNewSurface
(
texturePaintImage
);
this
.
fGraphicsStatesInt
.
put
(
kColorWidthIndex
,
texturePaintImage
.
getWidth
());
this
.
fGraphicsStatesInt
.
put
(
kColorHeightIndex
,
texturePaintImage
.
getHeight
());
Rectangle2D
anchor
=
color
.
getAnchorRect
();
...
...
test/java/awt/print/PrinterJob/TexturePaintPrintingTest.java
0 → 100644
浏览文件 @
c29eb43d
/*
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8040635
* @summary Verifies if TexturePaint is printed in osx
* @run main/manual TexturePaintPrintingTest
*/
import
java.awt.BorderLayout
;
import
java.awt.Color
;
import
java.awt.Component
;
import
java.awt.Container
;
import
java.awt.Dimension
;
import
java.awt.FlowLayout
;
import
java.awt.Graphics
;
import
java.awt.Graphics2D
;
import
java.awt.TexturePaint
;
import
java.awt.event.ActionEvent
;
import
java.awt.event.WindowAdapter
;
import
java.awt.event.WindowEvent
;
import
java.awt.geom.Rectangle2D
;
import
java.awt.image.BufferedImage
;
import
java.awt.print.PageFormat
;
import
java.awt.print.Printable
;
import
static
java
.
awt
.
print
.
Printable
.
NO_SUCH_PAGE
;
import
java.awt.print.PrinterException
;
import
java.awt.print.PrinterJob
;
import
javax.swing.AbstractAction
;
import
javax.swing.JButton
;
import
javax.swing.JDialog
;
import
javax.swing.JFrame
;
import
javax.swing.JPanel
;
import
javax.swing.JTextArea
;
import
javax.swing.SwingUtilities
;
import
javax.swing.WindowConstants
;
public
class
TexturePaintPrintingTest
extends
Component
implements
Printable
{
private
static
void
printTexture
()
{
f
=
new
JFrame
(
"Texture Printing Test"
);
f
.
setDefaultCloseOperation
(
WindowConstants
.
EXIT_ON_CLOSE
);
final
TexturePaintPrintingTest
gpt
=
new
TexturePaintPrintingTest
();
Container
c
=
f
.
getContentPane
();
c
.
add
(
BorderLayout
.
CENTER
,
gpt
);
final
JButton
print
=
new
JButton
(
"Print"
);
print
.
addActionListener
(
new
AbstractAction
()
{
@Override
public
void
actionPerformed
(
ActionEvent
e
)
{
PrinterJob
job
=
PrinterJob
.
getPrinterJob
();
job
.
setPrintable
(
gpt
);
final
boolean
doPrint
=
job
.
printDialog
();
if
(
doPrint
)
{
try
{
job
.
print
();
}
catch
(
PrinterException
ex
)
{
throw
new
RuntimeException
(
ex
);
}
}
}
});
c
.
add
(
print
,
BorderLayout
.
SOUTH
);
f
.
pack
();
f
.
setVisible
(
true
);
}
public
Dimension
getPreferredSize
()
{
return
new
Dimension
(
500
,
500
);
}
public
void
paint
(
Graphics
g
)
{
doPaint
((
Graphics2D
)
g
);
}
public
int
print
(
Graphics
graphics
,
PageFormat
format
,
int
index
)
{
Graphics2D
g2d
=
(
Graphics2D
)
graphics
;
g2d
.
translate
(
format
.
getImageableX
(),
format
.
getImageableY
());
doPaint
(
g2d
);
return
index
==
0
?
PAGE_EXISTS
:
NO_SUCH_PAGE
;
}
static
final
float
DIM
=
100
;
public
void
doPaint
(
Graphics2D
g2d
)
{
BufferedImage
patternImage
=
new
BufferedImage
(
2
,
2
,
BufferedImage
.
TYPE_INT_ARGB
);
Graphics
gImage
=
patternImage
.
getGraphics
();
gImage
.
setColor
(
Color
.
WHITE
);
gImage
.
drawLine
(
0
,
1
,
1
,
0
);
gImage
.
setColor
(
Color
.
BLACK
);
gImage
.
drawLine
(
0
,
0
,
1
,
1
);
gImage
.
dispose
();
Rectangle2D
.
Double
shape
=
new
Rectangle2D
.
Double
(
0
,
0
,
DIM
*
6
/
5
,
DIM
*
8
/
5
);
g2d
.
setPaint
(
new
TexturePaint
(
patternImage
,
new
Rectangle2D
.
Double
(
0
,
0
,
DIM
*
6
/
50
,
DIM
*
8
/
50
)));
g2d
.
fill
(
shape
);
g2d
.
setPaint
(
Color
.
BLACK
);
g2d
.
draw
(
shape
);
}
public
static
synchronized
void
pass
()
{
testPassed
=
true
;
testGeneratedInterrupt
=
true
;
mainThread
.
interrupt
();
}
public
static
synchronized
void
fail
()
{
testPassed
=
false
;
testGeneratedInterrupt
=
true
;
mainThread
.
interrupt
();
}
private
static
Thread
mainThread
;
private
static
boolean
testPassed
;
private
static
boolean
testGeneratedInterrupt
;
private
static
JFrame
f
=
null
;
public
static
void
main
(
String
[]
args
)
{
SwingUtilities
.
invokeLater
(
new
Runnable
()
{
@Override
public
void
run
()
{
//createUI();
doTest
(
TexturePaintPrintingTest:
:
printTexture
);
}
});
mainThread
=
Thread
.
currentThread
();
try
{
Thread
.
sleep
(
120000
);
}
catch
(
InterruptedException
e
)
{
if
(!
testPassed
&&
testGeneratedInterrupt
)
{
throw
new
RuntimeException
(
"TexturePaint did not print"
);
}
}
if
(!
testGeneratedInterrupt
)
{
throw
new
RuntimeException
(
"user has not executed the test"
);
}
}
private
static
void
doTest
(
Runnable
action
)
{
String
description
=
" A TexturePaint graphics will be shown on console.\n"
+
" The same graphics is sent to printer.\n"
+
" Please verify if TexturePaint shading is printed.\n"
+
" If none is printed, press FAIL else press PASS"
;
final
JDialog
dialog
=
new
JDialog
();
dialog
.
setTitle
(
"printSelectionTest"
);
JTextArea
textArea
=
new
JTextArea
(
description
);
textArea
.
setEditable
(
false
);
final
JButton
testButton
=
new
JButton
(
"Start Test"
);
final
JButton
passButton
=
new
JButton
(
"PASS"
);
passButton
.
setEnabled
(
false
);
passButton
.
addActionListener
((
e
)
->
{
f
.
dispose
();
dialog
.
dispose
();
pass
();
});
final
JButton
failButton
=
new
JButton
(
"FAIL"
);
failButton
.
setEnabled
(
false
);
failButton
.
addActionListener
((
e
)
->
{
f
.
dispose
();
dialog
.
dispose
();
fail
();
});
testButton
.
addActionListener
((
e
)
->
{
testButton
.
setEnabled
(
false
);
action
.
run
();
passButton
.
setEnabled
(
true
);
failButton
.
setEnabled
(
true
);
});
JPanel
mainPanel
=
new
JPanel
(
new
BorderLayout
());
mainPanel
.
add
(
textArea
,
BorderLayout
.
CENTER
);
JPanel
buttonPanel
=
new
JPanel
(
new
FlowLayout
());
buttonPanel
.
add
(
testButton
);
buttonPanel
.
add
(
passButton
);
buttonPanel
.
add
(
failButton
);
mainPanel
.
add
(
buttonPanel
,
BorderLayout
.
SOUTH
);
dialog
.
add
(
mainPanel
);
dialog
.
pack
();
dialog
.
setVisible
(
true
);
dialog
.
addWindowListener
(
new
WindowAdapter
()
{
@Override
public
void
windowClosing
(
WindowEvent
e
)
{
System
.
out
.
println
(
"main dialog closing"
);
testGeneratedInterrupt
=
false
;
mainThread
.
interrupt
();
}
});
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录