图像显示宽度小于显示宽度,然后如何以代号1设置总显示宽度的图像

时间:2017-04-25 06:25:47

标签: image width codenameone

how to show the image in total width of the device when the image width is less than the device width?

图像尺寸:宽度 - 1274像素,高度 - 105像素 设备尺寸:宽度 - 1920像素,高度 - 1200像素

enter code here
Image image     = Image.createImage("/mainpageheader1.png");
Label appHeader = new Label(image);
appHeader.setUIID("appHeader");
loginForm.addComponent(BorderLayout.NORTH,appHeader);

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以使用Image.scaledWidth(int)方法创建具有所需宽度的图像缩放版本,同时保留纵横比。