Picture

Overview

Picture is a class in Aspose.Cells FOSS for Java.

Represents an embedded image in a worksheet.

Properties

NameTypeAccessDescription
nameStringRead
upperLeftRowintRead
upperLeftColumnintRead
lowerRightRowintRead
lowerRightColumnintRead
imageTypeImageTypeReadImage type detected from the binary data signature.
databyte[]Read
contentTypeStringReadMIME content type derived from image data.

Methods

SignatureDescription
getName()String
setName(name: String)
getUpperLeftRow()int
setUpperLeftRow(row: int)
getUpperLeftColumn()int
setUpperLeftColumn(col: int)
getLowerRightRow()int
setLowerRightRow(row: int)
getLowerRightColumn()int
setLowerRightColumn(col: int)
getImageType()ImageTypeImage type detected from the binary data signature.
getData()byte[]
setData(data: byte[])
getContentType()StringMIME content type derived from image data.

See Also