From 95739fef07e2569cda37150cbb8b1d7ea118ee25 Mon Sep 17 00:00:00 2001 From: Ross Olson Date: Mon, 8 Sep 2025 19:49:31 -0700 Subject: [PATCH] Update ImageDraw.rst Lint --- docs/reference/ImageDraw.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/ImageDraw.rst b/docs/reference/ImageDraw.rst index 6da0e3862..ac0ab3a99 100644 --- a/docs/reference/ImageDraw.rst +++ b/docs/reference/ImageDraw.rst @@ -63,7 +63,7 @@ Transparency and Alpha Channel When generating an image in memory and adding transparent elements (for instance a red rectangle placed on a blue background) to be composited against the background (creating a purple rectangle), you may mistakenly -assume that the base image (generated from `Image.new()`) must be use RGBA +assume that the base image (generated from ``Image.new()``) must be use RGBA color space. This is incorrect. For a semi-transparent element to be composited against the base image, the base image object must be in the RGB color-space. If the base image is kept in the RGBA color space then an