You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.rst
+27-26
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,11 @@ cImage - A simple image processing library for Python
5
5
Installation
6
6
============
7
7
8
-
copy cImage.py to your site-packages directory.
8
+
9
+
If using Thonny, go to Tools -> Manage Packages, then enter ``cs20-image``. This should install both the image module, and the Pillow module (so you can use any type of image you'd like).
10
+
11
+
12
+
If you are not using Thonny, copy image.py to your site-packages directory, or just keep it in the same folder as the Python scripts that import it.
9
13
10
14
11
15
Usage
@@ -16,7 +20,7 @@ This image library is not going to give you fancy high performance operations on
16
20
Image Types Supported
17
21
---------------------
18
22
19
-
If you have PIL installed on your system:
23
+
If you have PIL installed on your system (if you are using Thonny, this was installed along with the image module):
20
24
21
25
* jpeg
22
26
* gif
@@ -26,37 +30,34 @@ If you have PIL installed on your system:
26
30
27
31
If you do not have PIL installed then you are stuck with GIF images only.
28
32
29
-
If you are using Python 2.6/2.7 I recommend you install Pillow its a simple fork
30
-
of PIL that you can install with easy_install or pip.
31
-
32
-
If you are using Python 3 You can get a working version of PIL
33
-
Here: https://pypi.python.org/pypi/Pillow/2.0.0
34
-
35
-
Note that if you scroll down to the bottom you will find binary installations for Windows. Linux and Mac users can follow the instructions on the page.
0 commit comments