diff options
Diffstat (limited to 'src/render.rs')
-rw-r--r-- | src/render.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render.rs b/src/render.rs index cb6a4fb..fa8e1df 100644 --- a/src/render.rs +++ b/src/render.rs @@ -6,7 +6,7 @@ use image::{ }; use imageproc::{drawing, rect::Rect}; use num_traits::{Num, NumCast}; -use rusttype::{Font, Scale, SharedBytes}; +use rusttype::{Font, Scale}; use serde::{Deserialize, Serialize}; use std::{error::Error, fmt}; @@ -86,7 +86,7 @@ impl Default for RenderOptions { trait_size: 30, line_color: Rgba([0, 0, 0, 255]), line_height: 4, - font: Font::from_bytes(SharedBytes::ByRef(include_bytes!("LiberationMono.ttf"))) + font: Font::try_from_bytes(include_bytes!("LiberationMono.ttf")) .expect("Invalid font data for default font"), text_color: Rgba([0, 0, 0, 255]), text_size: 20, |