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 | null
Inherited from Component.native
Methods
convertFromImage
â–¸ convertFromImage(image
: QImage, flags
: ImageConversionFlag): boolean
Parameters:
Name | Type |
---|---|
image | QImage |
flags | ImageConversionFlag |
Returns: boolean
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
setDevicePixelRatio
â–¸ setDevicePixelRatio(ratio
: number): void
Sets the device pixel ratio for the image. This is the ratio between image pixels and device-independent pixels
Parameters:
Name | Type |
---|---|
ratio | number |
Returns: void
width
â–¸ width(): number
Returns: number
Static
fromImage
â–¸ fromImage(image
: QImage, flags
: ImageConversionFlag): QPixmap
Parameters:
Name | Type |
---|---|
image | QImage |
flags | ImageConversionFlag |
Returns: QPixmap
Static
fromQVariant
â–¸ fromQVariant(variant
: QVariant): QPixmap
Parameters:
Name | Type |
---|---|
variant | QVariant |
Returns: QPixmap