Linux picture software includes: 1. "gnome-screenshot", which can be used for screenshots; 2. "GIMP", which can be used for bitmap processing; 3. "Inkscape"; 4. "Dia"; 5. "Shotwell"; 6. "Gwenview"; 7. "Pinta" and so on.
The operating environment of this tutorial: Ubuntu 16.04 system, Dell G3 computer.
When posting an article, it is inevitable to use pictures to speak for itself. After a long period of running-in, I have become more comfortable using several image processing software under the Linux desktop system. These softwares are widely used in the Linux world. Each Linux distribution has its own installation package in the software warehouse. Moreover, these softwares run stably and have beautiful interfaces. I recommend it to everyone here.
1. Screenshot tool gnome-screenshot
This software does not need to be installed by yourself. It is the screenshot software that comes with the Gnome desktop, usually in Linux It will be installed automatically after the system installation is completed. Its software name is gnome-screenshot, and its Chinese name is called screenshot, which is very straightforward. Although there are many other better screenshot software under Linux, I think the one that comes with this system is completely sufficient. And it works great.
You don’t even need to run it specifically to use this tool. You only need to remember a few shortcut keys on the Gnome desktop. These shortcut keys are as follows:
1. PrintScreen key : Directly press the "Print Screen" key on the upper right side of the keyboard to take a screenshot of the entire screen. After a "click" sound, the dialog box for saving the picture will pop up, which is very convenient.
2. Alt PrintScreen key: If you only need to take a screenshot of the current window, press Alt PrintScreen.
3. Shift PrintScreen key: If you only want to take a screenshot of a certain area, press the Shift PrintScreen key, and then the mouse pointer changes shape. Hold down the left mouse button and drag to select a range on the screen. Which range can you take a screenshot of.
Tips: When using shortcut keys to take screenshots, it is often difficult to take screenshots of content in pop-up interfaces such as menu items and drop-down selection boxes. To capture this content, you cannot use the above shortcut keys. You must open the screenshot software and set a delay of a few seconds before taking the screenshot. Then open the menu to operate. Once the set delay time is up, the content in the menu and drop-down box will be removed. Cut off.
2. Bitmap processing software GIMP
This software can be regarded as Photoshop under Linux system, with powerful functions. It is precisely because of its powerful functions that you have to put in some effort to control it. Since I have a basic knowledge of Photoshop before, it is not difficult to get started with this software. The initial interface after the software is started may not be in line with everyone's habits, as shown below:
But it doesn't matter. Through the single window mode option in the window menu, it can be changed to the following Interface:
GIMPBOX: GIMP (2.6.X) obtains a stable single-window mode http://www.linuxidc.com/Linux/2011-06/37189. htm
Install the official version of GIMP 2.8 under Ubuntu 12.04 http://www.linuxidc.com/Linux/2012-07/65643.htm
Ubuntu 12.04 wallpaper made by GIMP 2.8 http:/ /www.linuxidc.com/Linux/2012-08/67643.htm
3. Vector drawing software Inkscape
Let’s look at it first Looking at the interface of Inkscape, the functions are very powerful:
Why should I introduce a bitmap processing software here, and then introduce a vector drawing software? That's because there is a difference between bitmap processing and vector image processing. For example: For example, I often want to highlight a certain command or menu in the pictures I capture. At this time, I am used to drawing a red line frame on the target to express emphasis. For such a simple thing as a picture frame, it is very convenient to use Inkscape. In vector drawing software, a picture frame is a picture frame. After drawing the frame, you can change the border color and style of the frame, and you can change its fill color and Style, you can drag its position and change its size, but in bitmap processing software, you have to change your thinking mode. In bitmap processing software, you can only create a rectangular selection first to draw a frame. Then stroke and fill the selection, and you can also feather the selection, so that you can get a blurry frame. Once the stroke and filling are completed, the frame can no longer be changed. Therefore, Inkscape is suitable for tasks such as adding frames and text, while GIMP is suitable for tasks such as feathering selected areas, cutting irregular areas, and adding shadows and glows.
4. A schematic drawing software Dia
that is more suitable for programmersDia is also very powerful. Its biggest advantage is that it has many built-in image elements, which is very suitable for drawing flow charts, UML diagrams and other schematic diagrams. The interface is as follows:
# The above class diagrams were randomly drawn by me to reflect the effect of DIA. The background colors inside have no special meaning.
5. A UML modeling tool umbrello
I spent a lot of money to find a useful UML modeling tool. With little thought, good tools cost money, such as Rose, Enterprise Architecture, Microsoft Visual Studio, etc.; the quality of free tools is always not so satisfactory. After many tests, I finally chose umbrellalo. This is the modeling software that comes with the KDE desktop, but it can also run perfectly under the Gnome desktop. The interface is as follows:
Compared with DIA, its biggest advantage is that it supports the forward and reverse functions of UML. In other words, it can generate code from UML models, and it can also generate UML diagrams from the code we have written. DIA is a pure drawing tool. UML diagrams are diagrams. It cannot understand its connotation, let alone generate code.
6. Shotwell is a lightweight image management software
Shotwell is a lightweight image management software Picture management software, which comes with the GNOME desktop environment by default, you can use it to import photos from digital cameras. Shotwell allows users to manage pictures and provides some basic editing functions. You can crop pictures and share them with friends.
# 7. A picture browsing and management software Gwenview
Gwenview is a picture browsing and management software. It comes with the KDE desktop environment by default. It mainly manages pictures in the form of folders. It has the functions of picture editing, modification, renaming, moving, etc. function and view picture information through thumbnails and slideshows. You can also read image files in tar/zip archives and extend functions through plug-ins.##8. A cross-platform bit graphics editing software Pinta
Pinta is a cross-platform bit graphics editing software. It is also an easy-to-use image processing and photo editing software, including common drawing tools, multi-layer processing, undo/redo, preset effects and other functions.
Related recommendations: "
The above is the detailed content of What are the linux picture software?. For more information, please follow other related articles on the PHP Chinese website!

Indispensable commands in Linux include: 1.ls: list directory contents; 2.cd: change working directory; 3.mkdir: create a new directory; 4.rm: delete file or directory; 5.cp: copy file or directory; 6.mv: move or rename file or directory. These commands help users manage files and systems efficiently by interacting with the kernel.

In Linux, file and directory management uses ls, cd, mkdir, rm, cp, mv commands, and permission management uses chmod, chown, and chgrp commands. 1. File and directory management commands such as ls-l list detailed information, mkdir-p recursively create directories. 2. Permission management commands such as chmod755file set file permissions, chownuserfile changes file owner, and chgrpgroupfile changes file group. These commands are based on file system structure and user and group systems, and operate and control through system calls and metadata.

MaintenanceModeinLinuxisaspecialbootenvironmentforcriticalsystemmaintenancetasks.Itallowsadministratorstoperformtaskslikeresettingpasswords,repairingfilesystems,andrecoveringfrombootfailuresinaminimalenvironment.ToenterMaintenanceMode,interrupttheboo

The core components of Linux include kernel, file system, shell, user and kernel space, device drivers, and performance optimization and best practices. 1) The kernel is the core of the system, managing hardware, memory and processes. 2) The file system organizes data and supports multiple types such as ext4, Btrfs and XFS. 3) Shell is the command center for users to interact with the system and supports scripting. 4) Separate user space from kernel space to ensure system stability. 5) The device driver connects the hardware to the operating system. 6) Performance optimization includes tuning system configuration and following best practices.

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

Linux maintenance mode can be entered through the GRUB menu. The specific steps are: 1) Select the kernel in the GRUB menu and press 'e' to edit, 2) Add 'single' or '1' at the end of the 'linux' line, 3) Press Ctrl X to start. Maintenance mode provides a secure environment for tasks such as system repair, password reset and system upgrade.

The steps to enter Linux recovery mode are: 1. Restart the system and press the specific key to enter the GRUB menu; 2. Select the option with (recoverymode); 3. Select the operation in the recovery mode menu, such as fsck or root. Recovery mode allows you to start the system in single-user mode, perform file system checks and repairs, edit configuration files, and other operations to help solve system problems.

The core components of Linux include the kernel, file system, shell and common tools. 1. The kernel manages hardware resources and provides basic services. 2. The file system organizes and stores data. 3. Shell is the interface for users to interact with the system. 4. Common tools help complete daily tasks.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Chinese version
Chinese version, very easy to use

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.