Forum Replies Created
-
AuthorPosts
-
November 29, 2012 at 08:14 in reply to: Glyph mask and mark data not imported from FLS+UFOCentral-generated UFOs #5280
Hey Mathieu,
1) Run UFO central in FontLab to export your font to ufo (make sure export layers is ticked) (http://code.typesupply.com/browser/applicationScripts/FontLab/UFO/UFOCentral.py)
2) Open the UFO in Robofont
3) Run the following code in RoboFont to get your layerdata drawn:import colorsys f = CurrentFont() MASK_LIB_KEY = "org.robofab.fontlab.maskData" MARK_LIB_KEY = "org.robofab.fontlab.mark" def portFLmark(glyph): fontLabMarkColor = glyph.lib.get("org.robofab.fontlab.mark") if fontLabMarkColor is not None: r, g, b = colorsys.hsv_to_rgb(fontLabMarkColor/256., 1., 1.) glyph.mark = (r, g, b, 1) def portFLmaskData(glyph): #get pendata # filter out any single point contours (anchors) instructions = [] pointStack = [] lib = glyph.lib if lib.has_key(MASK_LIB_KEY): instructions = lib[MASK_LIB_KEY] pen = glyph.getPointPen() instructionsDrawPoints(instructions, pen) # clear the mask data from the glyph lib del lib[MASK_LIB_KEY] glyph.update() def instructionsDrawPoints(instructions, pointPen): """draw instructions created by InstructionPointPen""" # filter out single point contours (anchors) pointStack = [] for instruction in instructions: pointStack.append(instruction) meth = instruction["method"] if meth == "endPath": if len(pointStack) > 3: _drawPointStack(pointStack, pointPen) pointStack = [] def _drawPointStack(stack, pointPen): for instruction in stack: meth = instruction["method"] if meth == "beginPath": pointPen.beginPath() elif meth == "endPath": pointPen.endPath() elif meth == "addPoint": pt = instruction["pt"] smooth = instruction.get("smooth") segmentType = instruction.get("segmentType") name = instruction.get("name") pointPen.addPoint(pt, segmentType, smooth, name) elif meth == "addComponent": baseGlyphName = instruction["baseGlyphName"] transformation = instruction["transformation"] pointPen.addComponent(baseGlyphName, transformation) else: raise NotImplementedError, meth for glyph in f: #port the colour marks portFLmark(glyph) #create/get the layer for the mask data glyph.getLayer("FontLab Mask") #flip it so we draw on a clean layer glyph.flipLayers("FontLab Mask", "foreground") portFLmaskData(glyph) #flip back we’re done glyph.flipLayers("FontLab Mask", "foreground") print "Done"
Hope that helps.
October 6, 2012 at 03:28 in reply to: Glyph mask and mark data not imported from FLS+UFOCentral-generated UFOs #4645Because com.typemytype.robofont.layerData & org.robofab.fontlab.maskData are not in the same format, replacing these will not make the layers appear in RoboFont as mentioned (As I understood it) above. From that I conclude that either UFOcentral or RoboFont have been updated in how they write layerdata?
Updated code below will port the colour:
import colorsys f = CurrentFont() for glyph in f: fontLabMarkColor = glyph.lib.get("org.robofab.fontlab.mark") if fontLabMarkColor is None: continue r, g, b = colorsys.hsv_to_rgb(fontLabMarkColor/256., 1., 1.) glyph.mark = (r, g, b, 1)
October 5, 2012 at 14:30 in reply to: Glyph mask and mark data not imported from FLS+UFOCentral-generated UFOs #4643Does this still work? I have the same problem; org.robofab.fontlab.maskData exist in the UFO, but I can’t get it visible in RoboFont
The object-browser is great! Thanks.
Cool!
Where can I see the RoboFont transform function/glyph class?
I would like to check out if it has any other properties I am unaware off. Is there some documentation I am missing? The fontobjects source is bytecode:
robofabWrapper.pyc
Thanks,
I have still not managed to transform the font successfully.
Do I oversee something again? It looks like a bug to me:========================
f = CurrentFont()
for g in f:
if len(g.contours) > 0:
for c in g.contours:
c.scale((0.5, 0.5))
========================
Traceback:
File “2000UPM.py”, line 13, in
File “lib/fontObjects/robofabWrapper.pyc”, line 1432, in scale
File “/Applications/RoboFont.app/Contents/Resources/lib/python2.7/fontTools/misc/transform.py”, line 148, in scale
File “/Applications/RoboFont.app/Contents/Resources/lib/python2.7/fontTools/misc/transform.py”, line 199, in transform
TypeError: can only concatenate tuple (not “int”) to tuple
========================I can make it work via metric transformations. But it’s not as elegant :)
Haha, it drove me insane. Thanks for your enlightenment.
I think this has been fixed in the update now, works here :)
You rock!
A visual explains this probably better then my clunky attempt :) http://yfrog.com/j2axmkp ()
-
AuthorPosts