PHP 클래스 Exif

파일 보기 프로젝트 열기: getkirby/toolkit 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$aperture the aperture value
$camera the camera object with model and make
$data the raw exif array
$exposure the exposure value
$focalLength focal length
$isColor color or black/white
$iso iso value
$location the location object
$media the parent media object
$timestamp the timestamp

공개 메소드들

메소드 설명
__construct ( Media $media ) Constructor
__debuginfo ( ) : array Improved var_dump() output
aperture ( ) : string Returns the aperture
camera ( ) : object Returns the Camera object
data ( ) : array Returns the raw data array from the parser
exposure ( ) : string Returns the exposure
focalLength ( ) : string Returns the focal length
isBW ( ) : boolean Checks if this is a bw picture
isColor ( ) : boolean Checks if this is a color picture
iso ( ) : integer Returns the iso value
location ( ) : object Returns the location object
timestamp ( ) : string Returns the timestamp
toArray ( ) : array Converts the object into a nicely readable array

보호된 메소드들

메소드 설명
parse ( ) Pareses and stores all relevant exif data

메소드 상세

__construct() 공개 메소드

Constructor
public __construct ( Media $media )
$media Media

__debuginfo() 공개 메소드

Improved var_dump() output
public __debuginfo ( ) : array
리턴 array

aperture() 공개 메소드

Returns the aperture
public aperture ( ) : string
리턴 string

camera() 공개 메소드

Returns the Camera object
public camera ( ) : object
리턴 object KirbyExifCamera

data() 공개 메소드

Returns the raw data array from the parser
public data ( ) : array
리턴 array

exposure() 공개 메소드

Returns the exposure
public exposure ( ) : string
리턴 string

focalLength() 공개 메소드

Returns the focal length
public focalLength ( ) : string
리턴 string

isBW() 공개 메소드

Checks if this is a bw picture
public isBW ( ) : boolean
리턴 boolean

isColor() 공개 메소드

Checks if this is a color picture
public isColor ( ) : boolean
리턴 boolean

iso() 공개 메소드

Returns the iso value
public iso ( ) : integer
리턴 integer

location() 공개 메소드

Returns the location object
public location ( ) : object
리턴 object ExifLocation

parse() 보호된 메소드

Pareses and stores all relevant exif data
protected parse ( )

timestamp() 공개 메소드

Returns the timestamp
public timestamp ( ) : string
리턴 string

toArray() 공개 메소드

Converts the object into a nicely readable array
public toArray ( ) : array
리턴 array

프로퍼티 상세

$aperture 보호되어 있는 프로퍼티

the aperture value
protected $aperture

$camera 보호되어 있는 프로퍼티

the camera object with model and make
protected $camera

$data 보호되어 있는 프로퍼티

the raw exif array
protected $data

$exposure 보호되어 있는 프로퍼티

the exposure value
protected $exposure

$focalLength 보호되어 있는 프로퍼티

focal length
protected $focalLength

$isColor 보호되어 있는 프로퍼티

color or black/white
protected $isColor

$iso 보호되어 있는 프로퍼티

iso value
protected $iso

$location 보호되어 있는 프로퍼티

the location object
protected $location

$media 보호되어 있는 프로퍼티

the parent media object
protected $media

$timestamp 보호되어 있는 프로퍼티

the timestamp
protected $timestamp