Jeremie

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 22 total)
  • Author
    Posts
  • in reply to: Modal dialogs and El Capitan #6218

    Jeremie
    Member

    Any chance that could be fixed for 1.7 release ?

    in reply to: FontInfoChanged Notification ? #6117

    Jeremie
    Member

    Great! Thank you.

    in reply to: GlyphCollectionView / GlyphCellView #6062

    Jeremie
    Member

    Hi Frederik,

    When trying to use it like GlyphCollectionView, got this traceback:

    File “lib/UI/fontOverView/doodleGlyphCollectionView.pyc”, line 766, in __init__
    File “lib/UI/fontOverView/doodleGlyphCollectionView.pyc”, line 421, in buildColumnHeaderMenu
    AttributeError: ‘NoneType’ object has no attribute ‘setMenu_’

    Any insight?

    thanks

    in reply to: MultiLineView padding #6057

    Jeremie
    Member

    thanks!

    in reply to: MultiLineView padding #6050

    Jeremie
    Member

    Interesting…
    Is there a similar hack for mojo.glyphPreview() ? There is clipping occurring at the top for accented glyphs such as /Aring
    It seems there is no attribute refresh() for mojo.glyphPreview

    in reply to: anchors #6036

    Jeremie
    Member

    Thanks Frederik,
    That’s what I was looking for.

    in reply to: anchors #6030

    Jeremie
    Member

    Hi !

    Is there anything new regarding anchors in RoboFont 1.6 ?
    I have the same questions as Andreas, but I see it is from 2012 so, maybe there are news?

    thanks,
    Jeremie

    in reply to: Font Info #5939

    Jeremie
    Member

    yep, this works too:

    ###
    import os
    import shutil
    
    f = CurrentFont()
    nf = NewFont(showUI=False)
    
    UFOroot = f.path
    infotail = 'fontinfo.plist'
    sourcefontinfopath = os.path.join(UFOroot, infotail)
    
    root, tail =  os.path.split(f.path)
    newUFOTail = 'New_' + tail.split('.')[0] + '.ufo'
    newUFOroot = os.path.join(root, newUFOTail)
    
    destfontinfopath = os.path.join(newUFOroot, infotail)
    
    nf.save(newUFOroot)
    
    shutil.copyfile(sourcefontinfopath, destfontinfopath)
    nf.close()
    
    RFont(newUFOroot)
    ###
    
    in reply to: Font Info #5937

    Jeremie
    Member

    OK,

    The only way I found to do this is that:
    https://github.com/sansplomb/RobofontTools/blob/master/Tests/copyFontInfos.py

    might be useful to some, unless there is a smarter way to do?

    in reply to: Handful of questions for new Robofont User #5883

    Jeremie
    Member

    for 1) you can use my ‘Properties’ extension: https://github.com/sansplomb/RobofontTools/tree/master/Properties
    I shows in the upper right corner of the glyph window the distances between selected points, the distances of bcps, the number of contours, the number of ON curve points, and the number of OFF curve points. I use it all the time now.

    in reply to: kern table #5837

    Jeremie
    Member

    Hi again,

    I have place a first version of my script on :
    https://github.com/sansplomb/RobofontTools/tree/master/GenerateFont

    It adds the possibility to export kern table into the generated font. It supports Groups and can also expand Group kerning.
    Any feedback welcome :-)

    in reply to: kern table #5836

    Jeremie
    Member

    The notification event “fontDidGenerate” works well with the menu command “Generate Font” but, does it work with the Font Method “generate()” ?
    I can’t seem to be able to make them work together… is that a bug or am I doing something wrong?

    in reply to: Vanilla/Defcon Browser? #5835

    Jeremie
    Member

    thanks ! works like a charm :)

    in reply to: kern table #5832

    Jeremie
    Member

    Hi Frederik,

    Thanks, subscribing the ‘fontDidGenerate’ works. I manage to add the kern table to the generated font.

    the only strange thing with ttLib.TTFont .save() function is that I couldn’t rewrite the same TTF file without a sstruct error:

    “””error: unpack requires a string argument of length 32″””

    I had to save into a new temporary file:

    fontpath= info[“path”]
    (head, tail) = path.split(fontpath)
    tail = tail[:-4]
    tail += ‘_kern.ttf’
    fontpath_kern = path.join(head, tail)
    tt = ttLib.TTFont(fontpath)

    … some code…

    tt.save(fontpath_kern)

    in reply to: TrueType curves #5831

    Jeremie
    Member

    Nice to have the possibility to remove those points. How is that doable? How are they labeled?

    I ‘could’ attempt to write some TT instructions program but I am hoping to see RoboHint at work soon :)

    I guess it’s like the old school <kern> table: one could edit the ttf <glyf> table to add Instructions there… the other problem is to write the <prep> <cvt> <fpgm> <loca> tables… that is another kettle of fish ;-)

Viewing 15 posts - 1 through 15 (of 22 total)