/**
 * Copyright (c) 2021 Dominic Masters
 * 
 * This software is released under the MIT License.
 * https://opensource.org/licenses/MIT
 */

#pragma once
#include "common.h"
#include "file.h"

void imageCopy(
  uint8_t *source, int32_t sourceWidth, int32_t sourceHeight,
  uint8_t *dest, int32_t destWidth, int32_t destHeight,
  int32_t cropX, int32_t cropY, int32_t cropWidth, int32_t cropHeight,
  int32_t pasteX, int32_t pasteY,
  int32_t channels
);