DocumentImage.resize Method¶
Module: DocumentImage
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 Document 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 Document 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 Document Library execution.
public void resize(int width, int height) throws DocumentException
Parameters
widthintin The new width, in pixels.heightintin The new height, in pixels.
Exceptions
An error has occurred during Document Library execution.
public func resize(width: Int32, height: Int32) throws
Parameters
widthInt32in The new width, in pixels.heightInt32in The new height, in pixels.
Exceptions
An error has occurred during Document Library execution.
int id3DocumentImage_Resize (
ID3_DOCUMENT_IMAGE hDocumentImage,
int width,
int height)
Parameters
hDocumentImageID3_DOCUMENT_IMAGEin Handle to the DocumentImage object.widthintin The new width, in pixels.heightintin The new height, in pixels.
Returns