Python Forum
[PyGame] How to rotate images
Thread Rating:
  • 4 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[PyGame] How to rotate images
#5
If I add ".convert_alpha()" to the end of the line that loads the image, the issue goes away. Per the docs, it looks like you can avoid this if you use images that don't have an alpha channel (or just call convert first): http://www.pygame.org/docs/ref/transform...orm.rotate

Also, sys.exit() is the end of the program, nothing runs after that. If you want to quit pygame, you should do so before calling sys.exit(). And also "pygame" doesn't exist since you named it pg, so that'd throw an error anyway. It's a personal preference, but I sort of hate seeing sys.exit(), and would rewrite that loop to get it out of there, but if you're fine with it don't worry about it.
Reply


Messages In This Thread
How to rotate images - by LavaCreeperKing - Nov-06-2016, 05:40 PM
RE: How to rotate images - by metulburr - Nov-06-2016, 06:42 PM
RE: How to rotate images - by LavaCreeperKing - Nov-06-2016, 09:38 PM
RE: How to rotate images - by LavaCreeperKing - Nov-26-2016, 10:19 PM
RE: How to rotate images - by nilamo - Nov-28-2016, 08:18 PM
RE: How to rotate images - by LavaCreeperKing - Nov-28-2016, 10:16 PM
RE: How to rotate images - by nilamo - Nov-28-2016, 10:25 PM
RE: How to rotate images - by metulburr - Nov-29-2016, 01:01 PM
RE: How to rotate images - by LavaCreeperKing - Nov-29-2016, 07:34 PM
RE: How to rotate images - by nilamo - Nov-29-2016, 10:26 PM
RE: How to rotate images - by stuckbunny - Jan-02-2020, 08:47 PM
RE: How to rotate images - by michael1789 - Jan-02-2020, 10:36 PM
RE: How to rotate images - by metulburr - Jan-04-2020, 04:21 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How do I use pygame.transform.rotate()? noodlespinbot 1 3,652 Mar-05-2020, 08:08 AM
Last Post: michael1789

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020