Bruno

Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts

  • Bruno
    Participant

    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 lay­er­data 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.


    Bruno
    Participant

    Because 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)
    

    Bruno
    Participant

    Does 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

    in reply to: Trouble scaling components in Glyphs #2219

    Bruno
    Participant

    The object-browser is great! Thanks.

    in reply to: Trouble scaling components in Glyphs #2203

    Bruno
    Participant

    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,

    in reply to: Trouble scaling components in Glyphs #2177

    Bruno
    Participant

    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 :)

    in reply to: Trouble scaling components in Glyphs #2166

    Bruno
    Participant

    Haha, it drove me insane. Thanks for your enlightenment.

    in reply to: anchor.move((x,y)) as attribute and not method #2156

    Bruno
    Participant

    I think this has been fixed in the update now, works here :)

    in reply to: Add Extreme Points -> Contour direction #1114

    Bruno
    Participant

    You rock!

    in reply to: Add Extreme Points -> Contour direction #1112

    Bruno
    Participant

    A visual explains this probably better then my clunky attempt :) http://yfrog.com/j2axmkp ()

Viewing 10 posts - 1 through 10 (of 10 total)