Forum Archive

Help with ImageView

Sparky

I am new to pythonista. I am trying to draw an image on ui. Can someone take a look at this program and help me.
Thanks

coding: utf-8

import ui
from scene import *
import Image,ImageDraw,sys
import ui

v=ui.load_view("imageviewtest")

image1= Image.new("RGBA", (512, 512), "#000")

draw = ImageDraw.Draw(image1, image1.mode)

draw.rectangle([(1,1),(100,100)],outline=10,fill=10)

del draw

image1.show()

Name=load_pil_image(image1)

im=ui.Image()

v["image"].load_from_url(Name)

if ui.get_screen_size()[1] >= 768:

    v.present('popover')

else:
v.present(orientations=['portrait'])

    pass
JonB

see https://omz-forums.appspot.com/pythonista/post/5520750224080896

use the pil2ui function, and set the image view image attribute to the output of that function

JonB

btw, formatting code for the forums requires

[ a blank line ]
```  (three backticks... long tap the single quote on iOS)
[your code]
```
Phuket2

Testing...I thought you need the word python after the 3 ticks, will test below.

# no python after the 3 ticks
import ui

If __name__ == '__main__':
    pass:
#with python after the 3 ticks
import ui

If __name__ == '__main__':
    pass:

Phuket2

Ok, both work, but python syntax coloring when python is used

ccc

:-) An amazing number of languages are supported by GitHub flavored markdown.

Phuket2

Lol, watching, f1, forum, programming and drinking all the same time :)

polymerchm

Drinking coffee in the "States" and watching forum. Happy Fathers day to those who are, and to those who have one.