SciSci
SciSci
Is there a workaround for this? Its crashing my app as well.
Hi @McMartin that makes sense. if I do end up going with JUCE for an upcoming project I will help out. One other thing...I haven't actually tried your cmake code,...
Awesome, sounds good to me. Sounds like if I want to go through the hard work I can ;). Thaks for working on this. I'll check in again as I...
Hi @marcusatbang thanks for responding. The reason I mentioned outlines, is that it is (or was at least) fairly common practice to simply outline your fonts before sending them to...
Thanks, that helps. I can see the spot where it subs in a '.' character if it is not in the map. https://github.com/jung-kurt/gofpdf/blob/cc7f4a2880e224dc55d15289863817df6d9f6893/util.go#L171 I guess I could make my own...
Unfortunately not.
Cool I will test this out and merge it when I get a chance.
It looks like in your code your dimensions are backwards, it should be width x height. ``` CGSize videoSize = CGSizeMake(1080.0, 1920.0); should be: CGSize videoSize = CGSizeMake(1920.0, 1080.0); ```...
Thanks for letting me know. So all of my tests have been on UIViewControllers so they do inherit from NSObject. However, regular old methods that aren't IBActions weren't being swizzled....
Thanks for the fix, really appreciate it!