8000 a bit more · libvips/pyvips@19b9d0a · GitHub
[go: up one dir, main page]

Skip to content

Commit 19b9d0a

Browse files
committed
a bit more
1 parent bc32026 commit 19b9d0a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

pyvips/__init__.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,18 +80,19 @@
8080
How it works
8181
============
8282
83-
The binding uses [ruby-ffi](https://github.com/ffi/ffi) to open the libvips
83+
The binding uses https://pypi.python.org/pypi/cffi to open the libvips
8484
shared library. When you call a method on the image class, it uses libvips
85-
introspection system (based on GObject) to search the
85+
introspection system (based on ``GObject``) to search the
8686
library for an operation of that name, transforms the arguments to a form
8787
libvips can digest, and runs the operation.
8888
89-
This means ruby-vips always presents the API implemented by the libvips shared
89+
This means pyvips always presents the API implemented by the libvips shared
9090
library. It should update itself as new features are added.
9191
92-
Automatic wrapping
92+
Automatic wrapping
93+
==================
9394
94-
`ruby-vips` adds a {Image.method_missing} handler to {Image} and uses
95+
``pyvips`` adds a {Image.method_missing} handler to {Image} and uses
9596
it to look up vips operations. For example, the libvips operation `add`, which
9697
appears in C as `vips_add()`, appears in Ruby as {Image#add}.
9798

0 commit comments

Comments
 (0)
0