<?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.pingimageblob.php',
    1 => 'Imagick::pingImageBlob',
    2 => 'Quickly fetch attributes',
  ),
  'up' => 
  array (
    0 => 'class.imagick.php',
    1 => 'Imagick',
  ),
  'prev' => 
  array (
    0 => 'imagick.pingimage.php',
    1 => 'Imagick::pingImage',
  ),
  'next' => 
  array (
    0 => 'imagick.pingimagefile.php',
    1 => 'Imagick::pingImageFile',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/imagick/imagick/pingimageblob.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="imagick.pingimageblob" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">Imagick::pingImageBlob</h1>
  <p class="verinfo">(PECL imagick 2, PECL imagick 3)</p><p class="refpurpose"><span class="refname">Imagick::pingImageBlob</span> &mdash; <span class="dc-title">Quickly fetch attributes</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-imagick.pingimageblob-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>Imagick::pingImageBlob</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$image</code></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.pingimageblob-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">image</code></dt>
     <dd>
      <p class="para">
      A string containing the image.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-imagick.pingimageblob-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.pingimageblob-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::pingImageBlob()</strong></span></strong></p>
    <div class="example-contents"><p>
      Pinging an image from a string
    </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">/* read image contents */<br /></span><span style="color: #0000BB">$image </span><span style="color: #007700">= </span><span style="color: #0000BB">file_get_contents</span><span style="color: #007700">(</span><span style="color: #DD0000">"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 string to the imagick object */<br /></span><span style="color: #0000BB">$im</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">pingImageBlob</span><span style="color: #007700">(</span><span style="color: #0000BB">$image</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">/* output image width and height */<br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">$im</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getImageWidth</span><span style="color: #007700">() . </span><span style="color: #DD0000">'x' </span><span style="color: #007700">. </span><span style="color: #0000BB">$im</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getImageHeight</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.pingimageblob-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.pingimagefile.php" class="function" rel="rdfs-seeAlso">Imagick::pingImageFile()</a> - Get basic image attributes in a lightweight manner</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); ?>