mirror of
https://github.com/bend-n/fimg.git
synced 2024-12-22 10:28:21 -06:00
add Image::text for packed
This commit is contained in:
parent
d86a78b235
commit
405da83bac
|
@ -7,16 +7,13 @@ use crate::{
|
||||||
use fontdue::{layout::TextStyle, Font};
|
use fontdue::{layout::TextStyle, Font};
|
||||||
use umath::{generic_float::Constructors, FF32};
|
use umath::{generic_float::Constructors, FF32};
|
||||||
|
|
||||||
impl Image<&mut [u32], 1> {
|
/// note: `N` may != channels
|
||||||
pub(crate) fn text_u32(
|
pub trait Text<const N: usize> {
|
||||||
&mut self,
|
fn text(&mut self, x: u32, y: u32, size: f32, font: &Font, text: &str, color: [u8; N]);
|
||||||
x: u32,
|
}
|
||||||
y: u32,
|
|
||||||
size: f32,
|
impl<T: AsMut<[u32]> + AsRef<[u32]>> Text<4> for Image<T, 1> {
|
||||||
font: &Font,
|
fn text(&mut self, x: u32, y: u32, size: f32, font: &Font, text: &str, color: [u8; 4]) {
|
||||||
text: &str,
|
|
||||||
color: [u8; 4],
|
|
||||||
) {
|
|
||||||
let mut lay =
|
let mut lay =
|
||||||
fontdue::layout::Layout::new(fontdue::layout::CoordinateSystem::PositiveYDown);
|
fontdue::layout::Layout::new(fontdue::layout::CoordinateSystem::PositiveYDown);
|
||||||
lay.append(&[font], &TextStyle::new(text, size, 0));
|
lay.append(&[font], &TextStyle::new(text, size, 0));
|
||||||
|
@ -36,10 +33,9 @@ impl Image<&mut [u32], 1> {
|
||||||
// SAFETY: the rasterizer kinda promises that metrics width and height are in bounds
|
// SAFETY: the rasterizer kinda promises that metrics width and height are in bounds
|
||||||
let fill = unsafe { float(*bitmap.get_unchecked(j * metrics.width + i)) };
|
let fill = unsafe { float(*bitmap.get_unchecked(j * metrics.width + i)) };
|
||||||
// SAFETY: we clampin
|
// SAFETY: we clampin
|
||||||
let bg: [u8; 4] =
|
let bg: [u8; 4] = unsafe { Pack::unpack(self.pixel(x, y)[0]) };
|
||||||
unsafe { Pack::unpack(*self.buffer.get_unchecked(self.at(x, y))) };
|
|
||||||
// SAFETY: see above
|
// SAFETY: see above
|
||||||
*unsafe { self.buffer.get_unchecked_mut(self.at(x, y)) } =
|
*(&mut unsafe { self.pixel_mut(x, y) }[0]) =
|
||||||
// SAFETY: fill is 0..=1
|
// SAFETY: fill is 0..=1
|
||||||
Pack::pack(unsafe { &bg.wam(color, FF32::one() - fill, fill) });
|
Pack::pack(unsafe { &bg.wam(color, FF32::one() - fill, fill) });
|
||||||
}
|
}
|
||||||
|
@ -48,23 +44,8 @@ impl Image<&mut [u32], 1> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<const N: usize, T: AsMut<[u8]> + AsRef<[u8]>> Image<T, N> {
|
impl<const N: usize, T: AsMut<[u8]> + AsRef<[u8]>> Text<N> for Image<T, N> {
|
||||||
/// Draw text.
|
fn text(&mut self, x: u32, y: u32, size: f32, font: &Font, text: &str, color: [u8; N]) {
|
||||||
///
|
|
||||||
/// ```
|
|
||||||
/// # use fimg::Image;
|
|
||||||
/// let font = fontdue::Font::from_bytes(
|
|
||||||
/// &include_bytes!("../../data/CascadiaCode.ttf")[..],
|
|
||||||
/// fontdue::FontSettings {
|
|
||||||
/// scale: 200.0,
|
|
||||||
/// ..Default::default()
|
|
||||||
/// },
|
|
||||||
/// ).unwrap();
|
|
||||||
/// let mut i: Image<_, 4> = Image::alloc(750, 250).boxed();
|
|
||||||
/// i.text(50, 10, 200.0, &font, "hello", [0, 0, 0, 255]);
|
|
||||||
/// # assert_eq!(&**i.buffer(), include_bytes!("../../tdata/text.imgbuf"));
|
|
||||||
/// ```
|
|
||||||
pub fn text(&mut self, x: u32, y: u32, size: f32, font: &Font, text: &str, color: [u8; N]) {
|
|
||||||
let mut lay =
|
let mut lay =
|
||||||
fontdue::layout::Layout::new(fontdue::layout::CoordinateSystem::PositiveYDown);
|
fontdue::layout::Layout::new(fontdue::layout::CoordinateSystem::PositiveYDown);
|
||||||
lay.append(&[font], &TextStyle::new(text, size, 0));
|
lay.append(&[font], &TextStyle::new(text, size, 0));
|
||||||
|
@ -92,3 +73,34 @@ impl<const N: usize, T: AsMut<[u8]> + AsRef<[u8]>> Image<T, N> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<const N: usize, T> Image<T, N> {
|
||||||
|
/// Draw text.
|
||||||
|
///
|
||||||
|
/// ```
|
||||||
|
/// # use fimg::Image;
|
||||||
|
/// let font = fontdue::Font::from_bytes(
|
||||||
|
/// &include_bytes!("../../data/CascadiaCode.ttf")[..],
|
||||||
|
/// fontdue::FontSettings {
|
||||||
|
/// scale: 200.0,
|
||||||
|
/// ..Default::default()
|
||||||
|
/// },
|
||||||
|
/// ).unwrap();
|
||||||
|
/// let mut i: Image<_, 4> = Image::alloc(750, 250).boxed();
|
||||||
|
/// i.text(50, 10, 200.0, &font, "hello", [0, 0, 0, 255]);
|
||||||
|
/// # assert_eq!(&**i.buffer(), include_bytes!("../../tdata/text.imgbuf"));
|
||||||
|
/// ```
|
||||||
|
pub fn text<const P: usize>(
|
||||||
|
&mut self,
|
||||||
|
x: u32,
|
||||||
|
y: u32,
|
||||||
|
size: f32,
|
||||||
|
font: &Font,
|
||||||
|
text: &str,
|
||||||
|
color: [u8; P],
|
||||||
|
) where
|
||||||
|
Image<T, N>: Text<P>,
|
||||||
|
{
|
||||||
|
Text::text(self, x, y, size, font, text, color)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -34,7 +34,7 @@ mod real {
|
||||||
.map(|(x, y)| (x.min(i.width()), y.min(i.height())))
|
.map(|(x, y)| (x.min(i.width()), y.min(i.height())))
|
||||||
{
|
{
|
||||||
// SAFETY: ctor
|
// SAFETY: ctor
|
||||||
unsafe { Image::new(buf.width, buf.height, &mut *buf.buffer) }.text_u32(
|
unsafe { Image::new(buf.width, buf.height, &mut *buf.buffer) }.text(
|
||||||
5,
|
5,
|
||||||
i.height() - 20,
|
i.height() - 20,
|
||||||
12.0,
|
12.0,
|
||||||
|
|
Loading…
Reference in a new issue