mirror of https://github.com/helloxz/imgurl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.0 KiB
69 lines
2.0 KiB
<?php |
|
|
|
namespace Tinify; |
|
|
|
class Source { |
|
private $url, $commands; |
|
|
|
public static function fromFile($path) { |
|
return self::fromBuffer(file_get_contents($path)); |
|
} |
|
|
|
public static function fromBuffer($string) { |
|
$response = Tinify::getClient()->request("post", "/shrink", $string); |
|
return new self($response->headers["location"]); |
|
} |
|
|
|
public static function fromUrl($url) { |
|
$body = array("source" => array("url" => $url)); |
|
$response = Tinify::getClient()->request("post", "/shrink", $body); |
|
return new self($response->headers["location"]); |
|
} |
|
|
|
public function __construct($url, $commands = array()) { |
|
$this->url = $url; |
|
$this->commands = $commands; |
|
} |
|
|
|
public function preserve() { |
|
$options = $this->flatten(func_get_args()); |
|
$commands = array_merge($this->commands, array("preserve" => $options)); |
|
return new self($this->url, $commands); |
|
} |
|
|
|
public function resize($options) { |
|
$commands = array_merge($this->commands, array("resize" => $options)); |
|
return new self($this->url, $commands); |
|
} |
|
|
|
public function store($options) { |
|
$response = Tinify::getClient()->request("post", $this->url, |
|
array_merge($this->commands, array("store" => $options))); |
|
return new Result($response->headers, $response->body); |
|
} |
|
|
|
public function result() { |
|
$response = Tinify::getClient()->request("get", $this->url, $this->commands); |
|
return new Result($response->headers, $response->body); |
|
} |
|
|
|
public function toFile($path) { |
|
return $this->result()->toFile($path); |
|
} |
|
|
|
public function toBuffer() { |
|
return $this->result()->toBuffer(); |
|
} |
|
|
|
private static function flatten($options) { |
|
$flattened = array(); |
|
foreach ($options as $option) { |
|
if (is_array($option)) { |
|
$flattened = array_merge($flattened, $option); |
|
} else { |
|
array_push($flattened, $option); |
|
} |
|
} |
|
return $flattened; |
|
} |
|
}
|
|
|