lsolesen\pel\PelTiff::__toString PHP Method

__toString() public method

Return a string representation of this object.
public __toString ( ) : string
return string a string describing this object. This is mostly useful for debugging.
    public function __toString()
    {
        $str = Pel::fmt("Dumping TIFF data...\n");
        if ($this->ifd !== null) {
            $str .= $this->ifd->__toString();
        }
        return $str;
    }