Forum Replies Created
-
AuthorPosts
-
Any chance that could be fixed for 1.7 release ?
Great! Thank you.
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
thanks!
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.glyphPreviewThanks Frederik,
That’s what I was looking for.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,
Jeremieyep, 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) ###
OK,
The only way I found to do this is that:
https://github.com/sansplomb/RobofontTools/blob/master/Tests/copyFontInfos.pymight be useful to some, unless there is a smarter way to do?
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.Hi again,
I have place a first version of my script on :
https://github.com/sansplomb/RobofontTools/tree/master/GenerateFontIt adds the possibility to export kern table into the generated font. It supports Groups and can also expand Group kerning.
Any feedback welcome :-)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?thanks ! works like a charm :)
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)
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 ;-)
-
AuthorPosts