getString()); rewind($resource); return new Stream($resource); } public function getString(): string { if ($this->string === null) { $this->string = $this->pdf->output(); } return $this->string ?? ''; } public function getLength(): int { return strlen($this->getString()); } }