CaptureImage.resizeTo Method¶
Module: CaptureImage
Definition¶
Resizes the image to the specified width and height.
resize_to(self, width: int, height: int, dst_capture_image: CaptureImage) -> None
Parameters
widthintin The new width, in pixels.heightintin The new height, in pixels.dst_capture_imageCaptureImagein The destination image that receives the resized image.
Exceptions
An error has occurred during Devices Library execution.
void resizeTo(int width, int height, CaptureImage dstCaptureImage)
Parameters
widthintin The new width, in pixels.heightintin The new height, in pixels.dstCaptureImageCaptureImagein The destination image that receives the resized image.
Exceptions
An error has occurred during Devices Library execution.
public void ResizeTo(int width, int height, CaptureImage dstCaptureImage)
Parameters
widthintin The new width, in pixels.heightintin The new height, in pixels.dstCaptureImageCaptureImagein The destination image that receives the resized image.
Exceptions
An error has occurred during Devices Library execution.
public void resizeTo(int width, int height, CaptureImage dstCaptureImage) throws DevicesException
Parameters
widthintin The new width, in pixels.heightintin The new height, in pixels.dstCaptureImageCaptureImagein The destination image that receives the resized image.
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesCaptureImage_ResizeTo (
    ID3_DEVICES_CAPTURE_IMAGE hCaptureImage,
    int width,
    int height,
    ID3_DEVICES_CAPTURE_IMAGE hDstCaptureImage)
Parameters
hCaptureImageID3_DEVICES_CAPTURE_IMAGEin Handle to the CaptureImage object.widthintin The new width, in pixels.heightintin The new height, in pixels.hDstCaptureImageID3_DEVICES_CAPTURE_IMAGEin The destination image that receives the resized image.
Returns