update docs
This commit is contained in:
parent
d1be9dd1ce
commit
ca0bc5f20f
21
doc/Cite.xml
Normal file
21
doc/Cite.xml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
||||||
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
|
||||||
|
<refentry id="Cite.md">
|
||||||
|
|
||||||
|
|
||||||
|
<para>
|
||||||
|
<refmeta> <refentrytitle>Cite</refentrytitle> <manvolnum>3</manvolnum> <refmiscinfo>libvips</refmiscinfo> </refmeta>
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
<refnamediv> <refname>Cite</refname> <refpurpose>References to cite for libvips</refpurpose> </refnamediv>
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
Martinez, K. and Cupitt, J. (2005) <ulink url="http://eprints.ecs.soton.ac.uk/12371">VIPS – a highly tuned image processing software architecture</ulink>. In Proceedings of IEEE International Conference on Image Processing 2, pp. 574-577, Genova.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
Cupitt, J. and Martinez, K. (1996) <ulink url="http://eprints.soton.ac.uk/252227/1/vipsspie96a.pdf">VIPS: An image processing system for large images</ulink>, Proc. SPIE, vol. 2663, pp. 19–28.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
|
||||||
|
</refentry>
|
@ -16,8 +16,8 @@
|
|||||||
<para>
|
<para>
|
||||||
The thumbnailing functionality is implemented by <literal>vips_thumbnail()</literal> and <literal>vips_thumbnail_buffer()</literal> (which thumbnails an image held as a string), see the docs for details. You can use these functions from any language with a libvips binding. For example, from PHP you could write:
|
The thumbnailing functionality is implemented by <literal>vips_thumbnail()</literal> and <literal>vips_thumbnail_buffer()</literal> (which thumbnails an image held as a string), see the docs for details. You can use these functions from any language with a libvips binding. For example, from PHP you could write:
|
||||||
</para>
|
</para>
|
||||||
<programlisting language="php">
|
<programlisting>
|
||||||
$filename = ...;
|
$filename = "image.jpg";
|
||||||
$image = Vips\Image::thumbnail($filename, 200, ["height" => 200]);
|
$image = Vips\Image::thumbnail($filename, 200, ["height" => 200]);
|
||||||
$image->writeToFile("my-thumbnail.jpg");
|
$image->writeToFile("my-thumbnail.jpg");
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
Loading…
Reference in New Issue
Block a user