mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
230 lines
5.9 KiB
Rust
230 lines
5.9 KiB
Rust
//! Exporting into PDF documents.
|
|
|
|
mod font;
|
|
mod image;
|
|
mod outline;
|
|
mod page;
|
|
|
|
use std::cmp::Eq;
|
|
use std::collections::{HashMap, HashSet};
|
|
use std::hash::Hash;
|
|
|
|
use pdf_writer::types::Direction;
|
|
use pdf_writer::{Finish, Name, PdfWriter, Ref, TextStr};
|
|
|
|
use self::outline::{Heading, HeadingNode};
|
|
use self::page::Page;
|
|
use crate::doc::{Document, Lang, Metadata};
|
|
use crate::font::Font;
|
|
use crate::geom::{Abs, Dir, Em};
|
|
use crate::image::Image;
|
|
|
|
/// Export a document into a PDF file.
|
|
///
|
|
/// This creates one page per frame. In addition to the frames, you need to pass
|
|
/// in the context used during compilation so that fonts and images can be
|
|
/// included in the PDF.
|
|
///
|
|
/// Returns the raw bytes making up the PDF file.
|
|
pub fn pdf(document: &Document) -> Vec<u8> {
|
|
let mut ctx = PdfContext::new(&document.metadata);
|
|
page::construct_pages(&mut ctx, &document.pages);
|
|
font::write_fonts(&mut ctx);
|
|
image::write_images(&mut ctx);
|
|
page::write_page_tree(&mut ctx);
|
|
write_catalog(&mut ctx);
|
|
ctx.writer.finish()
|
|
}
|
|
|
|
/// Identifies the color space definitions.
|
|
const SRGB: Name<'static> = Name(b"srgb");
|
|
const D65_GRAY: Name<'static> = Name(b"d65gray");
|
|
|
|
/// Context for exporting a whole PDF document.
|
|
pub struct PdfContext<'a> {
|
|
metadata: &'a Metadata,
|
|
writer: PdfWriter,
|
|
pages: Vec<Page>,
|
|
page_heights: Vec<f32>,
|
|
alloc: Ref,
|
|
page_tree_ref: Ref,
|
|
font_refs: Vec<Ref>,
|
|
image_refs: Vec<Ref>,
|
|
page_refs: Vec<Ref>,
|
|
font_map: Remapper<Font>,
|
|
image_map: Remapper<Image>,
|
|
glyph_sets: HashMap<Font, HashSet<u16>>,
|
|
languages: HashMap<Lang, usize>,
|
|
heading_tree: Vec<HeadingNode>,
|
|
}
|
|
|
|
impl<'a> PdfContext<'a> {
|
|
fn new(metadata: &'a Metadata) -> Self {
|
|
let mut alloc = Ref::new(1);
|
|
let page_tree_ref = alloc.bump();
|
|
Self {
|
|
metadata,
|
|
writer: PdfWriter::new(),
|
|
pages: vec![],
|
|
page_heights: vec![],
|
|
alloc,
|
|
page_tree_ref,
|
|
page_refs: vec![],
|
|
font_refs: vec![],
|
|
image_refs: vec![],
|
|
font_map: Remapper::new(),
|
|
image_map: Remapper::new(),
|
|
glyph_sets: HashMap::new(),
|
|
languages: HashMap::new(),
|
|
heading_tree: vec![],
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Write the document catalog.
|
|
fn write_catalog(ctx: &mut PdfContext) {
|
|
// Build the outline tree.
|
|
let outline_root_id = (!ctx.heading_tree.is_empty()).then(|| ctx.alloc.bump());
|
|
let outline_start_ref = ctx.alloc;
|
|
let len = ctx.heading_tree.len();
|
|
let mut prev_ref = None;
|
|
|
|
for (i, node) in std::mem::take(&mut ctx.heading_tree).iter().enumerate() {
|
|
prev_ref = Some(outline::write_outline_item(
|
|
ctx,
|
|
node,
|
|
outline_root_id.unwrap(),
|
|
prev_ref,
|
|
i + 1 == len,
|
|
));
|
|
}
|
|
|
|
if let Some(outline_root_id) = outline_root_id {
|
|
let mut outline_root = ctx.writer.outline(outline_root_id);
|
|
outline_root.first(outline_start_ref);
|
|
outline_root.last(Ref::new(ctx.alloc.get() - 1));
|
|
outline_root.count(ctx.heading_tree.len() as i32);
|
|
}
|
|
|
|
let lang = ctx
|
|
.languages
|
|
.iter()
|
|
.max_by_key(|(&lang, &count)| (count, lang))
|
|
.map(|(&k, _)| k);
|
|
|
|
let dir = if lang.map(Lang::dir) == Some(Dir::RTL) {
|
|
Direction::R2L
|
|
} else {
|
|
Direction::L2R
|
|
};
|
|
|
|
// Write the document information.
|
|
let mut info = ctx.writer.document_info(ctx.alloc.bump());
|
|
if let Some(title) = &ctx.metadata.title {
|
|
info.title(TextStr(title));
|
|
}
|
|
if let Some(author) = &ctx.metadata.author {
|
|
info.author(TextStr(author));
|
|
}
|
|
info.creator(TextStr("Typst"));
|
|
info.finish();
|
|
|
|
// Write the document catalog.
|
|
let mut catalog = ctx.writer.catalog(ctx.alloc.bump());
|
|
catalog.pages(ctx.page_tree_ref);
|
|
catalog.viewer_preferences().direction(dir);
|
|
|
|
if let Some(outline_root_id) = outline_root_id {
|
|
catalog.outlines(outline_root_id);
|
|
}
|
|
|
|
if let Some(lang) = lang {
|
|
catalog.lang(TextStr(lang.as_str()));
|
|
}
|
|
}
|
|
|
|
/// Compress data with the DEFLATE algorithm.
|
|
fn deflate(data: &[u8]) -> Vec<u8> {
|
|
const COMPRESSION_LEVEL: u8 = 6;
|
|
miniz_oxide::deflate::compress_to_vec_zlib(data, COMPRESSION_LEVEL)
|
|
}
|
|
|
|
/// Assigns new, consecutive PDF-internal indices to items.
|
|
struct Remapper<T> {
|
|
/// Forwards from the items to the pdf indices.
|
|
to_pdf: HashMap<T, usize>,
|
|
/// Backwards from the pdf indices to the items.
|
|
to_items: Vec<T>,
|
|
}
|
|
|
|
impl<T> Remapper<T>
|
|
where
|
|
T: Eq + Hash + Clone,
|
|
{
|
|
fn new() -> Self {
|
|
Self { to_pdf: HashMap::new(), to_items: vec![] }
|
|
}
|
|
|
|
fn insert(&mut self, item: T) {
|
|
let to_layout = &mut self.to_items;
|
|
self.to_pdf.entry(item.clone()).or_insert_with(|| {
|
|
let pdf_index = to_layout.len();
|
|
to_layout.push(item);
|
|
pdf_index
|
|
});
|
|
}
|
|
|
|
fn map(&self, item: T) -> usize {
|
|
self.to_pdf[&item]
|
|
}
|
|
|
|
fn pdf_indices<'a>(
|
|
&'a self,
|
|
refs: &'a [Ref],
|
|
) -> impl Iterator<Item = (Ref, usize)> + 'a {
|
|
refs.iter().copied().zip(0..self.to_pdf.len())
|
|
}
|
|
|
|
fn items(&self) -> impl Iterator<Item = &T> + '_ {
|
|
self.to_items.iter()
|
|
}
|
|
}
|
|
|
|
/// Additional methods for [`Abs`].
|
|
trait AbsExt {
|
|
/// Convert an to a number of points.
|
|
fn to_f32(self) -> f32;
|
|
}
|
|
|
|
impl AbsExt for Abs {
|
|
fn to_f32(self) -> f32 {
|
|
self.to_pt() as f32
|
|
}
|
|
}
|
|
|
|
/// Additional methods for [`Em`].
|
|
trait EmExt {
|
|
/// Convert an em length to a number of PDF font units.
|
|
fn to_font_units(self) -> f32;
|
|
}
|
|
|
|
impl EmExt for Em {
|
|
fn to_font_units(self) -> f32 {
|
|
1000.0 * self.get() as f32
|
|
}
|
|
}
|
|
|
|
/// Additional methods for [`Ref`].
|
|
trait RefExt {
|
|
/// Bump the reference up by one and return the previous one.
|
|
fn bump(&mut self) -> Self;
|
|
}
|
|
|
|
impl RefExt for Ref {
|
|
fn bump(&mut self) -> Self {
|
|
let prev = *self;
|
|
*self = Self::new(prev.get() + 1);
|
|
prev
|
|
}
|
|
}
|