extract method

extract(self, file_name, password)

Extract raw 3D content from PDF file.

Returns

A list of all 3D contents in bytes, including the formats that Aspose.3D don’t supported.


def extract(self, file_name, password):
    ...
ParameterTypeDescription
file_namestrFile name of input PDF file
passwordbytesPassword of the PDF file

extract(self, stream, password)

Extract raw 3D content from PDF stream.

Returns

A list of all 3D contents in bytes, including the formats that Aspose.3D don’t supported.


def extract(self, stream, password):
    ...
ParameterTypeDescription
streamio.RawIOBaseStream of input PDF file
passwordbytesPassword of the PDF file

See Also