Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 708573
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T04:24:22+00:00 2026-05-14T04:24:22+00:00

I want to draw a number centered inside a wx.EmptyBitmap. How can I do

  • 0

I want to draw a number centered inside a wx.EmptyBitmap.

How can I do it using wxpython?

Thanks in advance 🙂

import wx

app = None

class Size(wx.Frame):
    def __init__(self, parent, id, title):
        frame = wx.Frame.__init__(self, parent, id, title, size=(250, 200))
        bmp = wx.EmptyBitmap(100, 100)
        dc = wx.MemoryDC()
        dc.SelectObject(bmp)
        dc.DrawText("whatever", 50, 50)
        dc.SelectObject(wx.NullBitmap)
        wx.StaticBitmap(self, -1, bmp)
        self.Show(True)


app = wx.App()
Size(None, -1, 'Size')
app.MainLoop()

This code only gives me a black image, what am I doing wrong?
What’s missing here..

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T04:24:23+00:00Added an answer on May 14, 2026 at 4:24 am

    Select the bmp in a wx.MemoryDC, draw anything on that dc and then select that bitmap out e.g.

    import wx
    
    app = None
    
    class Size(wx.Frame):
        def __init__(self, parent, id, title):
            frame = wx.Frame.__init__(self, parent, id, title, size=(250, 200))
            w, h = 100, 100
            bmp = wx.EmptyBitmap(w, h)
            dc = wx.MemoryDC()
            dc.SelectObject(bmp)
            dc.Clear()
            text = "whatever"
            tw, th = dc.GetTextExtent(text)
            dc.DrawText(text, (w-tw)/2,  (h-th)/2)
            dc.SelectObject(wx.NullBitmap)
            wx.StaticBitmap(self, -1, bmp)
            self.Show(True)
    
    
    app = wx.App()
    app.MainLoop()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to draw a stock chart using Google Chart Tools. My self-written webservice
I want to draw a number on an existing drawable. Like the unread count
I want to draw the number badge as shown in the above image on
I want to draw a variable number of equidistant points on a HTML5 canvas
I want to be able to draw the number of the date (1-31) over
I want to develop an app to draw touching the iPhone screen an searching
Using Python I want to be able to draw text at different angles using
How can i draw a box in css? I want a box like the
Why when I want to draw a polyline using Google maps V3.0 (JavaScript API)
I want to draw DirectX content so that it appears to be floating over

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.