Зачем конвертировать PNG в GIF?
People convert PNG to .GIF mainly for compatibility with older systems or tools that accept GIF but not PNG. For very simple flat graphics with a handful of solid colors, a GIF can occasionally be slightly smaller than a PNG. In most other cases PNG beats GIF on both quality and file size.
Способы конвертации PNG в GIF
GIMP FREE
Open the PNG, go to Image > Mode > Indexed to reduce to 256 colors, then File > Export As with a .gif extension.
macOS Preview BUILT-IN
Open the PNG in Preview, choose File > Export, and select GIF from the Format dropdown.
Windows Paint BUILT-IN
Open the PNG in Paint, then File > Save as > GIF picture - no color-reduction settings are exposed.
Command line - ImageMagick CLI
Run magick input.png output.gif in a terminal - ImageMagick is free and works on Windows, macOS, and Linux.
Программы, которые конвертируют PNG
Об этих форматах
PNG (Portable Network Graphics) - это формат растровых изображений со сжатием без потерь. Любая современная ОС, браузер и графическое приложение открывают PNG нативно - достаточно двойного…
Открыть детали .PNG →Файл GIF - это растровое изображение в формате Graphics Interchange Format, наиболее известное благодаря коротким зацикленным анимациям. Любой веб-браузер и операционная система открывают…
Открыть детали .GIF →Качество и на что обратить внимание
- GIF supports at most 256 colors per frame, so photos develop visible banding and dithering artifacts - this is a hard format limit, not a tool limitation.
- PNG alpha (partial) transparency is lost: pixels become either fully transparent or fully opaque, causing soft shadows and anti-aliased edges to look jagged.
- A static PNG becomes a static single-frame GIF; APNG animations are not carried over automatically - use a dedicated APNG-to-GIF tool for animated source files.
Часто задаваемые вопросы
Does the GIF keep transparency from the PNG?
Will the GIF be animated?
Is the quality loss permanent?
.png as the master.Can I convert multiple PNG files at once?
magick mogrify -format gif *.png converts every .png in the current folder.