TA的每日心情 | 奋斗 2022-1-21 15:15 |
---|
签到天数: 1 天 [LV.1]初来乍到
|
ImageFile = 'im.jpg';, [( L/ n) w8 z: o
ScreenSize = get(0,'ScreenSize');' B5 H; {4 k5 d4 K) ?' R
jImage = im2java(imread(ImageFile));
3 s& ]; {% |5 K/ t! yjfBounds = num2cell([...+ `; H, K. v9 C4 m' F
(ScreenSize(3)-jImage.getWidth)/2 ...: I: @7 i2 [1 _; D
(ScreenSize(4)-jImage.getHeight)/2 ..., g5 d |7 a4 }2 G( h
jImage.getWidth ...# W. e; t8 l) U2 Y, q
jImage.getHeight]);
+ }* |, u& s; F$ EjFrame = javax.swing.JFrame;5 J' W/ W: ~0 g* v5 B: J: ]
icon = javax.swing.ImageIcon(jImage);
& B. w* ~- N1 u: V1 _label = javax.swing.JLabel(icon);
; @& m1 k. C5 N! u G$ qjFrame.getContentPane.add(label);# \5 p: E7 s" ^( ?/ F" W& Y j' Q9 s+ i
jFrame.setUndecorated(true)9 I8 Q: Q- F; ^: ~1 [3 m$ n6 h( {* R6 C
jFrame.setBounds(jfBounds{:});* ^6 e. v# z' x) B* Y% {0 d3 H# m7 {
jFrame.pack& T$ G+ G6 I! w e+ @; s5 K' N
jFrame.show参考这个代码7 H: L& A# R4 ?, ?3 i& |6 G) v* \0 O
|
|