gtk绘图集背景图像
我有一个绘图区域和一个“png”图像,我想将该图像加载到我的绘图区域作为背景。
屏幕比我的图像大,问题是它没有“平铺”我的图像
我尝试将图像添加为 pixbuf 和 pixmap 但它无助于
我使用这条线
gc.set_tile(pixmap)
area.window.draw_drawable(gc, pimap, .....)
,但它没有帮助
I have a drawing area, and an 'png' image I want to load that image to my drawing area as background.
the screen is bigger then my image and the problem is it does not 'tile' my image
I have tried adding image as pixbuf and pixmap but it doesnot help
i use this line
gc.set_tile(pixmap)
area.window.draw_drawable(gc, pimap, .....)
but it does not help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案
我把代码放在这里供其他人使用
i found the answer
i put the code here for others