google-fonts-file-loader
v1.0.4
Published
Load binary font files for Google Fonts
Downloads
28
Maintainers
Readme
google-fonts-file-loader
google-fonts-file-loader
makes it easy to load binary file data for Google Fonts using the Google Fonts API.
Installation
npm install google-fonts-file-loader
Usage
Example: Vercel/Next Image Generation using Google Fonts
import { ImageResponse } from "next/og";
import { loadGoogleFonts } from "google-fonts-file-loader";
export async function GET() {
const text = "hello world";
const fonts = await loadGoogleFonts({
text,
fonts: [
{ name: "Roboto" },
{ name: "Roboto Mono", weights: [400], styles: ["normal"] },
],
});
return new ImageResponse(
(
<div
style={{
display: "flex",
flexDirection: "column",
justifyContent: "center",
}}
>
<h1
style={{
fontFamily: "Roboto",
fontWeight: 800,
fontStyle: "italic",
}}
>
{text}
</h1>
<h1
style={{
fontFamily: "Roboto Mono",
fontWeight: 400,
}}
>
{text}
</h1>
</div>
),
{ fonts },
);
}