Цифровой садик - приветственная

Цифровой садик - приветственная | Полный список всего, что тут есть | RSS | Подписаться через follow.it

19.01.2023

картинки

Анимированные картинки. Не только gif

Четыре формата поддерживают анимацию: GIF, APNG, WEBP и BPG. Генерировать гифки можно с помощью ImageMagick и GraphicsMagick. Пока лучше хранить анимацию в GIF и следить за развитием остальных форматов.

Apng, похоже, безнадёжен, bpg - непонятно. Что до webp - есть шансы уже использовать, кажется, но без уверенности.

  • apng2gif и gif2apng - tool for converting APNG images to animated GIF format и обратно соответственно.
  • apngasm - assemble APNG animation from PNG/TGA image sequence
  • apngdis - deconstruct APNG file into a sequence of PNG frames
  • apngopt - optimize APNG animated images
  • gifsicle - инструмент для работы с изображениями формата GIF
  • gif2png - конвертировать gif в png

Desktop-file для gifsicle - получить удобную смотрелку анимированных gif

Install gifsicle.

Create a desktop file:

[Desktop Entry]
Name=GIFview 
Exec=gifview -a %f
Icon=gif
Terminal=false
Type=Application
StartupNotify=true
NoDisplay=true
MimeType=image/gif

and put it into ~/.local/share/applications

Конвертировать pdf в картинку

imagemagick

convert -density 150 input.pdf -quality 90 output.png

PNG, JPG or (virtually) any other image format can be chosen

  • -density xxx will set the dpi to xxx (common are 150 and 300)
  • -quality xxx will set the compression to xxx for PNG, JPG and MIFF file formates (100 means no compression)
  • all other options (such as trimming, grayscale, etc) can be viewed on the website of Image Magic (http://www.imagemagick.org/script/command-line-options.php).

In the poppler-utils packages there is the utility pdftoppm capable of converting pages from a pdf file to ppm, png or jpeg format:

pdftoppm -png file.pdf prefix

will produce prefix-01.png etc. for each page. By default the resolution is 150dpi. Increase the resolution (for higher quality output) as follows:

pdftoppm -rx 300 -ry 300 -png file.pdf prefix

To print only one page, use

pdftoppm -f N -singlefile -png file.pdf prefix

where N is the page number, beginning with 1.

if what you have is a PDF that's just a wrapper around a series of bitmaps, pdfimages will do a much better job of extracting them, because it gets you the raw data at its original size. You probably also want to use the -j option to pdfimages, because a PDF can contain raw JPEG data. By default, pdfimages converts everything to PNM format, and converting JPEG > PPM > JPEG is a lossy process.

So, try

pdfimages -j file.pdf page

Inkscape - шрифты

Inkscape does not require (or offer) any specific way of installing fonts. Essentially, one has to download whatever fonts one would like and place them in the default font directory.

Truetype fonts are installed by placement of the files into the /usr/share/fonts/ttf directory

- mv ~/downloads/*.ttf /usr/share/fonts/ttf

It is advisable that the font cache file be deleted in the process. This file is fonts.cache-1, located in /usr/share/fonts (or C:\WINDOWS\FONTS for Windows types). After font files have been transferred to the default font directory, delete this fonts.cache-1 file and the .fonts.cache-1 file in your home directory (or "My Documents" directory for Windows types).

- rm -f /usr/share/fonts/*fonts.cache-1
- rm -f ~/*fonts.cache-1

Once done doing this, you need to rebuild your font cache files (only if you are using Linux or some other OS for which font caches are used) so other programs can effectively use the fonts. Do this by going to your default font directory (/usr/share/fonts) and typing as root:

fc-cache

On most Linux distributions, there is a directory called .fonts in your home directory. You can install fonts only for yourself by copying them there. This does not require admin rights.

qrencode - создать qr-код из командной строки

qrencode -o [filename.png] '[text/url/information to encode]'

Например, для того, чтобы сделать код со ссылкой на домашнюю страницу Google и сохранить его в файле google.png, необходимо ввести следующую команду:

qrencode -o google.png 'http://google.com'

скриншотилки

  • scrot, imagemagick, maim - то, что у меня есть. Использую чаще всего imagemagick-овый import: sleep 5; import -window root image.png. Остальное… ну, типа пробую ;)
  • xwd и смотрелка xwud из x11-apps, которые у меня стоят - но это тамошний специальный формат, и в общем, есть, но не применяла.

Остальное, которое типа «имею в виду»:

  • shutter
  • screengrab (qt-шное)
  • gtk-vector-screenshot - pdf, svg, ps
  • flameshot deepin-screenshot - предлагают правку скриншотов их средствами. Flameshot мне, пожалуй, понравился.
  • fbcat - вроде как скриншотилка для фреймбуффера, сохраняет в ppm.

Возможные сочетания клавиш для скриншотов, вдруг настрою ;)

  • PrtScr - сохранить скриншот всего рабочего стола;
  • Shift + PrtScr - сохранить снимок экрана определённой области экрана;
  • Alt + PrtScr - сохранить снимок текущего окна;
  • Ctrl + PrtScr - скопировать скриншот всего экрана в буфер обмена;
  • Shift + Ctrl + PrtScr - скопировать снимок определённой области в буфер обмена;
  • Ctrl + Alt + PrtScr - скопировать снимок текущего окна в буфер обмена.

Не ставила, но занятно

  • f3d - смотрелка для разного 3d.
  • gifwrap - гифки в консольке.
  • uprightdiff - про сравнение картинок

Если у вас есть мысли, комментарии, предложения или отклики по поводу этой страницы или этого цифрового сада в целом, напишите мне сообщение через Яндекс.Форму или на agnessa@agnessa.pp.ru. Мне ооочень интересно!

Задонатить.


An IndieWeb Webring 🕸💍