Py5Graphics.copy()#

Copies a region of pixels from the Py5Graphics object to another area of the canvas and copies a region of pixels from an image used as the src_img parameter into the Py5Graphics object.

Description#

Copies a region of pixels from the Py5Graphics object to another area of the canvas and copies a region of pixels from an image used as the src_img parameter into the Py5Graphics object. If the source and destination regions aren’t the same size, it will automatically resize the source pixels to fit the specified target region. No alpha information is used in the process, however if the source image has an alpha channel set, it will be copied as well.

This function ignores Py5Graphics.image_mode().

This method is the same as copy() but linked to a Py5Graphics object. To see example code for how it can be used, see copy().

Underlying Processing method: PGraphics.copy

Signatures#

copy() -> Py5Image

copy(
    src: Py5Image,  # a source image to copy pixels from
    sx: int,  # x-coordinate of the source's upper left corner
    sy: int,  # y-coordinate of the source's upper left corner
    sw: int,  # source image width
    sh: int,  # source image height
    dx: int,  # x-coordinate of the destination's upper left corner
    dy: int,  # y-coordinate of the destination's upper left corner
    dw: int,  # destination image width
    dh: int,  # destination image height
    /,
) -> None

copy(
    sx: int,  # x-coordinate of the source's upper left corner
    sy: int,  # y-coordinate of the source's upper left corner
    sw: int,  # source image width
    sh: int,  # source image height
    dx: int,  # x-coordinate of the destination's upper left corner
    dy: int,  # y-coordinate of the destination's upper left corner
    dw: int,  # destination image width
    dh: int,  # destination image height
    /,
) -> None

Updated on March 06, 2023 02:49:26am UTC