We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b5497c9 + be6cd81 commit 1230493Copy full SHA for 1230493
README.md
@@ -117,12 +117,13 @@ draw.rectangle(area_to_keep, fill=255)
117
118
image_rgba = image.copy()
119
image_rgba.putalpha(image_alpha)
120
+image_rgba = image_rgba.resize((1024, 1024)) # image must be square and 1024x1024
121
image_rgba.save('image_with_transparent_right_half.png')
122
123
# ask DALL·E to fill-in the transparent right half
124
generations = dalle.generate_from_masked_image(
125
"portal to another dimension, digital art",
- "image_with_transparent_right_half.webp",
126
+ "image_with_transparent_right_half.png",
127
)
128
```
129
0 commit comments