Tagged Questions
0
votes
1answer
29 views
Pygame drawing doesn't work correctly
I have a problem with drawing a simple rectangle on the screen. I've no clue why it fails to draw, I've tried several things: drawing it on the background surface, changing the order of the function ...
0
votes
3answers
55 views
Can't draw rect in python pygame
I'm just getting started with PyGame. Here, I'm trying to draw a rectangle, but it's not rendering.
Here's the whole program.
import pygame
from pygame.locals import *
import sys
import random
...
0
votes
1answer
88 views
How to speed up python's 'turtle' function and stop it freezing at the end
I have written a turtle program in python, but there are two problems.
It goes way too slow for larger numbers, I was wonder how I can speed up turtle.
It freezes after it finishes and when clicked ...
1
vote
4answers
291 views
100x100 image with random pixel colour
I'm trying to make a 100x100 image with each pixel being a different random colour, like this example:
I've tried to use matplotlib but I'm not having much luck. Should I maybe be using PIL?
-1
votes
1answer
72 views
draw a colored array in python [duplicate]
I'm learning python now. I try to draw a colored array. This array looks like excel table but it has only one line and 200 cells. And I want to mark cells black every 5 cells and output it as a ...
0
votes
1answer
159 views
pil draw text with different colors
Hi to draw three different text with different options for ex:
text-number-1 , font=arial, color=red
text-number-2 , font=veranda, color=blue, size=30
text-number-3 , font=tahoma, color=green, ...
0
votes
0answers
218 views
Networkx Directed Graph Python
I want to draw directed graph with Python library Networkx, problem it that is I have from Node1 to Node1 edge, and from Node2 to Node2 back edge, the second label is written over first label.
I need ...
0
votes
0answers
129 views
how to create a rectangle
I am new to Python. I wish to create my own Turtle class so that I can draw a rectangle inside a given a GUI window class as shown in the code below. It should be run in Jython. 2 Java methods ...
0
votes
0answers
189 views
Migrating from xlib to xcb, drawing
Edit: I modified the code a little to take out some unnecessary stuff, for some reason before I needed to use fillrectangle so the window was drawn correctly i tested and now works fine for some ...
0
votes
1answer
74 views
matplotlib.PatchCollection always getting drawn last
I have a matplotlib.PatchCollection that I want to add to a plot. But I also have Text and other Patches I am adding straight onto the plot. So it looks like this -
node.shape = ...
0
votes
2answers
198 views
Python - popup message drawn on the screen
I'm writing a program and I need to inform the user about some changes with a popup message, but not a popup window. Something like the rectangle informing about new message in Kadu - no window, just ...
0
votes
1answer
118 views
How to animate drawings in pygame (movement)
I have been trying to animate drawing elements without success. I can animate imported images, but when I try to animate drawings generated by pygame they remain static.
Edit: By "animate" I mean "to ...
0
votes
0answers
153 views
Can't close plot using matplotlib and draw()/ion()
I'm trying to plot some equations using matplotlib and keep my main programa running, so I started to use draw() instead of show(). Everything is working as expected except that I cant close the ...
1
vote
1answer
137 views
PIL and Tkinter for drawing software
I am trying to write a code that would place a point/line/whatever at the mouse coordinates, aka Paint. I am using PIL and Tkinter. The problem is I can't understand how to realise canvas update.
...
4
votes
3answers
1k views
How to draw images in tkinter window
How do I draw an image in a tkinter window (I'm using python 3.3)? I'm looking for a statement which would draw an image at a given position on a tkinter window.
yeah...
Any answers would be ...
-1
votes
3answers
193 views
Python & Pygame: Updating all elements in a list under a loop during iteration
i am working on a program in Python and using Pygame. this is what the basic code looks like:
while 1:
screen.blit(background, (0,0))
for event in pygame.event.get():
if event.type == ...
2
votes
1answer
319 views
Draw a Line in Python Mayavi
How to draw a line in 3D space in Python Mayavi? Is there a function from MLAB module that allows me to specify the start and end point of the line which will be drawn?
0
votes
1answer
357 views
Use wxpython DrawText function to add text in a Bitmap
I'm trying to made a little graphic with a nice colour gradient and a text
the colour gradient works now fine (only testing so code still messy)
but the text doesn't show up up
can someone please ...
0
votes
1answer
319 views
Pyglet: Sprite.draw() and Batch.draw() don't work, but Image.blit does
In pyglet, which I'm learning, Image.blit() works, but Sprite.draw() doesn't, nor Batch.draw(), even in this simple code:
import pyglet
win = pyglet.window.Window()
img = ...
0
votes
2answers
98 views
Pythonic Way To Draw Polygon
Specifically, I have a list of points. I want to connect these points together to create a polygon.
The obvious way to do this is the C-style:
39 def drawPoly(poly):
40 for i in range(0, ...
2
votes
2answers
483 views
Can't draw() sprites in pyglet
For some reason, I can't get pyglet to draw sprites. Here's my code:
import pyglet
game = pyglet.window.Window(640, 480, "I'm a window")
batch = pyglet.graphics.Batch()
pyglet.resource.path = ...
-2
votes
1answer
94 views
PyGame not rendering shapes?
I have made the following code to render the map using tiles, it loops through the file and translates letters into tiles (rectangles);
currtile_x = 0
currtile_y = 0
singlerun = 1
if singlerun == 1:
...
2
votes
2answers
261 views
How would I draw walls using Pygame?
I'm wondering how I would draw walls using pygame, and was wondering whether I would have to screen.blit(tile) for every single tile around the edge, I am hoping there is a simpler way. I only know of ...
1
vote
1answer
123 views
Undo steps in Pygame
I was wondering how I would undo drawing steps in Python/Pygame.
Basically I have made the mouse draw lines, and when I click my undo Rect, I want the screen to revert back to its original state ...
0
votes
2answers
748 views
Draw simple shapes and save to file (pdf)
I am looking for a python library that I can use to draw simple shapes and characters and then save to a file (in a format convertible to pdf). I would prefer if I did not need an X-server running.
...
1
vote
1answer
95 views
How to visualize geocoordinates by dots with python
I have a whole bunch of geocoordinates (around 125000 from all over the world) which I want to visualize in a coordinate system (for printing later). Which is the easiest way to go?
2
votes
1answer
226 views
Explicit vertex position in python graph-tool
I am using python graph-tool. To draw graphs, it uses graph_draw function. I want to send vertex positions explicitly to dot engine. It turns out that I can pass a property map named pos. I tried ...
2
votes
3answers
687 views
Can't use variables in pygame.draw.circle?
When I try to make a shape using variables, I keep getting this error message:
"TypeError: integer argument expected, got float"
import pygame._view
import pygame, sys
from pygame.locals import *
...
1
vote
2answers
317 views
How to save tkinter table as an image
I am drawing a table using tKinter. I was wondering if there was a way to export the table as an image.
for r in range(numberOfRows):
for c in range(numberOfColumns):
l = ...
1
vote
1answer
624 views
python ImageDraw.text writes through the image borders
I am trying to write text to an image. (it is part of a script that will hundreds of files and make hundreds of images)
The only problem is that the function I want to use to write text to an image, ...
3
votes
2answers
467 views
Pygame: How to draw in non rectangle clipping area
Hi I would like to set in pygame non rectangle clipping area (in this case as character "P"), where it would be strict limited, where to draw another objects.
Is there any option?
thanks a lot
0
votes
1answer
198 views
Is it possible to use variables in PIL (python)?
i'm programing in python 3.1 and using a PIL which are updated for it aswel.
Now it's so that my program is getting info from a webpage and i want this info to be drawed at a picture which i already ...
1
vote
1answer
290 views
pygame.gfxdraw.aacircle gows funny for big circles, any alternatives?
Working on my Major project for software design and development and have run into the hurdle that when using pygame.gfxdraw.aacircle to draw big circles, the output goes screwy as seen here
...
0
votes
3answers
480 views
Python Tkinter: Draw arrows within Label
I want to draw arrows (that change size dynamically) within a Label or any other widget. I have these arranged as a grid. How can I do this? Would I need a Canvas? (not used yet ... currently just a ...
3
votes
2answers
750 views
How to draw Grid World using Python
I want to draw a Grid World (similar to a table), where cells may contain robots or obstacles. A dot/arrow would do to represent the robot and colouring the cells in black for examples could represent ...
0
votes
1answer
147 views
Pygame doesn't draw
I need help with a program I'm making. It's a version of Conway's Game of Life.
This game is right now made out of 3 files: main.py, cellBoard.py, cell.py
main.py takes care to instance cellboard and ...
0
votes
1answer
389 views
How to draw a translucent rectangle on a static text?
I draw a tranlucent rectangle on my panel but on the places that have static text's the rectangle is not filled.
I've drawn rectangles inside each static text but when I do that, the correspondent ...
4
votes
3answers
5k views
How to resize and draw an image using wxpython?
I want to load an image, resize it to a given size and after draw it in a specific position in a panel.
All this using wxpython.
How can I do it?
Thanks in advance!
3
votes
2answers
267 views
draw hebrew text to an image using Image module (python)
Hi
I am trying to use Image module in order to make bitmaps with hebrew lettering in it.
when printing from the shell (idle) I managed to print hebrew, but when trying to draw text to a bitmap it ...
4
votes
2answers
1k views
Draw bold/italic text with PIL?
How to draw bold/italic text with PIL? ImageFont.truetype(file, size) has an option to specify font size only.
1
vote
2answers
2k views
draw text with GLUT / OpenGL in Python
Hey,
I m drawing text with OpenGL in Python. It all works ok, however the font is really bad.
If I make it thick the letters start to look very occurred (especially the ones which are round like 'o' ...
3
votes
3answers
4k views
How to create MS Paint clone with Python and pygame
As I see it, there are two ways to handle mouse events to draw a picture.
The first is to detect when the mouse moves and draw a line to where the mouse is, shown here. However, the problem with ...
