Eu fiz o download da fonte executando
wget http://www.fontsquirrel.com/fonts/download/amatic
dentro da minha instância ec2. Então eu criei um diretor .fonts e descompactei os arquivos dentro dele. Então eu ls .fonts
e havia os arquivos de fonte. Então eu corri fc-cache -f -v
e me deu essa saída
/usr/share/fonts: caching, new cache contents: 0 fonts, 3 dirs
/usr/share/fonts/cmap: caching, new cache contents: 0 fonts, 5 dirs
/usr/share/fonts/cmap/adobe-cns1: caching, new cache contents: 0 fonts, 0 dirs
/usr/share/fonts/cmap/adobe-gb1: caching, new cache contents: 0 fonts, 0 dirs
/usr/share/fonts/cmap/adobe-japan1: caching, new cache contents: 0 fonts, 0 dirs
/usr/share/fonts/cmap/adobe-japan2: caching, new cache contents: 0 fonts, 0 dirs
/usr/share/fonts/cmap/adobe-korea1: caching, new cache contents: 0 fonts, 0 dirs
/usr/share/fonts/truetype: caching, new cache contents: 0 fonts, 1 dirs
/usr/share/fonts/truetype/dejavu: caching, new cache contents: 6 fonts, 0 dirs
/usr/share/fonts/type1: caching, new cache contents: 0 fonts, 1 dirs
/usr/share/fonts/type1/gsfonts: caching, new cache contents: 35 fonts, 0 dirs
/usr/local/share/fonts: caching, new cache contents: 0 fonts, 0 dirs
/home/ubuntu/.local/share/fonts: skipping, no such directory
/home/ubuntu/.fonts: caching, new cache contents: 2 fonts, 0 dirs
/usr/share/fonts: caching, new cache contents: 0 fonts, 3 dirs
/usr/local/share/fonts: caching, new cache contents: 0 fonts, 0 dirs
/home/ubuntu/.local/share/fonts: skipping, no such directory
/home/ubuntu/.fonts: caching, new cache contents: 2 fonts, 0 dirs
/var/cache/fontconfig: not cleaning unwritable cache directory
/home/ubuntu/.cache/fontconfig: cleaning cache directory
/home/ubuntu/.fontconfig: not cleaning non-existent cache directory
fc-cache: succeeded
Depois fui ver no navegador se a fonte foi aplicada, mas ainda não foi aplicada. Quando eu corro fc-list
eu posso ver que minha fonte está listada lá, mas não está sendo mostrada no meu app rails.however eu descobri que quando eu corri um script ruby ruby test.rb
, em que foi o mesmo código para manipulação de imagem , funcionou bem e as fontes também era o que eu queria, mas o único problema está no meu aplicativo trilhos. Eu reiniciei meu aplicativo de trilhos, mas o problema ainda está persistindo.
Estou usando essa fonte para manipulação de imagens.
Este é o meu código
txt = "Sushant"
overlay = Magick::Image.read("stamp.png").first
title = Magick::Draw.new
if txt.length <= 7
title.annotate(overlay, 0,0,120,200, txt) {
self.font_family = 'Amatic SC'
self.fill = 'white'
self.pointsize = 160
}
else
title.annotate(overlay, 0,0,0,200, txt) {
self.font_family = 'Amatic SC'
self.fill = 'white'
self.pointsize = 155
}
end
img = overlay.write('newimg.gif')
Tags aws fonts amazon-ec2 ruby ubuntu