processing/processing4

PGraphics saves fully transparent instead of red (P2D)

Open

#737 ouverte le 30 juin 2023

Voir sur GitHub
 (1 commentaire) (0 réactions) (0 assignés)Java (176 forks)auto 404
help wantedopengl

Métriques du dépôt

Stars
 (439 stars)
Métriques de merge PR
 (Métriques PR en attente)

Description

Created by: clankill3r

Processing 4.2, OSX 10.15.7

void setup() {
  size(600, 600, P2D);
  PGraphics pg = createGraphics(64, 64, P2D);
  pg.beginDraw();
  pg.background(255, 0, 0);
  pg.endDraw();

  image(pg, 0, 0);

  pg.save("bug.png");
}

It should save a red image, but it's fully transparent.

Guide contributeur