LegendarySaiyan
Results
2
comments of
LegendarySaiyan
Any updates? Still unclear how to add text to existing pdf template
Here is the code: ``` let font_data = std::fs::read("src/fonts/Arial-Bold.ttf").unwrap(); let font_dict_id = template_pdf.add_object(dictionary! { "Type" => "Font", "Subtype" => "TrueType", "BaseFont" => "Arial-Bold", "Encoding" => "WinAnsiEncoding", }); let font_stream =...