下载 Google 字体

下载 Google 字体

是否可以下载所有 Google 字体并在 Ubuntu 下使用它们?这将有助于我的 webdev。

答案1

一种更简单的方法是直接从 Github 获取它们:https://github.com/google/fonts/tree/master/apache. 每种字体都有自己的子目录,其中包含未压缩的字体文件。

你也可以从主目录中获取它们的 ZIP 文件https://github.com/google/fonts#readme页。

因此,如果您想编写这些内容的脚本(例如定期下载最新版本),您可以使用 Git checkout 来完成,或者使用 wget 或 curl 来下载您想要的精确文件。

PS:此帖与“如何安装字体?“。

答案2

如果你信任webupd8

cd ~/Downloads && wget http://webupd8.googlecode.com/files/install-google-fonts
chmod +x install-google-fonts
./install-google-fonts

如果有人需要在不下载的情况下进行检查:这是源代码对于“安装谷歌字体”:

$ more install-google-fonts 
# Original author: Michalis Georgiou <[email protected]>
# Modified by Andrew http://www.webupd8.org <[email protected]>

sudo apt-get install mercurial

_hgroot="https://googlefontdirectory.googlecode.com/hg/"
_hgrepo="googlefontdirectory"

echo "Connecting to Mercurial server...."
if [ -d $_hgrepo ] ; then
    cd $_hgrepo
    hg pull -u || return 1
    echo "The local files have been updated."
    cd ..
else
    hg clone $_hgroot $_hgrepo || return 1
fi
echo "Mercurial checkout done or server timeout"
sudo mkdir -p /usr/share/fonts/truetype/google-fonts/
find $PWD/$_hgrepo/ -name "*.ttf" -exec sudo install -m644 {} /usr/share/fonts/t
ruetype/google-fonts/ \; || return 1
fc-cache -f > /dev/null
echo "done."

答案3

您可以使用以下终端命令更轻松地完成此操作:

sudo apt-get update
sudo apt-get install tasksel
sudo tasksel

它将显示一堆包集合,然后只需选择:

[*] 大量字体包可供选择

然后点确定。希望它能满足你的设计需求:)

相关内容