omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. ExParrot

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 9
    • Best 1
    • Controversial 0
    • Groups 0

    ExParrot

    @ExParrot

    1
    Reputation
    910
    Profile views
    9
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    ExParrot Unfollow Follow

    Best posts made by ExParrot

    • RE: Wish list for next release

      PLEASE bring back the Export Canvas to Photos button (from the console); can't even find a function to copy canvas to clipboard so I can use a startup script with code like photos.save_image(clipboard.get_image()).
      Argh. Now I regret updating.(Only me?)

      posted in Pythonista
      ExParrot
      ExParrot

    Latest posts made by ExParrot

    • RE: Wish list for next release

      PLEASE bring back the Export Canvas to Photos button (from the console); can't even find a function to copy canvas to clipboard so I can use a startup script with code like photos.save_image(clipboard.get_image()).
      Argh. Now I regret updating.(Only me?)

      posted in Pythonista
      ExParrot
      ExParrot
    • RE: Export Canvas button?

      canvas.draw_clipboard(0,0,scrSize[0],scrSize[1]) lets you draw on a copied image. What's its inverse?

      posted in Pythonista
      ExParrot
      ExParrot
    • RE: Export Canvas button?

      Are you sure you had an image on the clipboard when you called clipboard.get_image()? (And how did you evaluate the return value?) Even if it works as advertised, we'd need a function to copy the current canvas to clipboard. (Why can't I even find that?) This is why I dread updates of my favorite apps.

      posted in Pythonista
      ExParrot
      ExParrot
    • RE: Theme affecting Canvas

      Note to self (and others so afflicted)—
      Starting with this seemed to fix it:
      set_fill_color(1.0,1.0,1.0)
      fill_rect(0,0,scrSize[0],scrSize[1])

      where i've done this at global scope:
      scrSize=(1136,640) # iPhone 5
      set_size(*scrSize) # min 16, max 2048

      (my canvas is meant for landscape viewing)

      posted in Pythonista
      ExParrot
      ExParrot
    • RE: Help with screen sizes

      scrSize=(1136,640) # iPhone 5 (dots)

      posted in Pythonista
      ExParrot
      ExParrot
    • RE: Export Canvas button?

      That snippet assumes the desired image is on (part of) the clipboard. I'll have to tweak it to use the whole canvas...

      posted in Pythonista
      ExParrot
      ExParrot
    • RE: Export Canvas button?

      @brumm :
      Thanks! Now I have a good use for the new auto load feature. I'll make that a script called ExPortit(). 🤓

      posted in Pythonista
      ExParrot
      ExParrot
    • Theme affecting Canvas

      The background color from my Theme (UI color scheme), for which I prefer black, is inherited by canvas, which had defaulted to white. So now I have to do everything in inverted video (by triple/tapping my iPhone's home button)! Is this a bug? Must drawing start by explicitly filling the canvas with white?

      posted in Pythonista
      ExParrot
      ExParrot
    • Export Canvas button?

      My scripts create graphs on canvas.
      The canvas view screen no longer has the familiar export button! How do you export the full canvas (without UI controls obscuring the edges) to camera roll now?

      posted in Pythonista
      ExParrot
      ExParrot