🎨🖌 [Full Tutorial] Build a Paint Application🖼
🎨🖌 Build your own Paint Application. 🎈 Features - 🖌 Change brush size - 🎨 Change eraser size - 🖼️ Save Image - 🌹 And many more......🚀 Link to PyQt5 Series: https://www.youtube.com/playlist?list=PLPBWT_CJ5QhKQfD9uaQrvLOBzw7an37__ 👩💻🚀Build a Clone of Word 365: https://www.youtube.com/playlist?list=PLPBWT_CJ5QhILJ3DTbw2pSvbjy5NGH11R 👩💻🖼Build an Image Converter: https://www.youtube.com/playlist?list=PLPBWT_CJ5QhKtm7g1UXxyWIIsDORKL1hf Link to source code: https://github.com/tommyscodebase/PyQt5_Paint_App Happy Coding!🔥🚀 ADDITIONAL CODE # Additions self.eraser_size = QtWidgets.QSpinBox(self) self.eraser_size.setValue(5) self.eraser_size.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor)) self.brush_size = QtWidgets.QSpinBox(self) self.brush_size.setValue(5) self.brush_size.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor)) self.colour_label = QtWidgets.QLabel(self) self.colour_label.setText('Current Color:') self.current_color = QtWidgets.QPushButton(self) self.current_color.setMinimumSize(QtCore.QSize(32, 32)) self.current_color.setMaximumSize(QtCore.QSize(32, 32)) self.current_color.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor)) self.current_color.setStyleSheet("background-color: rgb(0, 0, 0);") self.current_color_label = QtWidgets.QLabel(self) self.current_color_label.setText("#000000")
Download
0 formatsNo download links available.