TonalidadeHidrica
TonalidadeHidrica
Thanks for your detailed review. I understood that adding two more constructors are not a good way. So, as I understand, the high-level API `FlacReader` should do basic things, and...
> > So, as I understand, the high-level API FlacReader should do basic things, and advanced features like seeking should be provided only via low-level API, at least for now,...
FWIW I define the following macro that enables caching too. ```rust use once_cell::sync::Lazy; use scraper::Selector; macro_rules! selector { ($e: expr) => {{ static SELECTOR: Lazy = Lazy::new(|| Selector::parse($e).unwrap()); &*SELECTOR }};...
Oops, sorry, I miswrote "too", but my prototype is the one which *only* enables caching.
Thank you! Do we need to parse the binary font file once again to obtain `ttf_parse::Face` instance? Or is there a way to convert it from `rustybuzz::Face`?
Just out of curiosity, what do `set_pixels_per_em` and `set_points_per_em` do? It seems they does not change the outcome.
@laurmaedje I see, thanks for your information. @RazrFalcon I tested the ratio and it worked like a charm! Thank you. Should I close the issue or leave it open until...
Is it really necessary that the error should own the path? Can't it just store the reference to the path instead?
I agree that this does not to be mutable. It's sad that this repository has been abandoned for years...
The benefit of this package is that you can obtain unified style of units across the pages, the spacing is always determined automatically, and the document becomes more semantic. Also...