Code Monkey home page Code Monkey logo

Comments (11)

twardoch avatar twardoch commented on July 28, 2024 1

from lib-font.

Pomax avatar Pomax commented on July 28, 2024 1

alright, instance records added. No convenience functions, but then it doesn't really need it, just tap into myfont.opentype.tables.fvar.instances, e.g. to get the names, map the subfamilyNameID into the name table:

const { fvar, name } = myFont.opentype.tables;
const instanceNames = fvar.instances.map(instance =>
    name.get(instance.subfamilyNameID)
);

from lib-font.

Pomax avatar Pomax commented on July 28, 2024

you mean like getSupportedAxes() and getAxis(name), or something else?

from lib-font.

RoelN avatar RoelN commented on July 28, 2024

That'd get me the axes, but I mean named instances that point to predefined axes settings.

Like the dropdown here:

image

from lib-font.

twardoch avatar twardoch commented on July 28, 2024

from lib-font.

Pomax avatar Pomax commented on July 28, 2024

As Adam mentions, the axis record has an ID into the name table that should let you look it up pretty easily:

const tables = myFont.opentype.tables;
const axis = tables.fvar.getAxis(`wdth`);
const fullName = tables.name.get(axis.axisNameID)

If it would drastically simplify your work, I could add a function to fvar, or to variation axis records, that fetches that full name automatically, but I'm not sure it's complex enough to warrant a dedicated function (that said, this probably falls in the discussion around how much "convenience" to offer on top of the straight up parsed data)

from lib-font.

RoelN avatar RoelN commented on July 28, 2024

But that gives me axis names, that's a problem indeed solved. I'm looking for named instances, the predefined styles that set axes to specific values. I'm not seeing that in the current fvar object, or am I missing something obvious?

from lib-font.

Pomax avatar Pomax commented on July 28, 2024

haha, yeah I think I stopped when it turned into "check flags to figure out how to parse the rest" and moved on to more fun stuff. I've unchecked fvar in #45

from lib-font.

RoelN avatar RoelN commented on July 28, 2024

🙏 Supermegathanks!! 💖

from lib-font.

twardoch avatar twardoch commented on July 28, 2024

Maybe Pomax defines "lazy" differently: I'll be adding code when people ask for it, but not before :) That's the good kind of lazy, I'd say ;)

from lib-font.

Pomax avatar Pomax commented on July 28, 2024

it's the "doing the actual programming" version of lazy loading =D

But on a less joking note, that's kind of true: I started the rewrite for some folks who needed a simple opentype lib, and while adding tables has turned out to be easier than expected, stuff that people actually needed still got done first, with everything that has no one actually asking for it getting done "whenever I feel like it".

The rewrite's still young, so for now that's still "when I have some dead moments during the day" =)

from lib-font.

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.