load method
Contents
[
Hide
]load
Loads a new image from the specified file.
Returns
The loaded drawing.
def load(self, file_path):
...
Parameter | Type | Description |
---|---|---|
file_path | str | The file path to load image from. |
load
Loads a new image from the specified stream.
Returns
The loaded drawing.
def load(self, stream):
...
Parameter | Type | Description |
---|---|---|
stream | io.RawIOBase | The stream to load image from. |
load
Loads a new image from the specified file.
Returns
The loaded drawing.
def load(self, file_path, load_options):
...
Parameter | Type | Description |
---|---|---|
file_path | str | The file path to load image from. |
load_options | LoadOptions | The load options. |
load
Loads a new image from the specified stream.
Returns
The loaded drawing.
def load(self, stream, load_options):
...
Parameter | Type | Description |
---|---|---|
stream | io.RawIOBase | The stream to load image from. |
load_options | LoadOptions | The load options. |
See Also
- module
aspose.cad.fileformats.threeds
- class
ThreeDSImage