Software:Pango

From HandWiki
Short description: Library for text rendering
Pango
Pango name written as intended, Greek pan (παν, "all") and Japanese go (語, "language")
Pango name written as intended, Greek pan (παν, "all") and Japanese go (語, "language")
Original author(s)Owen Taylor[1]
Raph Levien
Developer(s)Behdad Esfahbod
Initial release11 July 1999; 24 years ago (1999-07-11)[2]
Stable release1.48.4 (27 March 2021; 2 years ago (2021-03-27)) [±][3]
Written inC
Operating systemUnix-like, Microsoft Windows, Other
TypeSoftware development library
LicenseLGPL
Websitewww.pango.org

Pango (stylized as Παν語) is a text (i.e. glyph) layout engine library which works with the HarfBuzz shaping engine for displaying multi-language text.[4]

Full-function rendering of text and cross-platform support is achieved when Pango is used with platform APIs or third-party libraries, such as Uniscribe and FreeType, as text rendering backends. Pango-processed text will appear similar under different operating systems.[clarification needed]

Pango is a special-purpose library for text and not a general-purpose graphics rendering library such as Cairo, with which Pango can be used. The Cairo documentation recommends Pango be used to "render" text rather than Cairo for all but the simplest text "rendering".[5]

History and naming

The name pango comes from Greek pan (παν, 'all') and Japanese go (語, 'language').[6]

In January 2000, the merger of the GScript and GnomeText projects was named Pango.[7][8][9][10][11][12]

Pango version 1.0.0 was released 11 March 2002.[13][14]

Support for OpenType features

Default rendering above, localized Romanian rendering below.

Pango 1.17 and newer support the 'locl' feature tag that allows localized glyphs to be used for the same Unicode code point. Assuming you have Verdana version 5.01 installed, which supports the 'locl' feature for the latn/ROM (Romanian) script, a quick demonstration (on Linux) is:

for lang in en ro; do pango-view \
 --font="Verdana 64" \
 --text "şţ vs. șț in $lang" \
 --language=$lang; done

For an explanation of the substitutions rules for Romanian, see this discussion.

Setting the locale via the POSIX environment variable, e.g. LANG=ro_RO.UTF-8 will also cause Pango to use 'locl' font feature. Finally, you can change the language on the fly in the same text using Pango markup, e.g.:

pango-view \
 --font="Verdana 24" \
 --markup \
 --text 'In the same text: şţ(en) and <span lang="ro">şţ(ro).</span>'

Since 1.37.1, Pango added more attributes to provide complete support for processing OpenType feature.[15][16][17]

The official showcase of Pango's script-aware features is here.

Major users

Simplified software architecture of GTK. Pango, GDK, ATK, GIO, Cairo and GLib.

Pango has been integrated into most Linux distributions. The GTK UI toolkit uses Pango for all of its text rendering.[18] The Linux versions of the Mozilla Firefox web browser and Mozilla Thunderbird mail client use Pango for text rendering.[19]

See also

  • HarfBuzz (text shaping engine which is incorporated into Pango itself but can be also used stand-alone)
  • Core Text (modern multilingual text rendering engine introduced in Mac OS X 10.5)
  • Graphite (multiplatform open source smart-font renderer)
  • WorldScript (Old Macintosh multilingual text rendering engine)
  • Typographic ligature
  • Computer font

References

  1. Interview: Red Hat's Owen Taylor on GTK+, also known for his contributions on Pango., by Eugenia Loli, 19th Dec 2003
  2. Pango, Made version 0.2, Owen Taylor, redhat.com
  3. "Tags - GNOME / pango". https://gitlab.gnome.org/GNOME/pango/tags. 
  4. "Pango website". https://www.pango.org/. 
  5. "Cairo: A Vector Graphics Library: text". http://cairographics.org/manual/cairo-text.html. 
  6. "The Pango connection: Part 1". http://www.ibm.com/developerworks/library/l-u-pango1/. 
  7. Pango - Status - 2017-11-30, Owen Taylor, Redhat
  8. GNOMEs in Paris: A Report from GUADEC, The most impressive part of their presentation was the discussion on Pango (the result of the GScript and GnomeText merger), 2000/03/21, By Chuck Toporek - O'Reilly Media
  9. Pango proposal, rev 0.1, Raph Levien, 28 July 1999
  10. GScript - Unicode and Complex Text Processing, The GScript project has been merged with the GnomeText project. For information about the result, named Pango, see: http://www.pango.org If you have trouble accessing that site, there is a mirror here. By Owen Taylor
  11. Gnome-Text API documentation, Raph Levien, 10 Jul 1999, Owen Taylor is working on gscript, which has some overlap with the functions described in this interface. We're working on unifying the two api's as much as possible.
  12. Abdin, Ali (1999). "GNOME Developer's Interview Follow-up". http://beast.testbit.eu/_mirror/gnome-news/946276088.html.  Pango (which is the code name for a merger of my Gscript project and Raph Levien's GnomeText project) is a modular set of libraries for doing layout and rendering of international text. It's a bit similar to Microsoft's Uniscript or Apple's ATSUI.
  13. "Pango 1.0.0 released". http://gtk.org/pango-1.0.0-announce.html. 
  14. GTK user interface libraries, version 2.0
  15. "Overview of changes between 1.37.0 and 1.37.1". http://ftp.gnome.org/pub/GNOME/sources/pango/1.37/pango-1.37.1.news. 
  16. "Bug 738505 - Add fontfeatures support in PangoAttributes and markup". GNOME Bugzilla. https://bugzilla.gnome.org/show_bug.cgi?id=738505. 
  17. "Font Features Land in Inkscape Trunk". Tavmjong Bah's Blog. 23 June 2015. http://tavmjong.free.fr/blog/?p=1442. 
  18. "Download for GNU/Linux and Unix". http://www.gtk.org/download/linux.php. 
  19. "Thunderbird 52.1.0 System Requirements". https://www.mozilla.org/en-US/thunderbird/52.1.0/system-requirements/. 

External links