Python PyQt5.QtGui.QImage() Examples
The following are 30
code examples of PyQt5.QtGui.QImage().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
PyQt5.QtGui
, or try the search function
.
Example #1
Source File: sorter.py From Lector with GNU General Public License v3.0 | 7 votes |
def resize_image(cover_image_raw): if isinstance(cover_image_raw, QtGui.QImage): cover_image = cover_image_raw else: cover_image = QtGui.QImage() cover_image.loadFromData(cover_image_raw) # Resize image to what literally everyone # agrees is an acceptable cover size cover_image = cover_image.scaled( 420, 600, QtCore.Qt.IgnoreAspectRatio) byte_array = QtCore.QByteArray() buffer = QtCore.QBuffer(byte_array) buffer.open(QtCore.QIODevice.WriteOnly) cover_image.save(buffer, 'jpg', 75) cover_image_final = io.BytesIO(byte_array) cover_image_final.seek(0) return cover_image_final.getvalue()
Example #2
Source File: part-3.py From Writer-Tutorial with MIT License | 7 votes |
def insertImage(self): # Get image file name filename = QtWidgets.QFileDialog.getOpenFileName(self, 'Insert image',".","Images (*.png *.xpm *.jpg *.bmp *.gif)") if filename: # Create image object image = QtGui.QImage(filename) # Error if unloadable if image.isNull(): popup = QtWidgets.QMessageBox(QtWidgets.QMessageBox.Critical, "Image load error", "Could not load image file!", QtWidgets.QMessageBox.Ok, self) popup.show() else: cursor = self.text.textCursor() cursor.insertImage(image,filename)
Example #3
Source File: gui.py From will-people-like-your-image with GNU Lesser General Public License v3.0 | 6 votes |
def displayImg(self, frame): # w_width = self.frameGeometry().width() w_height = self.frameGeometry().height() height, width = frame.shape[:2] if height > w_height * 0.8: scale = w_height * 0.8 / float(height) frame = cv2.resize(frame, (0, 0), fx=scale, fy=scale) height, width = frame.shape[:2] # np.zeros((height, width, 3), dtype=np.uint8) data = np.array(frame[:, :, ::-1], dtype=np.uint8) q_img = QtGui.QImage(data, width, height, 3 * width, QtGui.QImage.Format_RGB888) pixmap01 = QtGui.QPixmap.fromImage(q_img) self.image_preview.setPixmap(pixmap01) self.image_preview.setFixedWidth(width) self.image_preview.setFixedHeight(height)
Example #4
Source File: PrintJobPreviewImageProvider.py From Cura with GNU Lesser General Public License v3.0 | 6 votes |
def requestImage(self, id: str, size: QSize) -> Tuple[QImage, QSize]: """Request a new image. :param id: id of the requested image :param size: is not used defaults to QSize(15, 15) :return: an tuple containing the image and size """ # The id will have an uuid and an increment separated by a slash. As we don't care about the value of the # increment, we need to strip that first. uuid = id[id.find("/") + 1:] for output_device in Application.getInstance().getOutputDeviceManager().getOutputDevices(): if not hasattr(output_device, "printJobs"): continue for print_job in output_device.printJobs: if print_job.key == uuid: if print_job.getPreviewImage(): return print_job.getPreviewImage(), QSize(15, 15) return QImage(), QSize(15, 15) return QImage(), QSize(15, 15)
Example #5
Source File: ImageReader.py From Cura with GNU Lesser General Public License v3.0 | 6 votes |
def preRead(self, file_name, *args, **kwargs): img = QImage(file_name) if img.isNull(): Logger.log("e", "Image is corrupt.") return MeshReader.PreReadResult.failed width = img.width() depth = img.height() largest = max(width, depth) width = width / largest * self._ui.default_width depth = depth / largest * self._ui.default_depth self._ui.setWidthAndDepth(width, depth) self._ui.showConfigUI() self._ui.waitForUIToClose() if self._ui.getCancelled(): return MeshReader.PreReadResult.cancelled return MeshReader.PreReadResult.accepted
Example #6
Source File: PrintJobOutputModel.py From Cura with GNU Lesser General Public License v3.0 | 6 votes |
def __init__(self, output_controller: "PrinterOutputController", key: str = "", name: str = "", parent = None) -> None: super().__init__(parent) self._output_controller = output_controller self._state = "" self._time_total = 0 self._time_elapsed = 0 self._name = name # Human readable name self._key = key # Unique identifier self._assigned_printer = None # type: Optional[PrinterOutputModel] self._owner = "" # Who started/owns the print job? self._configuration = None # type: Optional[PrinterConfigurationModel] self._compatible_machine_families = [] # type: List[str] self._preview_image_id = 0 self._preview_image = None # type: Optional[QImage]
Example #7
Source File: localmapwidget.py From PyPipboyApp with GNU General Public License v3.0 | 6 votes |
def _slotMapUpdate(self): #self.mapCoords.init( # self._mapUpdate.nw[0], self._mapUpdate.nw[1], # self._mapUpdate.ne[0], self._mapUpdate.ne[1], # self._mapUpdate.sw[0], self._mapUpdate.sw[1], # self.mapItem.MAP_NWX, self.mapItem.MAP_NWY, # self.mapItem.MAP_NEX, self.mapItem.MAP_NEY, # self.mapItem.MAP_SWX, self.mapItem.MAP_SWY ) image = QtGui.QImage(self._mapUpdate.pixels, self._mapUpdate.width, self._mapUpdate.height, QtGui.QImage.Format_Indexed8) image.setColorTable(self.COLORTABLE) self.playerMarker.setMapPos(self._mapUpdate.width/2, self._mapUpdate.height/2, self.playerMarker.mapPosR, False) if self.mapItem: self.mapItem._setMapPixmap(QtGui.QPixmap.fromImage(image)) if self.mapEnabledFlag: self.playerMarker.setVisible(True) else: self.playerMarker.setVisible(False)
Example #8
Source File: newsWindow.py From GROOT with Mozilla Public License 2.0 | 6 votes |
def __init__(self,parent="None",title="None",description="None",url="None",urlImage="None"): super(Tiles,self).__init__() #Heading Widget self.heading = QLabel('<b>%s</b>'%title) #SubHeading Widget with link to open in browser self.subHeading = QLabel('{}<a href="{}">...more</a>'.format(description,url)) self.subHeading.setOpenExternalLinks(True) #Image Widget with article try: data = urllib.request.urlopen(urlImage).read() except: data = urllib.request.urlopen("https://ibb.co/XY30sjs").read() self.image = QImage() self.image.loadFromData(data) self.imageLabel = QLabel("image") self.imageLabel.setPixmap(QPixmap(self.image).scaled(64,64,Qt.KeepAspectRatio)) self.tileLayout = QGridLayout() self.tileLayout.addWidget(self.heading,1,0) self.tileLayout.addWidget(self.imageLabel,1,1) self.tileLayout.addWidget(self.subHeading,2,0)
Example #9
Source File: genQrcode.py From Tools with MIT License | 6 votes |
def genQrcode(self): content = self.content_edit.text() try: margin = int(self.margin_spinbox.text()) except: margin = 0 size = int(self.size_combobox.currentText().split('*')[0]) qr = qrcode.QRCode(version=1, error_correction=qrcode.constants.ERROR_CORRECT_L, box_size=size//29, border=margin) qr.add_data(content) self.qr_img = qr.make_image() fp = io.BytesIO() self.qr_img.save(fp, 'BMP') qimg = QtGui.QImage() qimg.loadFromData(fp.getvalue(), 'BMP') qimg_pixmap = QtGui.QPixmap.fromImage(qimg) self.show_label.setPixmap(qimg_pixmap)
Example #10
Source File: mainWindow.py From pychemqt with GNU General Public License v3.0 | 6 votes |
def paintEvent(self, event): if self.count(): QtWidgets.QTabWidget.paintEvent(self, event) else: painter = QtGui.QPainter(self) rect = event.rect() image = QtGui.QImage("images/pychemqt.png") rectImage = QtCore.QRect(25, rect.center().y()-50, 100, 100) painter.drawImage(rectImage, image) txt = QtWidgets.QApplication.translate( "pychemqt", """Welcome to pychemqt, a software for simulating Chemical Engineering units operations, Copyright © 2012 Juan José Gómez Romera (jjgomera) Licenced with GPL.v3 This software is distributed in the hope that it will be useful, but without any warranty, it is provided "as is" without warranty of any kind You can start by creating a new project or opening an existing project.""", None) rect.setLeft(150) painter.drawText(rect, QtCore.Qt.AlignVCenter, txt)
Example #11
Source File: mainWindow.py From pychemqt with GNU General Public License v3.0 | 6 votes |
def savePFDImage(self): if self.filename[self.idTab]: dir = os.path.dirname(str(self.filename[self.idTab])) else: dir = "." fname = QtWidgets.QFileDialog.getSaveFileName( None, QtWidgets.QApplication.translate("pychemqt", "Save PFD as image"), dir, "Portable Network Graphics (*.png)")[0] if fname: rect = self.currentScene.sceneRect() img = QtGui.QImage( rect.width(), rect.height(), QtGui.QImage.Format_ARGB32_Premultiplied) p = QtGui.QPainter(img) self.currentScene.render(p) p.end() img.save(fname)
Example #12
Source File: view.py From eddy with GNU General Public License v3.0 | 6 votes |
def setGridSize(self, size): """ Sets the grid size. """ action = self.session.action('toggle_grid') size = clamp(size, 0) if size <= 0 or not action.isChecked(): brush = QtGui.QBrush(QtCore.Qt.NoBrush) else: image = QtGui.QImage(size, size, QtGui.QImage.Format_RGB32) image.fill(QtCore.Qt.white) painter = QtGui.QPainter(image) painter.setPen(QtGui.QPen(QtGui.QBrush(QtGui.QColor(80, 80, 80, 255)), 1, QtCore.Qt.SolidLine)) painter.drawPoint(QtCore.QPointF(0, 0)) painter.end() brush = QtGui.QBrush(image) self.setBackgroundBrush(brush)
Example #13
Source File: table.py From FeelUOwn with GNU General Public License v3.0 | 6 votes |
def show_cover(self, cover, cover_uid, as_background=False): cover = Media(cover, MediaType.image) url = cover.url app = self._app content = await app.img_mgr.get(url, cover_uid) img = QImage() img.loadFromData(content) pixmap = QPixmap(img) if not pixmap.isNull(): if as_background: self.meta_widget.set_cover_pixmap(None) self._app.ui.right_panel.show_background_image(pixmap) else: self._app.ui.right_panel.show_background_image(None) self.meta_widget.set_cover_pixmap(pixmap) self._app.ui.table_container.updateGeometry()
Example #14
Source File: OpenCVQImage.py From vidpipe with GNU General Public License v3.0 | 6 votes |
def __init__( self, opencvBgrImg ): # depth = cv2.IPL_DEPTH_8U if len( opencvBgrImg.shape ) == 3: h, w, nChannels = opencvBgrImg.shape opencvRgbImg = np.zeros( ( h, w, 3 ), np.uint8 ) opencvRgbImg = cv2.cvtColor( opencvBgrImg, cv2.COLOR_BGR2RGB ) else: # img_format = QtGui.QImage.Format_Mono h, w = opencvBgrImg.shape # opencvRgbImg = np.zeros( ( h, w, 3 ), np.uint8 ) opencvRgbImg = cv2.cvtColor( opencvBgrImg, cv2.COLOR_GRAY2RGB ) # cv2.mixChannels( [ opencvBgrImg ], [ opencvRgbImg ], [ 0, 2 ] ) # if depth != cv.IPL_DEPTH_8U or nChannels != 3: # raise ValueError("the input image must be 8-bit, 3-channel") self._imgData = opencvRgbImg.tostring() super( OpenCVQImage, self ).__init__( self._imgData, w, h, QtGui.QImage.Format_RGB888 )
Example #15
Source File: QtImageViewer.py From PyQtImageViewer with MIT License | 6 votes |
def setImage(self, image): """ Set the scene's current image pixmap to the input QImage or QPixmap. Raises a RuntimeError if the input image has type other than QImage or QPixmap. :type image: QImage | QPixmap """ if type(image) is QPixmap: pixmap = image elif type(image) is QImage: pixmap = QPixmap.fromImage(image) else: raise RuntimeError("ImageViewer.setImage: Argument must be a QImage or QPixmap.") if self.hasImage(): self._pixmapHandle.setPixmap(pixmap) else: self._pixmapHandle = self.scene.addPixmap(pixmap) self.setSceneRect(QRectF(pixmap.rect())) # Set scene size to image size. self.updateViewer()
Example #16
Source File: gui_utils.py From spimagine with BSD 3-Clause "New" or "Revised" License | 6 votes |
def arrayFromImage(fName): """converts png image to float32 array returns an array of shape [w,h,3] """ try: img = QtGui.QImage(fName).convertToFormat(QtGui.QImage.Format_RGB32) Nx, Ny = img.width(),img.height() tmp = img.bits().asstring(img.numBytes()) arr = np.frombuffer(tmp, np.uint8).reshape((Ny,Nx,4)) arr = arr.astype(np.float32)/np.amax(arr) return arr[:,:,:-1][:,:,::-1] except Exception as e: print(e) print("could not load image %s"%fName) return np.zeros((10,100,3),np.float32)
Example #17
Source File: spritelib.py From Miyamoto with GNU General Public License v3.0 | 6 votes |
def GetImg(imgname, image=False): """ Returns the image path from the PNG filename imgname """ imgname = str(imgname) # Try to find the best path path = 'miyamotodata/sprites/' + imgname for folder in reversed(SpritesFolders): # find the most recent copy tryPath = folder + '/' + imgname if os.path.isfile(tryPath): path = tryPath break # Return the appropriate object if os.path.isfile(path): if image: return QtGui.QImage(path) else: return QtGui.QPixmap(path)
Example #18
Source File: average3.py From picasso with MIT License | 6 votes |
def histtoImage(self, image): cmap = np.uint8(np.round(255 * plt.get_cmap("magma")(np.arange(256)))) image /= image.max() image = np.minimum(image, 1.0) image = np.round(255 * image).astype("uint8") Y, X = image.shape self._bgra = np.zeros((Y, X, 4), dtype=np.uint8, order="C") self._bgra[..., 0] = cmap[:, 2][image] self._bgra[..., 1] = cmap[:, 1][image] self._bgra[..., 2] = cmap[:, 0][image] qimage = QtGui.QImage(self._bgra.data, X, Y, QtGui.QImage.Format_RGB32) qimage = qimage.scaled( self.viewxy.width(), np.round(self.viewxy.height() * Y / X), QtCore.Qt.KeepAspectRatioByExpanding, ) pixmap = QtGui.QPixmap.fromImage(qimage) return pixmap
Example #19
Source File: average3.py From picasso with MIT License | 6 votes |
def render_scene( self, autoscale=False, use_cache=False, cache=True, viewport=None ): kwargs = self.get_render_kwargs(viewport=viewport) n_channels = len(self.locs) if n_channels == 1: self.render_single_channel( kwargs, autoscale=autoscale, use_cache=use_cache, cache=cache ) else: self.render_multi_channel( kwargs, autoscale=autoscale, use_cache=use_cache, cache=cache ) self._bgra[:, :, 3].fill(255) Y, X = self._bgra.shape[:2] qimage = QtGui.QImage(self._bgra.data, X, Y, QtGui.QImage.Format_RGB32) return qimage
Example #20
Source File: waiting_animation.py From malss with MIT License | 6 votes |
def paintEvent(self, event): painter = QPainter() painter.begin(self) painter.setRenderHint(QPainter.Antialiasing) painter.fillRect(event.rect(), QBrush(QColor(255, 255, 255, 200))) painter.setPen(QPen(Qt.NoPen)) if self.lists is not None: path = os.path.abspath(os.path.dirname(__file__)) + '/static/' path += self.lists[self.list_index] + '.png' self.list_index += 1 if self.list_index >= len(self.lists): self.list_index = 0 image = QImage(path) rect_image = image.rect() rect_painter = event.rect() dx = (rect_painter.width() - rect_image.width()) / 2.0 dy = (rect_painter.height() - rect_image.height()) / 2.0 painter.drawImage(dx, dy, image) painter.end()
Example #21
Source File: QtImageViewer.py From PyQtImageViewer with MIT License | 5 votes |
def loadImageFromFile(self, fileName=""): """ Load an image from file. Without any arguments, loadImageFromFile() will popup a file dialog to choose the image file. With a fileName argument, loadImageFromFile(fileName) will attempt to load the specified image file directly. """ if len(fileName) == 0: if QT_VERSION_STR[0] == '4': fileName = QFileDialog.getOpenFileName(self, "Open image file.") elif QT_VERSION_STR[0] == '5': fileName, dummy = QFileDialog.getOpenFileName(self, "Open image file.") if len(fileName) and os.path.isfile(fileName): image = QImage(fileName) self.setImage(image)
Example #22
Source File: main_window.py From smpl_viewer with MIT License | 5 votes |
def _to_pixmap(im): if im.dtype == np.float32 or im.dtype == np.float64: im = np.uint8(im * 255) if len(im.shape) < 3 or im.shape[-1] == 1: im = cv2.cvtColor(im, cv2.COLOR_GRAY2RGB) else: im = cv2.cvtColor(im, cv2.COLOR_BGR2RGB) qimg = QtGui.QImage(im, im.shape[1], im.shape[0], im.strides[0], QtGui.QImage.Format_RGB888) return QtGui.QPixmap(qimg)
Example #23
Source File: collection.py From FeelUOwn with GNU General Public License v3.0 | 5 votes |
def show_cover(self, cover, cover_uid): meta_widget = self.collection_body.meta_widget cover = Media(cover, MediaType.image) cover = cover.url app = self._app content = await app.img_mgr.get(cover, cover_uid) img = QImage() img.loadFromData(content) pixmap = QPixmap(img) if not pixmap.isNull(): meta_widget.set_cover_pixmap(pixmap)
Example #24
Source File: PrintJobOutputModel.py From Cura with GNU Lesser General Public License v3.0 | 5 votes |
def getPreviewImage(self) -> Optional[QImage]: return self._preview_image
Example #25
Source File: main_window.py From CHATIMUSMAXIMUS with GNU General Public License v3.0 | 5 votes |
def _get_icon_dict(): icon_path = path.join(path.dirname(__file__), 'resources', 'icons', '') filepaths = glob.glob(str(icon_path) + '*.png') filenames = [path.basename(f).split('.')[0] for f in filepaths] file_platform = zip(filepaths, filenames) icon_dict = {name: QtGui.QImage(path) for (path, name) in file_platform} return icon_dict
Example #26
Source File: Widgets.py From Jade-Application-Kit with GNU General Public License v3.0 | 5 votes |
def setBackgroundImage(self, image): screen = getScreenGeometry() pixmap = QPixmap(QImage(image)).scaled(screen.width(), screen.height(), Qt.KeepAspectRatioByExpanding) self.label.setPixmap(pixmap) self.label.setGeometry(0, 0, screen.width(), self.label.sizeHint().height())
Example #27
Source File: Widgets.py From Jade-Application-Kit with GNU General Public License v3.0 | 5 votes |
def setBackgroundImage(self, image): screen = getScreenGeometry() pixmap = QPixmap(QImage(image)).scaled(screen.width(), screen.height(), Qt.KeepAspectRatioByExpanding) self.label.setPixmap(pixmap) self.label.setGeometry(0, 0, screen.width(), self.label.sizeHint().height())
Example #28
Source File: xai_viewer.py From lung_nodule_detector with MIT License | 5 votes |
def update_slide(self): img = np.array(self.slice_arr[self.slice_index], dtype=np.uint8) image = QtGui.QImage(img, self.slice_width, self.slice_height, self.slice_width * 3, QtGui.QImage.Format_RGB888) pixmap = QtGui.QPixmap.fromImage(image) self.slide_show_label.setAlignment(QtCore.Qt.AlignCenter) self.slide_show_label.setPixmap(pixmap.scaled(791, 481, QtCore.Qt.KeepAspectRatio)) self.slide_view_label.setText("Slide View " + str(self.slice_index) + "/" + str(self.slice_num - 1))
Example #29
Source File: BinViewMode.py From MARA_Framework with GNU Lesser General Public License v3.0 | 5 votes |
def cache(self): for i in [1,2]: #pix = self._getNewPixmap(self.width, self.height) if not self.isInCache(self.dataModel.getPageOffset(i)): pix = QtGui.QImage(self.width, self.height, QtGui.QImage.Format_ARGB32) self.scrollPages(1, cachePix=pix, pageOffset=i) self.Paints[self.dataModel.getPageOffset(i)] = pix #print 'cache'
Example #30
Source File: BinViewMode.py From qiew with GNU General Public License v2.0 | 5 votes |
def cache(self): for i in [1,2]: #pix = self._getNewPixmap(self.width, self.height) if not self.isInCache(self.dataModel.getPageOffset(i)): pix = QtGui.QImage(self.width, self.height, QtGui.QImage.Format_ARGB32) self.scrollPages(1, cachePix=pix, pageOffset=i) self.Paints[self.dataModel.getPageOffset(i)] = pix #print 'cache'