hey we are rasterizing right, just not loading into handle
Some checks failed
/ test (push) Has been cancelled

This commit is contained in:
Chris Cochrun 2025-09-03 15:49:35 -05:00
parent d6b4cc6297
commit 6c8cb6c5b2
2 changed files with 128 additions and 97 deletions

View file

@ -19,7 +19,7 @@ use cosmic::{
prelude::*,
widget::{
container, image, mouse_area, responsive, scrollable, text,
Column, Container, Id, Row, Space,
Column, Container, Id, Image, Row, Space,
},
Task,
};
@ -707,91 +707,100 @@ pub(crate) fn slide_view(
let slide_text = slide.text();
// let font = SvgFont::from(font).size(font_size.floor() as u8);
let text_container = if delegate {
// text widget based
let font_size =
scale_font(slide.font_size() as f32, width);
let lines = slide_text.lines();
let text: Vec<Element<Message>> = lines
.map(|t| {
rich_text([span(format!("{}\n", t))
.background(
Background::Color(Color::BLACK)
.scale_alpha(0.4),
)
.border(border::rounded(10))
.padding(10)])
.size(font_size)
.font(font)
.center()
.into()
// let chars: Vec<Span> = t
// .chars()
// .map(|c| -> Span {
// let character: String = format!("{}/n", c);
// span(character)
// .size(font_size)
// .font(font)
// .background(
// Background::Color(Color::BLACK)
// .scale_alpha(0.4),
// )
// .border(border::rounded(10))
// .padding(10)
})
.collect();
let text = Column::with_children(text).spacing(26);
Container::new(text)
.center(Length::Fill)
.align_x(Horizontal::Left)
} else {
// SVG based
let text: Element<Message> =
if let Some(text) = &slide.text_svg {
text.view().map(|_| Message::None).into()
} else {
Space::with_width(0).into()
};
Container::new(text)
.center(Length::Fill)
.align_x(Horizontal::Left)
// text widget based
// let font_size =
// scale_font(slide.font_size() as f32, width);
// let lines = slide_text.lines();
// let text: Vec<Element<Message>> = lines
// .map(|t| {
// rich_text([span(format!("{}\n", t))
// .background(
// Background::Color(Color::BLACK)
// .scale_alpha(0.4),
// )
// .border(border::rounded(10))
// .padding(10)])
// .size(font_size)
// .font(font)
// .center()
// .into()
// // let chars: Vec<Span> = t
// // .chars()
// // .map(|c| -> Span {
// // let character: String = format!("{}/n", c);
// // span(character)
// // .size(font_size)
// // .font(font)
// // .background(
// // Background::Color(Color::BLACK)
// // .scale_alpha(0.4),
// // )
// // .border(border::rounded(10))
// // .padding(10)
// })
// .collect();
// let text = Column::with_children(text).spacing(26);
// Container::new(text)
// .center(Length::Fill)
// .align_x(Horizontal::Left)
};
// let text_container = if delegate {
// // text widget based
// let font_size =
// scale_font(slide.font_size() as f32, width);
// let lines = slide_text.lines();
// let text: Vec<Element<Message>> = lines
// .map(|t| {
// rich_text([span(format!("{}\n", t))
// .background(
// Background::Color(Color::BLACK)
// .scale_alpha(0.4),
// )
// .border(border::rounded(10))
// .padding(10)])
// .size(font_size)
// .font(font)
// .center()
// .into()
// // let chars: Vec<Span> = t
// // .chars()
// // .map(|c| -> Span {
// // let character: String = format!("{}/n", c);
// // span(character)
// // .size(font_size)
// // .font(font)
// // .background(
// // Background::Color(Color::BLACK)
// // .scale_alpha(0.4),
// // )
// // .border(border::rounded(10))
// // .padding(10)
// })
// .collect();
// let text = Column::with_children(text).spacing(26);
// Container::new(text)
// .center(Length::Fill)
// .align_x(Horizontal::Left)
// } else {
// // SVG based
// let text: Element<Message> =
// if let Some(text) = &slide.text_svg {
// if let Some(handle) = &text.handle {
// debug!("we made it boys");
// Image::new(handle)
// .content_fit(ContentFit::Cover)
// .width(Length::Fill)
// .height(Length::Fill)
// .into()
// } else {
// Space::with_width(0).into()
// }
// } else {
// Space::with_width(0).into()
// };
// Container::new(text)
// .center(Length::Fill)
// .align_x(Horizontal::Left)
// // text widget based
// // let font_size =
// // scale_font(slide.font_size() as f32, width);
// // let lines = slide_text.lines();
// // let text: Vec<Element<Message>> = lines
// // .map(|t| {
// // rich_text([span(format!("{}\n", t))
// // .background(
// // Background::Color(Color::BLACK)
// // .scale_alpha(0.4),
// // )
// // .border(border::rounded(10))
// // .padding(10)])
// // .size(font_size)
// // .font(font)
// // .center()
// // .into()
// // // let chars: Vec<Span> = t
// // // .chars()
// // // .map(|c| -> Span {
// // // let character: String = format!("{}/n", c);
// // // span(character)
// // // .size(font_size)
// // // .font(font)
// // // .background(
// // // Background::Color(Color::BLACK)
// // // .scale_alpha(0.4),
// // // )
// // // .border(border::rounded(10))
// // // .padding(10)
// // })
// // .collect();
// // let text = Column::with_children(text).spacing(26);
// // Container::new(text)
// // .center(Length::Fill)
// // .align_x(Horizontal::Left)
// };
// let stroke_text_container = Container::new(stroke_text)
// .center(Length::Fill)
@ -799,6 +808,22 @@ pub(crate) fn slide_view(
// let text_stack =
// stack!(stroke_text_container, text_container);
let text: Element<Message> =
if let Some(text) = &slide.text_svg {
if let Some(handle) = &text.handle {
debug!("we made it boys");
Image::new(handle)
.content_fit(ContentFit::Cover)
.width(Length::Fill)
.height(Length::Fill)
.into()
} else {
Space::with_width(0).into()
}
} else {
Space::with_width(0).into()
};
let black = Container::new(Space::new(0, 0))
.style(|_| {
container::background(Background::Color(Color::BLACK))
@ -806,7 +831,7 @@ pub(crate) fn slide_view(
.clip(true)
.width(width)
.height(size.height);
let container = match slide.background().kind {
let background = match slide.background().kind {
BackgroundKind::Image => {
let path = slide.background().path.clone();
Container::new(
@ -855,11 +880,8 @@ pub(crate) fn slide_view(
}
}
};
let stack = stack!(
black,
container.center(Length::Fill),
text_container
);
let stack =
stack!(black, background.center(Length::Fill), text);
Container::new(stack).center(Length::Fill).into()
});
// let vid = if let Some(video) = &video {

View file

@ -2,6 +2,7 @@ use std::{
fmt::Display,
hash::{Hash, Hasher},
io::Read,
path::PathBuf,
sync::Arc,
};
@ -30,7 +31,7 @@ pub struct TextSvg {
stroke: Option<Stroke>,
fill: Color,
alignment: TextAlignment,
handle: Option<Handle>,
pub handle: Option<Handle>,
fontdb: Arc<resvg::usvg::fontdb::Database>,
}
@ -258,7 +259,7 @@ impl TextSvg {
} else {
"".into()
};
let size = Size::new(1920.0, 1080.0);
let size = Size::new(3840.0, 2160.0);
let total_lines = self.text.lines().count();
let half_lines = (total_lines / 2) as f32;
let middle_position = size.height / 2.0;
@ -291,8 +292,8 @@ impl TextSvg {
self.font.size,
self.fill, stroke, text);
debug!("starting...");
let resvg_tree = Tree::from_str(
&final_svg,
let resvg_tree = Tree::from_data(
&final_svg.as_bytes(),
&resvg::usvg::Options {
fontdb: Arc::clone(&self.fontdb),
..Default::default()
@ -306,6 +307,14 @@ impl TextSvg {
.expect("opops");
resvg::render(&resvg_tree, transform, &mut pixmap.as_mut());
// debug!(?pixmap);
// let mut path = dirs::data_local_dir().unwrap();
// path.push(PathBuf::from("lumina"));
// path.push(PathBuf::from("temp"));
// let file_title =
// &self.text.lines().next().unwrap().trim_end();
// path.push(PathBuf::from(file_title));
// path.set_extension("png");
// let _ = pixmap.save_png(path);
debug!("rendered");
let handle = Handle::from_bytes(pixmap.take());
self.handle = Some(handle);
@ -315,7 +324,7 @@ impl TextSvg {
pub fn view<'a>(&self) -> Element<'a, Message> {
Image::new(self.handle.clone().unwrap())
.content_fit(ContentFit::Contain)
.content_fit(ContentFit::Cover)
.width(Length::Fill)
.height(Length::Fill)
.into()