add_ole_object metod
add_ole_object(self, upper_left_row, top, upper_left_column, left, height, width, image_data)
Lägger till ett OleObject.
Returnerar
def add_ole_object(self, upper_left_row, top, upper_left_column, left, height, width, image_data):
    ...
| Parameter | Typ | Beskrivning | 
|---|---|---|
| upper_left_row | int | |
| top | int | |
| upper_left_column | int | |
| left | int | |
| height | int | |
| width | int | |
| image_data | bytes | 
Exempel
from aspose import pycore
import bytearray
import int
with open("image.jpg", "rb") as fs:
    len = pycore.cast(int, utils.filesize(fs))
    imageData = bytearray(len)
    fs.readinto(imageData)
    oleObject = shapes.add_ole_object(4, 0, 5, 0, 300, 500, imageData)
Se även
- modul aspose.cells.drawing
- klass ShapeCollection