Click here to Skip to main content
15,881,413 members
Home / Discussions / Graphics
   

Graphics

 
GeneralRe: SharpDX MediaFoundation and DirectShow Pin
RWey15-Apr-21 6:16
RWey15-Apr-21 6:16 
GeneralRe: SharpDX MediaFoundation and DirectShow Pin
Gerry Schmitz15-Apr-21 8:25
mveGerry Schmitz15-Apr-21 8:25 
GeneralRe: SharpDX MediaFoundation and DirectShow Pin
RWey15-Apr-21 9:35
RWey15-Apr-21 9:35 
GeneralRe: SharpDX MediaFoundation and DirectShow Pin
Dave Kreskowiak15-Apr-21 9:40
mveDave Kreskowiak15-Apr-21 9:40 
GeneralRe: SharpDX MediaFoundation and DirectShow Pin
RWey15-Apr-21 10:45
RWey15-Apr-21 10:45 
GeneralRe: SharpDX MediaFoundation and DirectShow Pin
K3 Reviews9-Oct-23 5:18
K3 Reviews9-Oct-23 5:18 
GeneralRe: SharpDX MediaFoundation and DirectShow Pin
SEO3 Softrix13-Dec-22 23:47
SEO3 Softrix13-Dec-22 23:47 
QuestionPygame image wont show up until I close the window Pin
c0d3r1/212-Jul-20 11:04
c0d3r1/212-Jul-20 11:04 
I am creating a game with pygame and an image won't show up until the window is loading to be closed. This is my code so far:
Python
import pygame

pygame.init()
screen = pygame.display.set_mode((800, 600))

pygame.display.set_caption("ALix")
icon = pygame.image.load("nater.jpg")
pygame.display.set_icon(icon)

playerImg = pygame.image.load('nater.jpg')
playerX = 400
playerY = 300

def player():
    screen.blit(playerImg, (playerX, playerY))

running = True
while running:
    screen.fill((255, 255, 255))

    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            running = False
player()

pygame.display.update()


modified 13-Jul-20 3:22am.

AnswerRe: Pygame image wont show up until I close the window Pin
Richard MacCutchan12-Jul-20 21:24
mveRichard MacCutchan12-Jul-20 21:24 
QuestionOpenGL stencil in 2D - advanced (?) issues Pin
Vaclav_10-May-20 5:32
Vaclav_10-May-20 5:32 
QuestionOpenGL removing "objects" - how ? Pin
Vaclav_9-Apr-20 9:53
Vaclav_9-Apr-20 9:53 
AnswerRe: OpenGL removing "objects" - how ? Pin
Graham Breach9-Apr-20 21:22
Graham Breach9-Apr-20 21:22 
GeneralRe: OpenGL removing "objects" - how ? Pin
Vaclav_10-Apr-20 5:35
Vaclav_10-Apr-20 5:35 
GeneralRe: OpenGL removing "objects" - how ? Pin
Graham Breach10-Apr-20 6:45
Graham Breach10-Apr-20 6:45 
GeneralSOLVED Re: OpenGL removing "objects" - how ? Pin
Vaclav_10-Apr-20 7:08
Vaclav_10-Apr-20 7:08 
GeneralRe: OpenGL removing "objects" - how ? Pin
jhonaa22-Mar-22 1:23
jhonaa22-Mar-22 1:23 
AnswerRe: OpenGL removing "objects" - how ? Pin
jhonaa22-Feb-22 1:04
jhonaa22-Feb-22 1:04 
Questiongraphviz - pinning individual graphic elements, i.e. forcing their placement? Pin
kalberts26-Feb-20 12:30
kalberts26-Feb-20 12:30 
QuestionInfographics Pin
lopoivana27-Oct-19 23:19
lopoivana27-Oct-19 23:19 
AnswerRe: Infographics Pin
Richard MacCutchan27-Oct-19 23:20
mveRichard MacCutchan27-Oct-19 23:20 
QuestionCreate 2D graphics editor Pin
Member 1455869629-Aug-19 0:51
Member 1455869629-Aug-19 0:51 
AnswerRe: Create 2D graphics editor Pin
Richard MacCutchan29-Aug-19 2:33
mveRichard MacCutchan29-Aug-19 2:33 
GeneralRe: Create 2D graphics editor Pin
Chandigarh Girl2-Sep-19 23:36
Chandigarh Girl2-Sep-19 23:36 
AnswerRe: Create 2D graphics editor Pin
Regina Hawk1-Sep-19 23:47
Regina Hawk1-Sep-19 23:47 
QuestionShould a Web designer use coding or just PSD/XD Template Pin
Member 1456898628-Aug-19 7:59
Member 1456898628-Aug-19 7:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.