PATH:
home
/
letacommog
/
slution01
/
wp-content
/
plugins
/
tiny-compress-images
/
src
/
vendor
/
tinify
/
Tinify
<?php namespace Tinify; class ResultMeta { protected $meta; public function __construct($meta) { $this->meta = $meta; } public function width() { return intval($this->meta["image-width"]); } public function height() { return intval($this->meta["image-height"]); } public function location() { return isset($this->meta["location"]) ? $this->meta["location"] : null; } public function extension() { if (isset($this->meta["content-type"])) { $parts = explode("/", $this->meta["content-type"]); return end($parts); } return null; } }
[+]
..
[-] Client.php
[edit]
[-] Exception.php
[edit]
[-] Result.php
[edit]
[-] Source.php
[edit]
[-] ResultMeta.php
[edit]