diff --git a/server/memelibrary/metadata.go b/server/memelibrary/metadata.go index f07678a..77540c0 100644 --- a/server/memelibrary/metadata.go +++ b/server/memelibrary/metadata.go @@ -68,7 +68,7 @@ func (m *Metadata) TextSlots(bounds image.Rectangle) (slots []*meme.TextSlot) { if slot.Font != "" { textSlot.Font = fonts[slot.Font] } else { - textSlot.Font = fonts["Impact"] + textSlot.Font = fonts["impact"] textSlot.TextColor = color.White textSlot.OutlineColor = color.Black textSlot.AllUppercase = true @@ -85,14 +85,14 @@ func (m *Metadata) TextSlots(bounds image.Rectangle) (slots []*meme.TextSlot) { return []*meme.TextSlot{ { Bounds: image.Rect(padding, padding, bounds.Dx()-padding, bounds.Dy()/4), - Font: fonts["Impact"], + Font: fonts["impact"], TextColor: color.White, OutlineColor: color.Black, AllUppercase: true, }, { Bounds: image.Rect(padding, bounds.Dy()*3/4, bounds.Dx()-padding, bounds.Dy()-padding), - Font: fonts["Impact"], + Font: fonts["impact"], TextColor: color.White, OutlineColor: color.Black, AllUppercase: true,