2018-01-15 10:34:59 +03:00
|
|
|
//! Higher level freetype bindings
|
2018-01-17 10:02:32 +03:00
|
|
|
|
2020-10-25 02:40:15 +03:00
|
|
|
use crate::locator::FontDataHandle;
|
2019-12-19 20:13:29 +03:00
|
|
|
use anyhow::{anyhow, Context};
|
2020-10-02 21:50:50 +03:00
|
|
|
use config::{configuration, FontAntiAliasing, FontHinting};
|
2019-03-23 19:28:40 +03:00
|
|
|
pub use freetype::*;
|
2018-01-15 10:34:59 +03:00
|
|
|
use std::ptr;
|
|
|
|
|
2019-03-23 19:28:40 +03:00
|
|
|
#[inline]
|
|
|
|
pub fn succeeded(error: FT_Error) -> bool {
|
|
|
|
error == freetype::FT_Err_Ok as FT_Error
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:34:59 +03:00
|
|
|
/// Translate an error and value into a result
|
2019-12-15 08:43:05 +03:00
|
|
|
fn ft_result<T>(err: FT_Error, t: T) -> anyhow::Result<T> {
|
2018-09-20 03:52:34 +03:00
|
|
|
if succeeded(err) {
|
2018-01-15 10:34:59 +03:00
|
|
|
Ok(t)
|
|
|
|
} else {
|
2019-12-15 08:43:05 +03:00
|
|
|
Err(anyhow!("FreeType error {:?} 0x{:x}", err, err))
|
2018-01-15 10:34:59 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-19 20:13:29 +03:00
|
|
|
fn render_mode_to_load_target(render_mode: FT_Render_Mode) -> u32 {
|
|
|
|
// enable FT_LOAD_TARGET bits. There are no flags defined
|
|
|
|
// for these in the bindings so we do some bit magic for
|
|
|
|
// ourselves. This is how the FT_LOAD_TARGET_() macro
|
|
|
|
// assembles these bits.
|
|
|
|
(render_mode as u32) & 15 << 16
|
|
|
|
}
|
|
|
|
|
2020-11-09 00:20:42 +03:00
|
|
|
pub fn compute_load_flags_from_config() -> (i32, FT_Render_Mode) {
|
2019-12-19 20:13:29 +03:00
|
|
|
let config = configuration();
|
2020-11-09 00:20:42 +03:00
|
|
|
|
|
|
|
let render = match config.font_antialias {
|
|
|
|
FontAntiAliasing::None => FT_Render_Mode::FT_RENDER_MODE_MONO,
|
|
|
|
FontAntiAliasing::Greyscale => FT_Render_Mode::FT_RENDER_MODE_NORMAL,
|
|
|
|
FontAntiAliasing::Subpixel => FT_Render_Mode::FT_RENDER_MODE_LCD,
|
|
|
|
};
|
|
|
|
|
|
|
|
let flags = match config.font_hinting {
|
|
|
|
FontHinting::None => {
|
2019-12-19 20:13:29 +03:00
|
|
|
render_mode_to_load_target(FT_Render_Mode::FT_RENDER_MODE_NORMAL) | FT_LOAD_NO_HINTING
|
|
|
|
}
|
2020-11-09 00:20:42 +03:00
|
|
|
FontHinting::Vertical => render_mode_to_load_target(FT_Render_Mode::FT_RENDER_MODE_LIGHT),
|
|
|
|
FontHinting::VerticalSubpixel | FontHinting::Full => {
|
|
|
|
render_mode_to_load_target(FT_Render_Mode::FT_RENDER_MODE_LCD)
|
2019-12-19 20:13:29 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// If the bitmaps are in color, we want those!
|
|
|
|
let flags = flags | FT_LOAD_COLOR;
|
|
|
|
|
|
|
|
let flags = if config.font_antialias == FontAntiAliasing::None {
|
|
|
|
// When AA is disabled, force outline rendering to monochrome
|
|
|
|
flags | FT_LOAD_MONOCHROME
|
|
|
|
} else {
|
|
|
|
flags
|
|
|
|
} as i32;
|
|
|
|
|
2020-11-09 00:20:42 +03:00
|
|
|
(flags, render)
|
2019-12-09 23:12:54 +03:00
|
|
|
}
|
|
|
|
|
2018-01-15 10:34:59 +03:00
|
|
|
pub struct Face {
|
|
|
|
pub face: FT_Face,
|
2019-12-09 03:02:04 +03:00
|
|
|
_bytes: Vec<u8>,
|
2018-01-15 10:34:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Face {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
|
|
|
FT_Done_Face(self.face);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Face {
|
2019-12-09 19:00:55 +03:00
|
|
|
/// This is a wrapper around set_char_size and select_size
|
|
|
|
/// that accounts for some weirdness with eg: color emoji
|
2019-12-15 08:43:05 +03:00
|
|
|
pub fn set_font_size(&mut self, size: f64, dpi: u32) -> anyhow::Result<(f64, f64)> {
|
2019-12-09 19:00:55 +03:00
|
|
|
log::debug!("set_char_size {} dpi={}", size, dpi);
|
|
|
|
// Scaling before truncating to integer minimizes the chances of hitting
|
|
|
|
// the fallback code for set_pixel_sizes below.
|
|
|
|
let size = (size * 64.0) as FT_F26Dot6;
|
|
|
|
|
|
|
|
let (cell_width, cell_height) = match self.set_char_size(size, size, dpi, dpi) {
|
|
|
|
Ok(_) => {
|
|
|
|
// Compute metrics for the nominal monospace cell
|
|
|
|
self.cell_metrics()
|
|
|
|
}
|
|
|
|
Err(err) => {
|
|
|
|
let sizes = unsafe {
|
|
|
|
let rec = &(*self.face);
|
|
|
|
std::slice::from_raw_parts(rec.available_sizes, rec.num_fixed_sizes as usize)
|
|
|
|
};
|
|
|
|
if sizes.is_empty() {
|
|
|
|
return Err(err);
|
|
|
|
}
|
|
|
|
// Find the best matching size.
|
|
|
|
// We just take the biggest.
|
|
|
|
let mut best = 0;
|
|
|
|
let mut best_size = 0;
|
|
|
|
let mut cell_width = 0;
|
|
|
|
let mut cell_height = 0;
|
|
|
|
|
|
|
|
for (idx, info) in sizes.iter().enumerate() {
|
|
|
|
let size = best_size.max(info.height);
|
|
|
|
if size > best_size {
|
|
|
|
best = idx;
|
|
|
|
best_size = size;
|
|
|
|
cell_width = info.width;
|
|
|
|
cell_height = info.height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.select_size(best)?;
|
|
|
|
(f64::from(cell_width), f64::from(cell_height))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok((cell_width, cell_height))
|
|
|
|
}
|
|
|
|
|
2019-12-15 19:38:52 +03:00
|
|
|
fn set_char_size(
|
2018-01-15 10:34:59 +03:00
|
|
|
&mut self,
|
|
|
|
char_width: FT_F26Dot6,
|
|
|
|
char_height: FT_F26Dot6,
|
|
|
|
horz_resolution: FT_UInt,
|
|
|
|
vert_resolution: FT_UInt,
|
2019-12-15 08:43:05 +03:00
|
|
|
) -> anyhow::Result<()> {
|
2018-01-15 10:34:59 +03:00
|
|
|
ft_result(
|
|
|
|
unsafe {
|
|
|
|
FT_Set_Char_Size(
|
|
|
|
self.face,
|
|
|
|
char_width,
|
|
|
|
char_height,
|
|
|
|
horz_resolution,
|
|
|
|
vert_resolution,
|
|
|
|
)
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-12-15 19:38:52 +03:00
|
|
|
fn select_size(&mut self, idx: usize) -> anyhow::Result<()> {
|
2018-09-20 03:52:34 +03:00
|
|
|
ft_result(unsafe { FT_Select_Size(self.face, idx as i32) }, ())
|
|
|
|
}
|
|
|
|
|
2018-01-15 10:34:59 +03:00
|
|
|
pub fn load_and_render_glyph(
|
|
|
|
&mut self,
|
|
|
|
glyph_index: FT_UInt,
|
|
|
|
load_flags: FT_Int32,
|
2020-11-09 00:20:42 +03:00
|
|
|
render_mode: FT_Render_Mode,
|
2019-12-15 08:43:05 +03:00
|
|
|
) -> anyhow::Result<&FT_GlyphSlotRec_> {
|
2018-01-15 10:34:59 +03:00
|
|
|
unsafe {
|
2020-11-09 00:20:42 +03:00
|
|
|
let res = FT_Load_Glyph(self.face, glyph_index, load_flags);
|
|
|
|
let slot = ft_result(res, &mut *(*self.face).glyph)?;
|
|
|
|
ft_result(FT_Render_Glyph(slot, render_mode), slot)
|
2018-01-15 10:34:59 +03:00
|
|
|
}
|
|
|
|
}
|
2018-01-16 11:24:49 +03:00
|
|
|
|
2018-01-21 12:32:59 +03:00
|
|
|
pub fn cell_metrics(&mut self) -> (f64, f64) {
|
2018-01-16 11:24:49 +03:00
|
|
|
unsafe {
|
|
|
|
let metrics = &(*(*self.face).size).metrics;
|
2018-03-04 00:00:56 +03:00
|
|
|
let height = (metrics.y_scale as f64 * f64::from((*self.face).height))
|
|
|
|
/ (f64::from(0x1_0000) * 64.0);
|
2018-01-16 11:24:49 +03:00
|
|
|
|
2018-01-21 12:32:59 +03:00
|
|
|
let mut width = 0.0;
|
2018-01-16 11:24:49 +03:00
|
|
|
for i in 32..128 {
|
|
|
|
let glyph_pos = FT_Get_Char_Index(self.face, i);
|
2019-12-15 00:16:57 +03:00
|
|
|
if glyph_pos == 0 {
|
|
|
|
continue;
|
|
|
|
}
|
2018-01-17 10:02:32 +03:00
|
|
|
let res = FT_Load_Glyph(self.face, glyph_pos, FT_LOAD_COLOR as i32);
|
2018-09-20 03:52:34 +03:00
|
|
|
if succeeded(res) {
|
2018-01-16 11:24:49 +03:00
|
|
|
let glyph = &(*(*self.face).glyph);
|
2018-01-21 12:32:59 +03:00
|
|
|
if glyph.metrics.horiAdvance as f64 > width {
|
|
|
|
width = glyph.metrics.horiAdvance as f64;
|
|
|
|
}
|
2018-01-16 11:24:49 +03:00
|
|
|
}
|
|
|
|
}
|
2018-01-21 12:32:59 +03:00
|
|
|
(width / 64.0, height)
|
2018-01-16 11:24:49 +03:00
|
|
|
}
|
|
|
|
}
|
2018-01-15 10:34:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Library {
|
|
|
|
lib: FT_Library,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Library {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
|
|
|
FT_Done_FreeType(self.lib);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Library {
|
2019-12-15 08:43:05 +03:00
|
|
|
pub fn new() -> anyhow::Result<Library> {
|
2018-01-15 10:34:59 +03:00
|
|
|
let mut lib = ptr::null_mut();
|
|
|
|
let res = unsafe { FT_Init_FreeType(&mut lib as *mut _) };
|
2019-11-02 19:13:51 +03:00
|
|
|
let lib = ft_result(res, lib).context("FT_Init_FreeType")?;
|
2019-12-10 00:42:07 +03:00
|
|
|
let mut lib = Library { lib };
|
|
|
|
|
2020-11-09 00:20:42 +03:00
|
|
|
let interpreter_version: FT_UInt = 38;
|
|
|
|
unsafe {
|
|
|
|
FT_Property_Set(
|
|
|
|
lib.lib,
|
|
|
|
b"truetype\0" as *const u8 as *const FT_String,
|
|
|
|
b"interpreter-version\0" as *const u8 as *const FT_String,
|
|
|
|
&interpreter_version as *const FT_UInt as *const _,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-12-19 20:13:29 +03:00
|
|
|
// Due to patent concerns, the freetype library disables the LCD
|
|
|
|
// filtering feature by default, and since we always build our
|
|
|
|
// own copy of freetype, it is likewise disabled by default for
|
|
|
|
// us too. As a result, this call will generally fail.
|
|
|
|
// Freetype is still able to render a decent result without it!
|
2019-12-10 00:42:07 +03:00
|
|
|
lib.set_lcd_filter(FT_LcdFilter::FT_LCD_FILTER_DEFAULT).ok();
|
|
|
|
|
|
|
|
Ok(lib)
|
2018-01-15 10:34:59 +03:00
|
|
|
}
|
|
|
|
|
2019-12-15 08:43:05 +03:00
|
|
|
pub fn face_from_locator(&self, handle: &FontDataHandle) -> anyhow::Result<Face> {
|
2019-12-09 23:12:54 +03:00
|
|
|
match handle {
|
|
|
|
FontDataHandle::OnDisk { path, index } => {
|
|
|
|
self.new_face(path.to_str().unwrap(), *index as _)
|
|
|
|
}
|
2020-10-13 03:05:53 +03:00
|
|
|
FontDataHandle::Memory { data, index, .. } => {
|
|
|
|
self.new_face_from_slice(&data, *index as _)
|
|
|
|
}
|
2019-12-09 23:12:54 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-15 08:43:05 +03:00
|
|
|
pub fn new_face<P>(&self, path: P, face_index: FT_Long) -> anyhow::Result<Face>
|
2018-01-15 10:34:59 +03:00
|
|
|
where
|
2019-12-15 02:22:47 +03:00
|
|
|
P: AsRef<std::path::Path>,
|
2018-01-15 10:34:59 +03:00
|
|
|
{
|
|
|
|
let mut face = ptr::null_mut();
|
2019-12-15 02:22:47 +03:00
|
|
|
let path = path.as_ref();
|
2018-01-15 10:34:59 +03:00
|
|
|
|
2019-12-15 02:22:47 +03:00
|
|
|
// We open the file for ourselves and treat it as a memory based
|
|
|
|
// face because freetype doesn't use O_CLOEXEC and keeps the fd
|
|
|
|
// floating around for a long time!
|
|
|
|
let data = std::fs::read(path)?;
|
2019-12-15 19:38:52 +03:00
|
|
|
log::trace!("Loading {} for freetype!", path.display());
|
2019-12-15 02:22:47 +03:00
|
|
|
|
|
|
|
let res = unsafe {
|
|
|
|
FT_New_Memory_Face(
|
|
|
|
self.lib,
|
|
|
|
data.as_ptr(),
|
|
|
|
data.len() as _,
|
|
|
|
face_index,
|
|
|
|
&mut face as *mut _,
|
|
|
|
)
|
|
|
|
};
|
2018-02-21 09:08:19 +03:00
|
|
|
Ok(Face {
|
2019-12-15 08:43:05 +03:00
|
|
|
face: ft_result(res, face).with_context(|| {
|
|
|
|
format!(
|
2019-12-15 02:22:47 +03:00
|
|
|
"FT_New_Memory_Face for {} index {}",
|
|
|
|
path.display(),
|
|
|
|
face_index
|
2019-12-15 08:43:05 +03:00
|
|
|
)
|
2019-12-15 02:22:47 +03:00
|
|
|
})?,
|
|
|
|
_bytes: data,
|
2018-02-21 09:08:19 +03:00
|
|
|
})
|
2018-01-15 10:34:59 +03:00
|
|
|
}
|
|
|
|
|
2019-12-15 08:43:05 +03:00
|
|
|
pub fn new_face_from_slice(&self, data: &[u8], face_index: FT_Long) -> anyhow::Result<Face> {
|
2019-12-09 03:02:04 +03:00
|
|
|
let data = data.to_vec();
|
2019-02-18 23:56:41 +03:00
|
|
|
let mut face = ptr::null_mut();
|
|
|
|
|
|
|
|
let res = unsafe {
|
|
|
|
FT_New_Memory_Face(
|
|
|
|
self.lib,
|
|
|
|
data.as_ptr(),
|
2019-02-19 00:13:36 +03:00
|
|
|
data.len() as _,
|
2019-02-18 23:56:41 +03:00
|
|
|
face_index,
|
|
|
|
&mut face as *mut _,
|
|
|
|
)
|
|
|
|
};
|
|
|
|
Ok(Face {
|
2019-11-02 19:13:51 +03:00
|
|
|
face: ft_result(res, face)
|
2019-12-15 08:43:05 +03:00
|
|
|
.with_context(|| format!("FT_New_Memory_Face for index {}", face_index))?,
|
2019-12-09 03:02:04 +03:00
|
|
|
_bytes: data,
|
2019-02-18 23:56:41 +03:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-12-15 08:43:05 +03:00
|
|
|
pub fn set_lcd_filter(&mut self, filter: FT_LcdFilter) -> anyhow::Result<()> {
|
2018-01-17 10:02:32 +03:00
|
|
|
unsafe { ft_result(FT_Library_SetLcdFilter(self.lib, filter), ()) }
|
2018-01-15 10:34:59 +03:00
|
|
|
}
|
|
|
|
}
|