CaptureImage.resize Method¶
Module: CaptureImage
Definition¶
Resizes the image in-place to the required width and height.
resize(self, width: int, height: int) -> None
Parameters
widthintin The new width, in pixels.heightintin The new height, in pixels.
Exceptions
An error has occurred during Devices Library execution.
void resize(int width, int height)
Parameters
widthintin The new width, in pixels.heightintin The new height, in pixels.
Exceptions
An error has occurred during Devices Library execution.
public void Resize(int width, int height)
Parameters
widthintin The new width, in pixels.heightintin The new height, in pixels.
Exceptions
An error has occurred during Devices Library execution.
public void resize(int width, int height) throws DevicesException
Parameters
widthintin The new width, in pixels.heightintin The new height, in pixels.
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesCaptureImage_Resize (
    ID3_DEVICES_CAPTURE_IMAGE hCaptureImage,
    int width,
    int height)
Parameters
hCaptureImageID3_DEVICES_CAPTURE_IMAGEin Handle to the CaptureImage object.widthintin The new width, in pixels.heightintin The new height, in pixels.
Returns