1
0
mirror of https://github.com/php/doc-ru.git synced 2026-04-27 09:18:07 +02:00
Files
archived-doc-ru/reference/image/functions/getimagesizefromstring.xml
T
Sergey Panteleev 6d43fd64d7 Исправление форматирования
[skip-spellcheck]
[skip-lint]
2022-12-27 03:42:36 +03:00

110 lines
3.2 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 0c9c2dd669fe9395eaa73d487fbd160f9057429a Maintainer: tmn Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="function.getimagesizefromstring" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>getimagesizefromstring</refname>
<refpurpose>
Получение размера изображения из строки данных
</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type class="union"><type>array</type><type>false</type></type><methodname>getimagesizefromstring</methodname>
<methodparam><type>string</type><parameter>string</parameter></methodparam>
<methodparam choice="opt"><type>array</type><parameter role="reference">image_info</parameter><initializer>&null;</initializer></methodparam>
</methodsynopsis>
<para>
Функция работает идентично функции <function>getimagesize</function> с той
разницей, что <function>getimagesizefromstring</function> принимает данные
изображения в виде строки в качестве первого аргумента вместо имени файла.
</para>
<para>
Для уточнения, как функция работает, обращайтесь к документации к функции
<function>getimagesize</function>.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<variablelist>
<varlistentry>
<term><parameter>string</parameter></term>
<listitem>
<para>
Данные изображения в виде строки.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>image_info</parameter></term>
<listitem>
<para>
Смотрите <function>getimagesize</function>.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Смотрите <function>getimagesize</function>.
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>Пример использования <function>getimagesizefromstring</function></title>
<programlisting role="php">
<![CDATA[
<?php
$img = '/path/to/test.png';
// Открыть как файл
$size_info1 = getimagesize($img);
// Открыть как строку
$data = file_get_contents($img);
$size_info2 = getimagesizefromstring($data);
?>
]]>
</programlisting>
</example>
</para>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<simplelist>
<member><function>getimagesize</function></member>
</simplelist>
</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:"~/.phpdoc/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
-->