Grafika\Gd\Helper\GifByteStream::isEnd PHP 메소드

isEnd() 공개 메소드

public isEnd ( ) : boolean
리턴 boolean
    public function isEnd()
    {
        if ($this->position > $this->length() - 1) {
            return true;
        }
        return false;
    }