如何在没有窗口的情况下将图像直接传送到屏幕上?
Posted
技术标签:
【中文标题】如何在没有窗口的情况下将图像直接传送到屏幕上?【英文标题】:How to blit a image directly to the screen without a window? 【发布时间】:2012-10-04 07:43:33 【问题描述】:如何显示来自 PNG、BITMAP、JPEG 文件等的图像。在没有窗口的屏幕上?我希望图像周围没有框架,最好不要在任务栏上注册为窗口。我想把这些图像快速连续地放在屏幕上。如果它与 Windows XP 和 Windows 7 兼容,我希望它。我愿意下载一个外部模块。如果这是可能的,请告诉我。谢谢!
【问题讨论】:
你可以使用 wx 并且框架上没有边框... 你能举个例子吗?我希望它是图像的任何形状。 添加了一个示例...它可能会也可能不会满足您的需求... 如果它解决了您的问题,请接受 :) 我确实接受了。哈哈。你没注意。 【参考方案1】:这将创建一个透明背景的形状窗口,在同一文件夹中显示“image.png”
import wx
# Create a .png image with something drawn on a white background
# and put the path to it here.
IMAGE_PATH = 'image.png'
class ShapedFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None, -1, "Shaped Window",
style = wx.FRAME_SHAPED | wx.SIMPLE_BORDER)
self.hasShape = False
self.delta = wx.Point(0,0)
# Load the image
image = wx.Image(IMAGE_PATH, wx.BITMAP_TYPE_PNG)
image.SetMaskColour(255,255,255)
image.SetMask(True)
self.bmp = wx.BitmapFromImage(image)
self.SetClientSize((self.bmp.GetWidth(), self.bmp.GetHeight()))
dc = wx.ClientDC(self)
dc.DrawBitmap(self.bmp, 0,0, True)
self.SetWindowShape()
self.Bind(wx.EVT_LEFT_DCLICK, self.OnDoubleClick)
self.Bind(wx.EVT_LEFT_DOWN, self.OnLeftDown)
self.Bind(wx.EVT_LEFT_UP, self.OnLeftUp)
self.Bind(wx.EVT_MOTION, self.OnMouseMove)
self.Bind(wx.EVT_RIGHT_UP, self.OnExit)
self.Bind(wx.EVT_PAINT, self.OnPaint)
self.Bind(wx.EVT_WINDOW_CREATE, self.SetWindowShape)
self.Bind(wx.EVT_ERASE_BACKGROUND, self.OnEraseBackground)
def OnEraseBackground(self,evt=None):
pass
def SetWindowShape(self, evt=None):
r = wx.RegionFromBitmap(self.bmp)
self.hasShape = self.SetShape(r)
def OnDoubleClick(self, evt):
if self.hasShape:
self.SetShape(wx.Region())
self.hasShape = False
else:
self.SetWindowShape()
def OnPaint(self, evt):
dc = wx.PaintDC(self)
dc.DrawBitmap(self.bmp, 0,0, True)
def OnExit(self, evt):
self.Close()
def OnLeftDown(self, evt):
self.CaptureMouse()
pos = self.ClientToScreen(evt.GetPosition())
origin = self.GetPosition()
self.delta = wx.Point(pos.x - origin.x, pos.y - origin.y)
def OnMouseMove(self, evt):
if evt.Dragging() and evt.LeftIsDown():
pos = self.ClientToScreen(evt.GetPosition())
newPos = (pos.x - self.delta.x, pos.y - self.delta.y)
self.Move(newPos)
def OnLeftUp(self, evt):
if self.HasCapture():
self.ReleaseMouse()
if __name__ == '__main__':
app = wx.PySimpleApp()
ShapedFrame().Show()
app.MainLoop()
这是我使用的图像
【讨论】:
AttributeError: 'module' object has no attribute 'RegionFromBitmap' 有什么帮助吗?以上是关于如何在没有窗口的情况下将图像直接传送到屏幕上?的主要内容,如果未能解决你的问题,请参考以下文章