mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
changes for getimagesize and new function
#Q: how do i add the new function-file? git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@86734 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
58d1ff5ba6
commit
bf592ba144
2 changed files with 117 additions and 15 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- splitted from ./en/functions/image.xml, last change in rev 1.36 -->
|
||||
<refentry id="function.getimagesize">
|
||||
<refnamediv>
|
||||
|
@ -16,22 +16,24 @@
|
|||
<para>
|
||||
The <function>getimagesize</function> function will determine the
|
||||
size of any <acronym>GIF</acronym>, <acronym>JPG</acronym>,
|
||||
<acronym>PNG</acronym>, <acronym>SWF</acronym>,
|
||||
<acronym>PSD</acronym>, <acronym>TIFF</acronym>,
|
||||
or <acronym>BMP</acronym> image file and
|
||||
return the dimensions along with the file type and a height/width
|
||||
text string to be used inside a normal <acronym>HTML</acronym>
|
||||
<literal>IMG</literal> tag.
|
||||
<acronym>PNG</acronym>, <acronym>SWF</acronym>,
|
||||
<acronym>SWC</acronym>, <acronym>PSD</acronym>,
|
||||
<acronym>TIFF</acronym>, <acronym>BMP</acronym> or
|
||||
<acronym>IFF</acronym>
|
||||
image file and return the dimensions along with the file type and
|
||||
a height/width text string to be used inside a normal
|
||||
<acronym>HTML</acronym> <literal>IMG</literal> tag.
|
||||
</para>
|
||||
<para>
|
||||
Returns an array with 4 elements. Index 0 contains the width of
|
||||
the image in pixels. Index 1 contains the height. Index 2 a
|
||||
flag indicating the type of the image. 1 = GIF, 2 = JPG, 3 =
|
||||
PNG, 4 = SWF, 5 = PSD, 6 = BMP, 7 = TIFF(intel byte order),
|
||||
8 = TIFF(motorola byte order, 9 = JPC, 10 = JP2, 11 = JPX.
|
||||
Index 3 is a text string with the correct
|
||||
height="yyy" width="xxx" string that can be used directly in an IMG
|
||||
tag.
|
||||
8 = TIFF(motorola byte order, 9 = JPC, 10 = JP2, 11 = JPX, 12 =
|
||||
JB2, 13 = SWC, 14 = IFF. These values correspond to the IMAGETYPE
|
||||
constants taht were added in PHP 4.3. Index 3 is a text string with
|
||||
the correct height="yyy" width="xxx" string that can be used
|
||||
directly in an IMG tag.
|
||||
<example>
|
||||
<title>getimagesize (file)</title>
|
||||
<programlisting role="php">
|
||||
|
@ -55,11 +57,46 @@ echo "<img src=\"img/flag.jpg\" {$size[3]}>";
|
|||
</example>
|
||||
</para>
|
||||
<para>
|
||||
With <acronym>JPG</acronym> images, two extras index are returned:
|
||||
<literal>channel</literal> and <literal>bits</literal>.
|
||||
<literal>channel</literal> will be 3 for RGB pictures, and 4 for CMYK
|
||||
With <acronym>JPG</acronym> images, two extras index are returned :
|
||||
<literal>channels</literal> and <literal>bits</literal>.
|
||||
<literal>channels</literal> will be 3 for RGB pictures, and 4 for CMYK
|
||||
pictures. <literal>bits</literal> is the number of bits for each color.
|
||||
</para>
|
||||
<para>
|
||||
Since PHP 4.3 <literal>bits</literal> and <literal>channels</literal>
|
||||
are present for other image types, too. But these values or there
|
||||
presence can be a bit confusing. As example <acronym>GIF<acronym>
|
||||
allways uses 3 channels per pixel but the number of bits per pixel
|
||||
cannot be computed for an animated <acronym>GIF<acronym> with a global
|
||||
colortable.
|
||||
</para>
|
||||
<para>
|
||||
Some formats may contain no image or multiple images. In such cases
|
||||
GetImageSize might not be able to determine the size and returns zero
|
||||
for width and height.
|
||||
</para>
|
||||
<para>
|
||||
Since PHP 4.3 GetImageSize() does also return the additional
|
||||
<literal>mime</literal> that receives the mime-type ot the image.
|
||||
This information can be used to deliver images with correct http
|
||||
Content-type header if this is unknown:
|
||||
<example>
|
||||
<title>getimagesize and mime-type</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
$size = getimagesize ($filename);
|
||||
$fp=fopen($filename, "rb");
|
||||
if ($size && $fp) {
|
||||
header("Content-type: {$size['mime']}");
|
||||
fpassthru($fp);
|
||||
exit;
|
||||
} else // error
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
<para>
|
||||
If accessing the <parameter>filename</parameter> image is impossible,
|
||||
or if it isn't a valid picture, <function>getimagesize</function>
|
||||
|
@ -99,7 +136,8 @@ if (isset ($info["APP13"])) {
|
|||
This function does not require the GD image library.
|
||||
</simpara>
|
||||
<simpara>
|
||||
See also <function>exif_imagetype</function>, <function>exif_read_data</function>
|
||||
See also <function>image_type_to_mime_type</function>,
|
||||
<function>exif_imagetype</function>, <function>exif_read_data</function>
|
||||
and <function>exif_thumbnail</function>.
|
||||
</simpara>
|
||||
<simpara>
|
||||
|
|
64
reference/image/functions/image_type_to_mime_type.xml
Normal file
64
reference/image/functions/image_type_to_mime_type.xml
Normal file
|
@ -0,0 +1,64 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.1 $ -->
|
||||
<!-- splitted from ./en/functions/image.xml, last change in rev 1.36 -->
|
||||
<refentry id="function.image_type_to_mime_type">
|
||||
<refnamediv>
|
||||
<refname>image_type_to_mime_type</refname>
|
||||
<refpurpose>Get Mime-Type for image-type returned by getimagesize,
|
||||
exif_read_data, exif_thumbnail, exif_imagetype</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<methodsynopsis>
|
||||
<type>string </type><methodname>image_type_to_mime_type</methodname>
|
||||
<methodparam><type>int</type><parameter>imagetype</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
The <function>image_type_to_mime_type</function> function will determine
|
||||
the Mime-Type for an IMAGETYPE constant.
|
||||
<example>
|
||||
<title>image_type_to_mime_type (file)</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
header ("Content-type: ".image_type_to_mime_type (IMAGETYPE_PNG));
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
<para>
|
||||
<note>
|
||||
<simpara>
|
||||
This function does not require the GD image library.
|
||||
</simpara>
|
||||
<simpara>
|
||||
See also <function>getimagesize</function>,
|
||||
<function>exif_imagetype</function>, <function>exif_read_data</function>
|
||||
and <function>exif_thumbnail</function>.
|
||||
</simpara>
|
||||
</note>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"../../../../manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
Loading…
Reference in a new issue