<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.imagick.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'imagick.pingimagefile.php',
    1 => 'Imagick::pingImageFile',
    2 => 'Get basic image attributes in a lightweight manner',
  ),
  'up' => 
  array (
    0 => 'class.imagick.php',
    1 => 'Imagick',
  ),
  'prev' => 
  array (
    0 => 'imagick.pingimageblob.php',
    1 => 'Imagick::pingImageBlob',
  ),
  'next' => 
  array (
    0 => 'imagick.polaroidimage.php',
    1 => 'Imagick::polaroidImage',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/imagick/imagick/pingimagefile.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="imagick.pingimagefile" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">Imagick::pingImageFile</h1>
  <p class="verinfo">(PECL imagick 2, PECL imagick 3)</p><p class="refpurpose"><span class="refname">Imagick::pingImageFile</span> &mdash; <span class="dc-title">Get basic image attributes in a lightweight manner</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-imagick.pingimagefile-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>Imagick::pingImageFile</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$filehandle</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$fileName</code><span class="initializer"> = ?</span></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>


  <p class="para rdfs-comment">
   This method can be used to query image width, height, size, and
   format without reading the whole image to memory. 
   This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-imagick.pingimagefile-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">filehandle</code></dt>
     <dd>
      <p class="para">
      An open filehandle to the image.
      </p>
     </dd>
    
    
     <dt><code class="parameter">fileName</code></dt>
     <dd>
      <p class="para">
      Optional filename for this image.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-imagick.pingimagefile-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> on success.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-imagick.pingimagefile-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Example #1 Using <span class="function"><strong>Imagick::pingImageFile()</strong></span></strong></p>
    <div class="example-contents"><p>
      Opening a remote location
    </p></div>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #FF8000">/* fopen a remote location */<br /></span><span style="color: #0000BB">$fp </span><span style="color: #007700">= </span><span style="color: #0000BB">fopen</span><span style="color: #007700">(</span><span style="color: #DD0000">"http://example.com/test.jpg"</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">/* create new imagick object */<br /></span><span style="color: #0000BB">$im </span><span style="color: #007700">= new </span><span style="color: #0000BB">Imagick</span><span style="color: #007700">();<br /><br /></span><span style="color: #FF8000">/* pass the handle to imagick */<br /></span><span style="color: #0000BB">$im</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">pingImageFile</span><span style="color: #007700">(</span><span style="color: #0000BB">$fp</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-imagick.pingimagefile-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="imagick.pingimage.php" class="function" rel="rdfs-seeAlso">Imagick::pingImage()</a> - Fetch basic attributes about the image</span></li>
    <li><span class="function"><a href="imagick.pingimageblob.php" class="function" rel="rdfs-seeAlso">Imagick::pingImageBlob()</a> - Quickly fetch attributes</span></li>
    <li><span class="function"><a href="imagick.readimage.php" class="function" rel="rdfs-seeAlso">Imagick::readImage()</a> - Reads image from filename</span></li>
    <li><span class="function"><a href="imagick.readimageblob.php" class="function" rel="rdfs-seeAlso">Imagick::readImageBlob()</a> - Reads image from a binary string</span></li>
    <li><span class="function"><a href="imagick.readimagefile.php" class="function" rel="rdfs-seeAlso">Imagick::readImageFile()</a> - Reads image from open filehandle</span></li>
   </ul>
  </p>
 </div>


</div><?php manual_footer($setup); ?>