[EMAIL PROTECTED] wrote:
> I take it there is probably no non-PIL-based solution either?
wxPython can take a PIL image, and can put images on the Clipboard (I'm
pretty sure -- I've never done it) . Maybe tk can too.
-Chris
--
Christopher Barker, Ph.D.
Oceanographer
Emergency Response Divi
[EMAIL PROTECTED] wrote:
Hello everyone and happy new year,
Also to you :)
i am trying to install imaging 1.1.5 on my ubuntu 6.06 machine, and i
get this message:
A couple of questions:
- why the 1.1.5? There is the 1.1.6
- why by sources? ubuntu hasn't the pil package from its repository?
Hello everyone and happy new year,
i am trying to install imaging 1.1.5 on my ubuntu 6.06 machine, and i get
this message:
r:/usr/lib/python2.4/site-packages/Imaging-1.1.5$ python setup.py install
running install
running build
running build_py
running build_ext
building '_imaging' extension
gcc -p
OK, thanks for the info. Unfortunately, programming such a thing is far
beyond my skills, so I won't be able to contribute much.
I take it there is probably no non-PIL-based solution either?
Thanks again -
Dave Giesen
___
Image-SIG maillist - Image
Colin Barnette wrote:
> I'm having some really odd trouble with PIL. As shown on in the Handbook I
> have:
what handbook is this?
> import Image
>
> print Image.VERSION
> img = Image.load("sushi.jpg")
if you want to open an image file, use "open":
img = Image.open("sushi.jpg")
_
I'm having some really odd trouble with PIL. As shown on in the Handbook I have:
import Image
print Image.VERSION
img = Image.load("sushi.jpg")
And the output I get is this:
1.1.6
Traceback (most recent call last):
File "pichtml.py", line 5, in ?
img = Image.load("sushi.jpg")
At