mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
We just need to pass user provided FillRule via IPC to canvas paint thread, then pass it all down to backend, which will handle it. Testing: Added WPT tests. --------- Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
829 lines
28 KiB
Rust
829 lines
28 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
use std::mem;
|
|
use std::sync::Arc;
|
|
|
|
use app_units::Au;
|
|
use canvas_traits::canvas::*;
|
|
use compositing_traits::CrossProcessCompositorApi;
|
|
use euclid::default::{Box2D, Point2D, Rect, Size2D, Transform2D, Vector2D};
|
|
use euclid::point2;
|
|
use fonts::{
|
|
ByteIndex, FontBaseline, FontContext, FontGroup, FontMetrics, FontRef, GlyphInfo, GlyphStore,
|
|
LAST_RESORT_GLYPH_ADVANCE, ShapingFlags, ShapingOptions,
|
|
};
|
|
use log::warn;
|
|
use pixels::Snapshot;
|
|
use range::Range;
|
|
use unicode_script::Script;
|
|
use webrender_api::ImageKey;
|
|
|
|
use crate::backend::GenericDrawTarget;
|
|
|
|
// Asserts on WR texture cache update for zero sized image with raw data.
|
|
// https://github.com/servo/webrender/blob/main/webrender/src/texture_cache.rs#L1475
|
|
const MIN_WR_IMAGE_SIZE: Size2D<u64> = Size2D::new(1, 1);
|
|
|
|
#[derive(Default)]
|
|
struct UnshapedTextRun<'a> {
|
|
font: Option<FontRef>,
|
|
script: Script,
|
|
string: &'a str,
|
|
}
|
|
|
|
impl UnshapedTextRun<'_> {
|
|
fn script_and_font_compatible(&self, script: Script, other_font: &Option<FontRef>) -> bool {
|
|
if self.script != script {
|
|
return false;
|
|
}
|
|
|
|
match (&self.font, other_font) {
|
|
(Some(font_a), Some(font_b)) => font_a.identifier() == font_b.identifier(),
|
|
(None, None) => true,
|
|
_ => false,
|
|
}
|
|
}
|
|
|
|
fn into_shaped_text_run(self) -> Option<TextRun> {
|
|
let font = self.font?;
|
|
if self.string.is_empty() {
|
|
return None;
|
|
}
|
|
|
|
let word_spacing = Au::from_f64_px(
|
|
font.glyph_index(' ')
|
|
.map(|glyph_id| font.glyph_h_advance(glyph_id))
|
|
.unwrap_or(LAST_RESORT_GLYPH_ADVANCE),
|
|
);
|
|
let options = ShapingOptions {
|
|
letter_spacing: None,
|
|
word_spacing,
|
|
script: self.script,
|
|
flags: ShapingFlags::empty(),
|
|
};
|
|
let glyphs = font.shape_text(self.string, &options);
|
|
Some(TextRun { font, glyphs })
|
|
}
|
|
}
|
|
|
|
pub(crate) struct TextRun {
|
|
pub(crate) font: FontRef,
|
|
pub(crate) glyphs: Arc<GlyphStore>,
|
|
}
|
|
|
|
impl TextRun {
|
|
fn bounding_box(&self) -> Rect<f32> {
|
|
let mut bounding_box = None;
|
|
let mut bounds_offset: f32 = 0.;
|
|
let glyph_ids = self
|
|
.glyphs
|
|
.iter_glyphs_for_byte_range(&Range::new(ByteIndex(0), self.glyphs.len()))
|
|
.map(GlyphInfo::id);
|
|
for glyph_id in glyph_ids {
|
|
let bounds = self.font.typographic_bounds(glyph_id);
|
|
let amount = Vector2D::new(bounds_offset, 0.);
|
|
let bounds = bounds.translate(amount);
|
|
let initiated_bbox = bounding_box.get_or_insert_with(|| {
|
|
let origin = Point2D::new(bounds.min_x(), 0.);
|
|
Box2D::new(origin, origin).to_rect()
|
|
});
|
|
bounding_box = Some(initiated_bbox.union(&bounds));
|
|
bounds_offset = bounds.max_x();
|
|
}
|
|
bounding_box.unwrap_or_default()
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Copy)]
|
|
pub(crate) enum Filter {
|
|
Bilinear,
|
|
Nearest,
|
|
}
|
|
|
|
pub(crate) struct CanvasData<DrawTarget: GenericDrawTarget> {
|
|
drawtarget: DrawTarget,
|
|
compositor_api: CrossProcessCompositorApi,
|
|
image_key: ImageKey,
|
|
font_context: Arc<FontContext>,
|
|
}
|
|
|
|
impl<DrawTarget: GenericDrawTarget> CanvasData<DrawTarget> {
|
|
pub(crate) fn new(
|
|
size: Size2D<u64>,
|
|
compositor_api: CrossProcessCompositorApi,
|
|
font_context: Arc<FontContext>,
|
|
) -> CanvasData<DrawTarget> {
|
|
let size = size.max(MIN_WR_IMAGE_SIZE);
|
|
let mut draw_target = DrawTarget::new(size.cast());
|
|
let image_key = compositor_api.generate_image_key_blocking().unwrap();
|
|
let (descriptor, data) = draw_target.image_descriptor_and_serializable_data();
|
|
compositor_api.add_image(image_key, descriptor, data);
|
|
CanvasData {
|
|
drawtarget: draw_target,
|
|
compositor_api,
|
|
image_key,
|
|
font_context,
|
|
}
|
|
}
|
|
|
|
pub(crate) fn image_key(&self) -> ImageKey {
|
|
self.image_key
|
|
}
|
|
|
|
#[allow(clippy::too_many_arguments)]
|
|
pub(crate) fn draw_image(
|
|
&mut self,
|
|
snapshot: Snapshot,
|
|
dest_rect: Rect<f64>,
|
|
source_rect: Rect<f64>,
|
|
smoothing_enabled: bool,
|
|
shadow_options: ShadowOptions,
|
|
composition_options: CompositionOptions,
|
|
transform: Transform2D<f32>,
|
|
) {
|
|
// We round up the floating pixel values to draw the pixels
|
|
let source_rect = source_rect.ceil();
|
|
// It discards the extra pixels (if any) that won't be painted
|
|
let snapshot = if Rect::from_size(snapshot.size().to_f64()).contains_rect(&source_rect) {
|
|
snapshot.get_rect(source_rect.to_u32())
|
|
} else {
|
|
snapshot
|
|
};
|
|
|
|
let writer = |draw_target: &mut DrawTarget, transform| {
|
|
write_image::<DrawTarget>(
|
|
draw_target,
|
|
snapshot,
|
|
dest_rect,
|
|
smoothing_enabled,
|
|
composition_options,
|
|
transform,
|
|
);
|
|
};
|
|
|
|
if shadow_options.need_to_draw_shadow() {
|
|
let rect = Rect::new(
|
|
Point2D::new(dest_rect.origin.x as f32, dest_rect.origin.y as f32),
|
|
Size2D::new(dest_rect.size.width as f32, dest_rect.size.height as f32),
|
|
);
|
|
|
|
// TODO(pylbrecht) pass another closure for raqote
|
|
self.draw_with_shadow(
|
|
&rect,
|
|
shadow_options,
|
|
composition_options,
|
|
transform,
|
|
writer,
|
|
);
|
|
} else {
|
|
writer(&mut self.drawtarget, transform);
|
|
}
|
|
}
|
|
|
|
#[allow(clippy::too_many_arguments)]
|
|
pub(crate) fn fill_text_with_size(
|
|
&mut self,
|
|
text: String,
|
|
x: f64,
|
|
y: f64,
|
|
max_width: Option<f64>,
|
|
is_rtl: bool,
|
|
size: f64,
|
|
style: FillOrStrokeStyle,
|
|
text_options: &TextOptions,
|
|
composition_options: CompositionOptions,
|
|
transform: Transform2D<f32>,
|
|
) {
|
|
// > Step 2: Replace all ASCII whitespace in text with U+0020 SPACE characters.
|
|
let text = replace_ascii_whitespace(text);
|
|
|
|
// > Step 3: Let font be the current font of target, as given by that object's font
|
|
// > attribute.
|
|
let Some(ref font_style) = text_options.font else {
|
|
return;
|
|
};
|
|
|
|
let font_group = self
|
|
.font_context
|
|
.font_group_with_size(font_style.clone(), Au::from_f64_px(size));
|
|
let mut font_group = font_group.write();
|
|
let Some(first_font) = font_group.first(&self.font_context) else {
|
|
warn!("Could not render canvas text, because there was no first font.");
|
|
return;
|
|
};
|
|
|
|
let runs = self.build_unshaped_text_runs(&text, &mut font_group);
|
|
// TODO: This doesn't do any kind of line layout at all. In particular, there needs
|
|
// to be some alignment along a baseline and also support for bidi text.
|
|
let shaped_runs: Vec<_> = runs
|
|
.into_iter()
|
|
.filter_map(UnshapedTextRun::into_shaped_text_run)
|
|
.collect();
|
|
let total_advance = shaped_runs
|
|
.iter()
|
|
.map(|run| run.glyphs.total_advance())
|
|
.sum::<Au>()
|
|
.to_f64_px();
|
|
|
|
// > Step 6: If maxWidth was provided and the hypothetical width of the inline box in the
|
|
// > hypothetical line box is greater than maxWidth CSS pixels, then change font to have a
|
|
// > more condensed font (if one is available or if a reasonably readable one can be
|
|
// > synthesized by applying a horizontal scale factor to the font) or a smaller font, and
|
|
// > return to the previous step.
|
|
//
|
|
// TODO: We only try decreasing the font size here. Eventually it would make sense to use
|
|
// other methods to try to decrease the size, such as finding a narrower font or decreasing
|
|
// spacing.
|
|
if let Some(max_width) = max_width {
|
|
let new_size = (max_width / total_advance * size).floor().max(5.);
|
|
if total_advance > max_width && new_size != size {
|
|
self.fill_text_with_size(
|
|
text,
|
|
x,
|
|
y,
|
|
Some(max_width),
|
|
is_rtl,
|
|
new_size,
|
|
style,
|
|
text_options,
|
|
composition_options,
|
|
transform,
|
|
);
|
|
return;
|
|
}
|
|
}
|
|
|
|
// > Step 7: Find the anchor point for the line of text.
|
|
let start = self.find_anchor_point_for_line_of_text(
|
|
x as f32,
|
|
y as f32,
|
|
&first_font.metrics,
|
|
total_advance as f32,
|
|
is_rtl,
|
|
text_options,
|
|
);
|
|
|
|
// > Step 8: Let result be an array constructed by iterating over each glyph in the inline box
|
|
// > from left to right (if any), adding to the array, for each glyph, the shape of the glyph
|
|
// > as it is in the inline box, positioned on a coordinate space using CSS pixels with its
|
|
// > origin is at the anchor point.
|
|
self.maybe_bound_shape_with_pattern(
|
|
style,
|
|
composition_options,
|
|
&Rect::from_size(Size2D::new(total_advance, size)),
|
|
transform,
|
|
|self_, style| {
|
|
self_.drawtarget.fill_text(
|
|
shaped_runs,
|
|
start,
|
|
style,
|
|
composition_options,
|
|
transform,
|
|
);
|
|
},
|
|
);
|
|
}
|
|
|
|
#[allow(clippy::too_many_arguments)]
|
|
/// <https://html.spec.whatwg.org/multipage/#text-preparation-algorithm>
|
|
pub(crate) fn fill_text(
|
|
&mut self,
|
|
text: String,
|
|
x: f64,
|
|
y: f64,
|
|
max_width: Option<f64>,
|
|
is_rtl: bool,
|
|
style: FillOrStrokeStyle,
|
|
text_options: TextOptions,
|
|
_shadow_options: ShadowOptions,
|
|
composition_options: CompositionOptions,
|
|
transform: Transform2D<f32>,
|
|
) {
|
|
let Some(ref font_style) = text_options.font else {
|
|
return;
|
|
};
|
|
|
|
let size = font_style.font_size.computed_size();
|
|
self.fill_text_with_size(
|
|
text,
|
|
x,
|
|
y,
|
|
max_width,
|
|
is_rtl,
|
|
size.px() as f64,
|
|
style,
|
|
&text_options,
|
|
composition_options,
|
|
transform,
|
|
);
|
|
}
|
|
|
|
/// <https://html.spec.whatwg.org/multipage/#text-preparation-algorithm>
|
|
/// <https://html.spec.whatwg.org/multipage/#dom-context-2d-measuretext>
|
|
pub(crate) fn measure_text(&mut self, text: String, text_options: TextOptions) -> TextMetrics {
|
|
// > Step 2: Replace all ASCII whitespace in text with U+0020 SPACE characters.
|
|
let text = replace_ascii_whitespace(text);
|
|
let Some(ref font_style) = text_options.font else {
|
|
return TextMetrics::default();
|
|
};
|
|
|
|
let font_group = self.font_context.font_group(font_style.clone());
|
|
let mut font_group = font_group.write();
|
|
let font = font_group
|
|
.first(&self.font_context)
|
|
.expect("couldn't find font");
|
|
let ascent = font.metrics.ascent.to_f32_px();
|
|
let descent = font.metrics.descent.to_f32_px();
|
|
let runs = self.build_unshaped_text_runs(&text, &mut font_group);
|
|
|
|
let shaped_runs: Vec<_> = runs
|
|
.into_iter()
|
|
.filter_map(UnshapedTextRun::into_shaped_text_run)
|
|
.collect();
|
|
let total_advance = shaped_runs
|
|
.iter()
|
|
.map(|run| run.glyphs.total_advance())
|
|
.sum::<Au>()
|
|
.to_f32_px();
|
|
let bounding_box = shaped_runs
|
|
.iter()
|
|
.map(TextRun::bounding_box)
|
|
.reduce(|a, b| {
|
|
let amount = Vector2D::new(a.max_x(), 0.);
|
|
let bounding_box = b.translate(amount);
|
|
a.union(&bounding_box)
|
|
})
|
|
.unwrap_or_default();
|
|
|
|
let FontBaseline {
|
|
ideographic_baseline,
|
|
alphabetic_baseline,
|
|
hanging_baseline,
|
|
} = match font.baseline() {
|
|
Some(baseline) => baseline,
|
|
None => FontBaseline {
|
|
hanging_baseline: ascent * HANGING_BASELINE_DEFAULT,
|
|
ideographic_baseline: -descent * IDEOGRAPHIC_BASELINE_DEFAULT,
|
|
alphabetic_baseline: 0.,
|
|
},
|
|
};
|
|
|
|
let anchor_x = match text_options.align {
|
|
TextAlign::End => total_advance,
|
|
TextAlign::Center => total_advance / 2.,
|
|
TextAlign::Right => total_advance,
|
|
_ => 0.,
|
|
};
|
|
let anchor_y = match text_options.baseline {
|
|
TextBaseline::Top => ascent,
|
|
TextBaseline::Hanging => hanging_baseline,
|
|
TextBaseline::Ideographic => ideographic_baseline,
|
|
TextBaseline::Middle => (ascent - descent) / 2.,
|
|
TextBaseline::Alphabetic => alphabetic_baseline,
|
|
TextBaseline::Bottom => -descent,
|
|
};
|
|
|
|
TextMetrics {
|
|
width: total_advance,
|
|
actual_boundingbox_left: anchor_x - bounding_box.min_x(),
|
|
actual_boundingbox_right: bounding_box.max_x() - anchor_x,
|
|
actual_boundingbox_ascent: bounding_box.max_y() - anchor_y,
|
|
actual_boundingbox_descent: anchor_y - bounding_box.min_y(),
|
|
font_boundingbox_ascent: ascent - anchor_y,
|
|
font_boundingbox_descent: descent + anchor_y,
|
|
em_height_ascent: ascent - anchor_y,
|
|
em_height_descent: descent + anchor_y,
|
|
hanging_baseline: hanging_baseline - anchor_y,
|
|
alphabetic_baseline: alphabetic_baseline - anchor_y,
|
|
ideographic_baseline: ideographic_baseline - anchor_y,
|
|
}
|
|
}
|
|
|
|
fn build_unshaped_text_runs<'b>(
|
|
&self,
|
|
text: &'b str,
|
|
font_group: &mut FontGroup,
|
|
) -> Vec<UnshapedTextRun<'b>> {
|
|
let mut runs = Vec::new();
|
|
let mut current_text_run = UnshapedTextRun::default();
|
|
let mut current_text_run_start_index = 0;
|
|
|
|
for (index, character) in text.char_indices() {
|
|
// TODO: This should ultimately handle emoji variation selectors, but raqote does not yet
|
|
// have support for color glyphs.
|
|
let script = Script::from(character);
|
|
let font = font_group.find_by_codepoint(&self.font_context, character, None, None);
|
|
|
|
if !current_text_run.script_and_font_compatible(script, &font) {
|
|
let previous_text_run = mem::replace(
|
|
&mut current_text_run,
|
|
UnshapedTextRun {
|
|
font: font.clone(),
|
|
script,
|
|
..Default::default()
|
|
},
|
|
);
|
|
current_text_run_start_index = index;
|
|
runs.push(previous_text_run)
|
|
}
|
|
|
|
current_text_run.string =
|
|
&text[current_text_run_start_index..index + character.len_utf8()];
|
|
}
|
|
|
|
runs.push(current_text_run);
|
|
runs
|
|
}
|
|
|
|
/// Find the *anchor_point* for the given parameters of a line of text.
|
|
/// See <https://html.spec.whatwg.org/multipage/#text-preparation-algorithm>.
|
|
fn find_anchor_point_for_line_of_text(
|
|
&self,
|
|
x: f32,
|
|
y: f32,
|
|
metrics: &FontMetrics,
|
|
width: f32,
|
|
is_rtl: bool,
|
|
text_options: &TextOptions,
|
|
) -> Point2D<f32> {
|
|
let text_align = match text_options.align {
|
|
TextAlign::Start if is_rtl => TextAlign::Right,
|
|
TextAlign::Start => TextAlign::Left,
|
|
TextAlign::End if is_rtl => TextAlign::Left,
|
|
TextAlign::End => TextAlign::Right,
|
|
text_align => text_align,
|
|
};
|
|
let anchor_x = match text_align {
|
|
TextAlign::Center => -width / 2.,
|
|
TextAlign::Right => -width,
|
|
_ => 0.,
|
|
};
|
|
|
|
let ascent = metrics.ascent.to_f32_px();
|
|
let descent = metrics.descent.to_f32_px();
|
|
let anchor_y = match text_options.baseline {
|
|
TextBaseline::Top => ascent,
|
|
TextBaseline::Hanging => ascent * HANGING_BASELINE_DEFAULT,
|
|
TextBaseline::Ideographic => -descent * IDEOGRAPHIC_BASELINE_DEFAULT,
|
|
TextBaseline::Middle => (ascent - descent) / 2.,
|
|
TextBaseline::Alphabetic => 0.,
|
|
TextBaseline::Bottom => -descent,
|
|
};
|
|
|
|
point2(x + anchor_x, y + anchor_y)
|
|
}
|
|
|
|
pub(crate) fn fill_rect(
|
|
&mut self,
|
|
rect: &Rect<f32>,
|
|
style: FillOrStrokeStyle,
|
|
shadow_options: ShadowOptions,
|
|
composition_options: CompositionOptions,
|
|
transform: Transform2D<f32>,
|
|
) {
|
|
if style.is_zero_size_gradient() {
|
|
return; // Paint nothing if gradient size is zero.
|
|
}
|
|
|
|
if shadow_options.need_to_draw_shadow() {
|
|
self.draw_with_shadow(
|
|
rect,
|
|
shadow_options,
|
|
composition_options,
|
|
transform,
|
|
|new_draw_target, transform| {
|
|
new_draw_target.fill_rect(rect, style, composition_options, transform);
|
|
},
|
|
);
|
|
} else {
|
|
self.maybe_bound_shape_with_pattern(
|
|
style,
|
|
composition_options,
|
|
&rect.cast(),
|
|
transform,
|
|
|self_, style| {
|
|
self_
|
|
.drawtarget
|
|
.fill_rect(rect, style, composition_options, transform);
|
|
},
|
|
);
|
|
}
|
|
}
|
|
|
|
pub(crate) fn clear_rect(&mut self, rect: &Rect<f32>, transform: Transform2D<f32>) {
|
|
self.drawtarget.clear_rect(rect, transform);
|
|
}
|
|
|
|
pub(crate) fn stroke_rect(
|
|
&mut self,
|
|
rect: &Rect<f32>,
|
|
style: FillOrStrokeStyle,
|
|
line_options: LineOptions,
|
|
shadow_options: ShadowOptions,
|
|
composition_options: CompositionOptions,
|
|
transform: Transform2D<f32>,
|
|
) {
|
|
if style.is_zero_size_gradient() {
|
|
return; // Paint nothing if gradient size is zero.
|
|
}
|
|
|
|
if shadow_options.need_to_draw_shadow() {
|
|
self.draw_with_shadow(
|
|
rect,
|
|
shadow_options,
|
|
composition_options,
|
|
transform,
|
|
|new_draw_target, transform| {
|
|
new_draw_target.stroke_rect(
|
|
rect,
|
|
style,
|
|
line_options,
|
|
composition_options,
|
|
transform,
|
|
);
|
|
},
|
|
);
|
|
} else {
|
|
self.maybe_bound_shape_with_pattern(
|
|
style,
|
|
composition_options,
|
|
&rect.cast(),
|
|
transform,
|
|
|self_, style| {
|
|
self_.drawtarget.stroke_rect(
|
|
rect,
|
|
style,
|
|
line_options,
|
|
composition_options,
|
|
transform,
|
|
);
|
|
},
|
|
)
|
|
}
|
|
}
|
|
|
|
pub(crate) fn fill_path(
|
|
&mut self,
|
|
path: &Path,
|
|
fill_rule: FillRule,
|
|
style: FillOrStrokeStyle,
|
|
_shadow_options: ShadowOptions,
|
|
composition_options: CompositionOptions,
|
|
transform: Transform2D<f32>,
|
|
) {
|
|
if style.is_zero_size_gradient() {
|
|
return; // Paint nothing if gradient size is zero.
|
|
}
|
|
|
|
self.maybe_bound_shape_with_pattern(
|
|
style,
|
|
composition_options,
|
|
&path.bounding_box(),
|
|
transform,
|
|
|self_, style| {
|
|
self_
|
|
.drawtarget
|
|
.fill(path, fill_rule, style, composition_options, transform)
|
|
},
|
|
)
|
|
}
|
|
|
|
pub(crate) fn stroke_path(
|
|
&mut self,
|
|
path: &Path,
|
|
style: FillOrStrokeStyle,
|
|
line_options: LineOptions,
|
|
_shadow_options: ShadowOptions,
|
|
composition_options: CompositionOptions,
|
|
transform: Transform2D<f32>,
|
|
) {
|
|
if style.is_zero_size_gradient() {
|
|
return; // Paint nothing if gradient size is zero.
|
|
}
|
|
|
|
self.maybe_bound_shape_with_pattern(
|
|
style,
|
|
composition_options,
|
|
&path.bounding_box(),
|
|
transform,
|
|
|self_, style| {
|
|
self_
|
|
.drawtarget
|
|
.stroke(path, style, line_options, composition_options, transform);
|
|
},
|
|
)
|
|
}
|
|
|
|
pub(crate) fn clip_path(
|
|
&mut self,
|
|
path: &Path,
|
|
fill_rule: FillRule,
|
|
transform: Transform2D<f32>,
|
|
) {
|
|
self.drawtarget.push_clip(path, fill_rule, transform);
|
|
}
|
|
|
|
/// <https://html.spec.whatwg.org/multipage/#reset-the-rendering-context-to-its-default-state>
|
|
pub(crate) fn recreate(&mut self, size: Option<Size2D<u64>>) {
|
|
let size = size
|
|
.unwrap_or_else(|| self.drawtarget.get_size().to_u64())
|
|
.max(MIN_WR_IMAGE_SIZE);
|
|
|
|
// Step 1. Clear canvas's bitmap to transparent black.
|
|
self.drawtarget = DrawTarget::new(Size2D::new(size.width, size.height).cast());
|
|
|
|
self.update_image_rendering();
|
|
}
|
|
|
|
/// Update image in WebRender
|
|
pub(crate) fn update_image_rendering(&mut self) {
|
|
let (descriptor, data) = self.drawtarget.image_descriptor_and_serializable_data();
|
|
|
|
self.compositor_api
|
|
.update_image(self.image_key, descriptor, data);
|
|
}
|
|
|
|
// https://html.spec.whatwg.org/multipage/#dom-context-2d-putimagedata
|
|
pub(crate) fn put_image_data(&mut self, snapshot: Snapshot, rect: Rect<u32>) {
|
|
assert_eq!(rect.size, snapshot.size());
|
|
let source_surface = self
|
|
.drawtarget
|
|
.create_source_surface_from_data(snapshot)
|
|
.unwrap();
|
|
self.drawtarget.copy_surface(
|
|
source_surface,
|
|
Rect::from_size(rect.size.to_i32()),
|
|
rect.origin.to_i32(),
|
|
);
|
|
}
|
|
|
|
fn create_draw_target_for_shadow(&self, source_rect: &Rect<f32>) -> DrawTarget {
|
|
self.drawtarget.create_similar_draw_target(&Size2D::new(
|
|
source_rect.size.width as i32,
|
|
source_rect.size.height as i32,
|
|
))
|
|
}
|
|
|
|
fn draw_with_shadow<F>(
|
|
&self,
|
|
rect: &Rect<f32>,
|
|
shadow_options: ShadowOptions,
|
|
composition_options: CompositionOptions,
|
|
transform: Transform2D<f32>,
|
|
draw_shadow_source: F,
|
|
) where
|
|
F: FnOnce(&mut DrawTarget, Transform2D<f32>),
|
|
{
|
|
let shadow_src_rect = transform.outer_transformed_rect(rect);
|
|
let mut new_draw_target = self.create_draw_target_for_shadow(&shadow_src_rect);
|
|
let shadow_transform = transform.then(
|
|
&Transform2D::identity()
|
|
.pre_translate(-shadow_src_rect.origin.to_vector().cast::<f32>()),
|
|
);
|
|
draw_shadow_source(&mut new_draw_target, shadow_transform);
|
|
self.drawtarget.draw_surface_with_shadow(
|
|
new_draw_target.surface(),
|
|
&Point2D::new(shadow_src_rect.origin.x, shadow_src_rect.origin.y),
|
|
shadow_options,
|
|
composition_options,
|
|
);
|
|
}
|
|
|
|
/// Push a clip to the draw target to respect the non-repeating bound (either x, y, or both)
|
|
/// of the given pattern.
|
|
fn maybe_bound_shape_with_pattern<F>(
|
|
&mut self,
|
|
style: FillOrStrokeStyle,
|
|
composition_options: CompositionOptions,
|
|
path_bound_box: &Rect<f64>,
|
|
transform: Transform2D<f32>,
|
|
draw_shape: F,
|
|
) where
|
|
F: FnOnce(&mut Self, FillOrStrokeStyle),
|
|
{
|
|
let x_bound = style.x_bound();
|
|
let y_bound = style.y_bound();
|
|
// Clear operations are also unbounded.
|
|
if matches!(
|
|
composition_options.composition_operation,
|
|
CompositionOrBlending::Composition(CompositionStyle::Clear)
|
|
) || (x_bound.is_none() && y_bound.is_none())
|
|
{
|
|
draw_shape(self, style);
|
|
return;
|
|
}
|
|
let rect = Rect::from_size(Size2D::new(
|
|
x_bound.unwrap_or(path_bound_box.size.width.ceil() as u32),
|
|
y_bound.unwrap_or(path_bound_box.size.height.ceil() as u32),
|
|
))
|
|
.cast();
|
|
let rect = transform.outer_transformed_rect(&rect);
|
|
self.drawtarget.push_clip_rect(&rect.cast());
|
|
draw_shape(self, style);
|
|
self.drawtarget.pop_clip();
|
|
}
|
|
|
|
/// It reads image data from the canvas
|
|
/// canvas_size: The size of the canvas we're reading from
|
|
/// read_rect: The area of the canvas we want to read from
|
|
#[allow(unsafe_code)]
|
|
pub(crate) fn read_pixels(&mut self, read_rect: Option<Rect<u32>>) -> Snapshot {
|
|
let canvas_size = self.drawtarget.get_size().cast();
|
|
|
|
if let Some(read_rect) = read_rect {
|
|
let canvas_rect = Rect::from_size(canvas_size);
|
|
if canvas_rect
|
|
.intersection(&read_rect)
|
|
.is_none_or(|rect| rect.is_empty())
|
|
{
|
|
Snapshot::empty()
|
|
} else {
|
|
self.drawtarget.snapshot().get_rect(read_rect)
|
|
}
|
|
} else {
|
|
self.drawtarget.snapshot()
|
|
}
|
|
}
|
|
|
|
pub(crate) fn pop_clip(&mut self) {
|
|
self.drawtarget.pop_clip();
|
|
}
|
|
}
|
|
|
|
impl<D: GenericDrawTarget> Drop for CanvasData<D> {
|
|
fn drop(&mut self) {
|
|
self.compositor_api.delete_image(self.image_key);
|
|
}
|
|
}
|
|
|
|
const HANGING_BASELINE_DEFAULT: f32 = 0.8;
|
|
const IDEOGRAPHIC_BASELINE_DEFAULT: f32 = 0.5;
|
|
|
|
/// It writes an image to the destination target
|
|
/// draw_target: the destination target where the image_data will be copied
|
|
/// image_data: Pixel information of the image to be written. It takes RGBA8
|
|
/// image_size: The size of the image to be written
|
|
/// dest_rect: Area of the destination target where the pixels will be copied
|
|
/// smoothing_enabled: It determines if smoothing is applied to the image result
|
|
/// premultiply: Determines whenever the image data should be premultiplied or not
|
|
fn write_image<DrawTarget: GenericDrawTarget>(
|
|
draw_target: &mut DrawTarget,
|
|
snapshot: Snapshot,
|
|
dest_rect: Rect<f64>,
|
|
smoothing_enabled: bool,
|
|
composition_options: CompositionOptions,
|
|
transform: Transform2D<f32>,
|
|
) {
|
|
if snapshot.size().is_empty() {
|
|
return;
|
|
}
|
|
|
|
let image_rect = Rect::new(Point2D::zero(), snapshot.size().cast());
|
|
|
|
// From spec https://html.spec.whatwg.org/multipage/#dom-context-2d-drawimage
|
|
// When scaling up, if the imageSmoothingEnabled attribute is set to true, the user agent should attempt
|
|
// to apply a smoothing algorithm to the image data when it is scaled.
|
|
// Otherwise, the image must be rendered using nearest-neighbor interpolation.
|
|
let filter = if smoothing_enabled {
|
|
Filter::Bilinear
|
|
} else {
|
|
Filter::Nearest
|
|
};
|
|
|
|
let source_surface = draw_target
|
|
.create_source_surface_from_data(snapshot)
|
|
.unwrap();
|
|
|
|
draw_target.draw_surface(
|
|
source_surface,
|
|
dest_rect,
|
|
image_rect,
|
|
filter,
|
|
composition_options,
|
|
transform,
|
|
);
|
|
}
|
|
|
|
pub(crate) trait RectToi32 {
|
|
fn ceil(&self) -> Rect<f64>;
|
|
}
|
|
|
|
impl RectToi32 for Rect<f64> {
|
|
fn ceil(&self) -> Rect<f64> {
|
|
Rect::new(
|
|
Point2D::new(self.origin.x.ceil(), self.origin.y.ceil()),
|
|
Size2D::new(self.size.width.ceil(), self.size.height.ceil()),
|
|
)
|
|
}
|
|
}
|
|
|
|
fn replace_ascii_whitespace(text: String) -> String {
|
|
text.chars()
|
|
.map(|c| match c {
|
|
' ' | '\t' | '\n' | '\r' | '\x0C' => '\x20',
|
|
_ => c,
|
|
})
|
|
.collect()
|
|
}
|