QPixmap
The QPixmap class helps hold an image in the form of off-screen image representation.
This class is a JS wrapper around Qt's QPixmap class
A QPixmap provides ability to store an image in the memory.
Example
Hierarchy
↳ QPixmap
Index
Constructors
Properties
Methods
Constructors
constructor
+ new QPixmap(): QPixmap
Overrides Component.constructor
Returns: QPixmap
+ new QPixmap(native: NativeElement): QPixmap
Overrides Component.constructor
Parameters:
| Name | Type |
|---|---|
native | NativeElement |
Returns: QPixmap
+ new QPixmap(filePath: string): QPixmap
Overrides Component.constructor
Parameters:
| Name | Type |
|---|---|
filePath | string |
Returns: QPixmap
Properties
native
• native: NativeElement
nodeChildren
• nodeChildren: Set‹Component›
Inherited from Component.nodeChildren
Optional nodeParent
• nodeParent? : Component
Inherited from Component.nodeParent
Methods
height
â–¸ height(): number
Returns: number
load
â–¸ load(imagePath: string): boolean
Parameters:
| Name | Type |
|---|---|
imagePath | string |
Returns: boolean
loadFromData
â–¸ loadFromData(buffer: Buffer, format?: ImageFormats): boolean
Parameters:
| Name | Type |
|---|---|
buffer | Buffer |
format? | ImageFormats |
Returns: boolean
save
â–¸ save(fileName: string, format?: ImageFormats): boolean
Parameters:
| Name | Type |
|---|---|
fileName | string |
format? | ImageFormats |
Returns: boolean
scaled
â–¸ scaled(width: number, height: number, aspectRatioMode?: AspectRatioMode, transformationMode?: TransformationMode): QPixmap
Parameters:
| Name | Type |
|---|---|
width | number |
height | number |
aspectRatioMode? | AspectRatioMode |
transformationMode? | TransformationMode |
Returns: QPixmap
setNodeParent
â–¸ setNodeParent(parent?: Component): void
Inherited from Component.setNodeParent
Parameters:
| Name | Type |
|---|---|
parent? | Component |
Returns: void
width
â–¸ width(): number
Returns: number
Static fromQVariant
â–¸ fromQVariant(variant: QVariant): QPixmap
Parameters:
| Name | Type |
|---|---|
variant | QVariant |
Returns: QPixmap