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.
QPixmap inherits from Component
const { QPixmap } = require("@nodegui/nodegui");
const imageUrl = "path/to/png";
const pixMap = new QPixmap(imageUrl);imageUrlstring (optional). Absolute path of the image that needs to be loaded in the memory.
QPixmap can access all the static methods defined in Component
QPixmap can access all the instance properties defined in Component
QPixmap can access all the instance methods defined in Component
Additionally it also has the following instance methods:
loads an image from the url into memory as a Pixmap. returns true if load was successful otherwise returns false.
imageUrlstring (optional). Absolute path of the image that needs to be loaded in the memory.
Scales the pixmap to provided height and width with respect to aspectRatioMode. This method doesnt mutate this pixmap and rather returns a new pixmap with new height and width.
widthnumber. Width in pixels for new pixmap.heightnumber. Height in pixels for new pixmap.aspectRatioModeAspectRatioMode (optional). Specifies how scaling should happen. AspectRatio is an enum from Qt