弹性图块列表显示白色背景的透明图像
我有一个图块列表,可以从应用程序内的文件夹加载图像。
当我加载具有透明背景的图像时,它会为图像提供白色背景,有什么方法可以使图像变得透明吗?
谢谢!
我正在添加循环浏览的图像列表中的图像
var y:Image = new Image();
y.height = 100;
y.width = 100;
y.id = list[i].MID;
y.source = (list[i].vchImagePath);
y.name = (list[i].vchName);
theArray.addItem(y);
I have a tile list that loads images from a folder within the app.
When i load images with a transparent background it gives the image a white background is there any way to get the image to be transparent?
Thanks!
I'm adding the images from a list of images i loop through
var y:Image = new Image();
y.height = 100;
y.width = 100;
y.id = list[i].MID;
y.source = (list[i].vchImagePath);
y.name = (list[i].vchName);
theArray.addItem(y);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在列表中使用 itemRenderer,则可以将 autoDrawBackground 属性设置为 false。
丹妮
If you use an itemRenderer in your list, you can set the autoDrawBackground property to false.
Dany