Giter Club home page Giter Club logo

Comments (8)

swampthang avatar swampthang commented on July 20, 2024

Noticing that when the script fails, it kills the process so all fonts after that are not being loaded. Looking at where the script fails, the font that seems to be the culprit is in the attached zip file.
Jazz.ttf.zip

from fontkit.

swampthang avatar swampthang commented on July 20, 2024

Here are a couple of references to the OTS parsing error:
https://bugs.chromium.org/p/chromium/issues/detail?id=527165
khaledhosny/ots#80
khaledhosny/ots@937c9c3

from fontkit.

swampthang avatar swampthang commented on July 20, 2024

Looking at this...
https://chromium.googlesource.com/external/github.com/khaledhosny/ots/+/refs/heads/master/docs/DesignDoc.md
I noticed that the goal of OTS was not necessarily to nuke the fonts. So I spoke too soon calling the OTS notifications 'errors'. They're actually warnings. The fonts are being loaded. Not sure if this is a problem for the app but so far it's working. I was able to overcome the font.name === undefined error as well.

from fontkit.

devongovett avatar devongovett commented on July 20, 2024

Those OTS issues aren't caused by fontkit. OTS is a font validator used by Chrome to prevent security issues with web fonts. If you have an issue with fontkit specifically, could you post a code example demonstrating the problem and the font in question? Thanks!

from fontkit.

swampthang avatar swampthang commented on July 20, 2024

Was just wondering if you had any kind of listener for those warnings and a way to suppress them.

from fontkit.

swampthang avatar swampthang commented on July 20, 2024

After creating a font object, is there a way to get the font file path back out of the object? Been digging around in the object and there's a lot in there. Assumed you had to have it stored in there somewhere.
Thanks.

from fontkit.

devongovett avatar devongovett commented on July 20, 2024

fontkit objects can be created in many ways, including from files or buffers. The filename is not held onto once the font is read into memory. You'll need to do that yourself.

from fontkit.

digitalnature avatar digitalnature commented on July 20, 2024

To prevent this, you can wrap the property call in a try-catch block


try{
   font.fullName;
 }catch(e){
   console.log(e.message);
}

from fontkit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.