How to use the gooey.gui.imageutil function in Gooey

To help you get started, we’ve selected a few Gooey examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github chriskiehl / Gooey / gooey / gui / components / header.py View on Github external
def _load_image(self, imgPath, targetHeight):
        rawImage = imageutil.loadImage(imgPath)
        sizedImage = imageutil.resizeImage(rawImage, targetHeight)
        return imageutil.wrapBitmap(sizedImage, self)
github chriskiehl / Gooey / gooey / gui / windows / header.py View on Github external
def _load_image(self, img_path, height=70):
    return imageutil.resize_bitmap(self, imageutil._load_image(img_path), height)
github lrq3000 / pyFileFixity / pyFileFixity / lib / gooey / gui / windows / header.py View on Github external
def _load_image(self, img_path, height=70):
    return imageutil.resize_bitmap(self, imageutil._load_image(img_path), height)
github lrq3000 / pyFileFixity / pyFileFixity / lib / gooey / gui / windows / footer.py View on Github external
def _load_image(self, img_path, height=70):
    return imageutil.resize_bitmap(self, imageutil._load_image(img_path), height)
github chriskiehl / Gooey / gooey / gui / windows / footer.py View on Github external
def _load_image(self, img_path, height=70):
    return imageutil.resize_bitmap(self, imageutil._load_image(img_path), height)
github chriskiehl / Gooey / gooey / gui / components / header.py View on Github external
def _load_image(self, imgPath, targetHeight):
        rawImage = imageutil.loadImage(imgPath)
        sizedImage = imageutil.resizeImage(rawImage, targetHeight)
        return imageutil.wrapBitmap(sizedImage, self)