PhpOffice\PhpPresentation\Reader\PowerPoint97::readRecordOfficeArtFSPGR PHP Метод

readRecordOfficeArtFSPGR() приватный Метод

The OfficeArtFSPGR record specifies the coordinate system of the group shape that the anchors of the child shape are expressed in.
private readRecordOfficeArtFSPGR ( string $stream, integer $pos )
$stream string
$pos integer
    private function readRecordOfficeArtFSPGR($stream, $pos)
    {
        $arrayReturn = array('length' => 0);
        $data = $this->loadRecordHeader($stream, $pos);
        if ($data['recVer'] == 0x1 && $data['recInstance'] == 0x0 && $data['recType'] == 0xf009 && $data['recLen'] == 0x10) {
            $arrayReturn['length'] += 8;
            //$arrShapeGroup['xLeft'] = self::getInt4d($this->streamPowerpointDocument, $pos);
            $arrayReturn['length'] += 4;
            //$arrShapeGroup['yTop'] = self::getInt4d($this->streamPowerpointDocument, $pos);
            $arrayReturn['length'] += 4;
            //$arrShapeGroup['xRight'] = self::getInt4d($this->streamPowerpointDocument, $pos);
            $arrayReturn['length'] += 4;
            //$arrShapeGroup['yBottom'] = self::getInt4d($this->streamPowerpointDocument, $pos);
            $arrayReturn['length'] += 4;
        }
        return $arrayReturn;
    }
PowerPoint97