관리-도구
편집 파일: StreamCommand.php
<?php namespace Intervention\Image\Commands; class StreamCommand extends AbstractCommand { /** * Builds PSR7 stream based on image data. Method uses Guzzle PSR7 * implementation as easiest choice. * * @param \Intervention\Image\Image $image * @return boolean */ public function execute($image) { $format = $this->argument(0)->value(); $quality = $this->argument(1)->between(0, 100)->value(); $this->setOutput(\GuzzleHttp\Psr7\stream_for( $image->encode($format, $quality)->getEncoded() )); return true; } }