Skip to content

Commit

Permalink
fix: insert buffered image
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Neemann authored and steveoh committed Feb 7, 2023
1 parent cdae141 commit 4fc42c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion row.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ def build_mosaic_image(images, object_name):
#: Add buffered image into the mosaic
row_start = (math.floor(i / number_columns)) * tile_width
col_start = (i % number_columns) * tile_width
mosaic_image[row_start : row_start + tile_width, col_start : col_start + tile_width] = img
mosaic_image[row_start : row_start + tile_width, col_start : col_start + tile_width] = buffered_image

i += 1

Expand Down

0 comments on commit 4fc42c0

Please sign in to comment.