Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Users
    • Groups
    • Solved
    • Unsolved
    • Search
    1. Home
    2. ThunderNixon
    3. Topics
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by ThunderNixon

    • ThunderNixon

      UNSOLVED Efficient way to convert all text to outlines in a multi-page doc?
      General Discussion • bezierpath text • • ThunderNixon  

      8
      0
      Votes
      8
      Posts
      429
      Views

      frederik

      mmm, generate an instance with fontTools, use that font with a path and generate the pdf? wondering if the Bad font object... error is also reported with old-style-static-fonts?
    • ThunderNixon

      SOLVED Is there a way to build "bleed" into a file, for printing?
      General Discussion • layout • • ThunderNixon  

      4
      0
      Votes
      4
      Posts
      324
      Views

      andyclymer

      Until there's a new feature for this, I think you could replace your newPage() calls to a custom newPageWithBleed() that goes something like this, and wouldn't need to change any of your other drawing code — def newPageWithBleed(w, h, bleed): newPage(w + bleed * 2, h + bleed * 2) translate(bleed, bleed) W, H = 400, 400 bleed = 25 newPage(W, H) rect(0, 0, 20, 20) newPageWithBleed(W, H, bleed) rect(0, 0, 20, 20)
    • ThunderNixon

      SOLVED How do I size an image with the ImageObject (or without)?
      General Discussion • image transformations • • ThunderNixon  

      5
      0
      Votes
      5
      Posts
      381
      Views

      ThunderNixon

      Ahh this is a very clear-headed approach. Thanks for showing me how it's done! This is very helpful.
    • ThunderNixon

      SOLVED Update font family in FormattedString
      General Discussion • text • • ThunderNixon  

      2
      0
      Votes
      2
      Posts
      303
      Views

      frederik

      Setting a font in a formatted string will only be used for text appended afterwards: txt.font(...) will not alter the font attribute for existing texts in the formatted string. For each page you will need to create a fresh formatted string.
    • ThunderNixon

      SOLVED Is it possible to typeset Arabic, including connected characters?
      General Discussion • • ThunderNixon  

      4
      0
      Votes
      4
      Posts
      1486
      Views

      justvanrossum

      @thundernixon In general, the rule is: if it works in TextEdit.app, we expect it to work in DrawBot. (Except vertical typesetting; that's on our todo list.)
    • ThunderNixon

      Text editor selection niceties (esp. "Add Next Occurence" of selection)
      Feature Requests • • ThunderNixon  

      4
      0
      Votes
      4
      Posts
      1829
      Views

      ThunderNixon

      @frederik and @justvanrossum thanks for the thoughtful replies and helpful tips! Command-E and Command-G will be very useful. And yeah, I found that early on that DrawBot does reload pretty nicely, so probably I just need to make better use of that.