CopyImage

[DllImport("user32.dll", SetLastError = true)]
public static extern IntPtr CopyImage(
   IntPtr h,
   uint type,
   int cx,
   int cy,
   uint flags
);

Microsoft documentation: Link

Last updated