thephpleague / color-extractor

Extract colors from an image like a human would do.
thephpleague.com
MIT License
1.3k stars 159 forks source link

General load method #24

Closed a-x- closed 9 years ago

a-x- commented 9 years ago

// Excuse my beginner's English Hi! What about general load method?

Pseudo code:

load (imagePath)
    switch ext
    case jpg: loadJpeg($imagePath)
    case png: loadPng($imagePath)
    case gif: loadGif($imagePath)
MatTheCat commented 9 years ago

Hi! This feature is implemented on the 0.2.0-dev branch. You'll be able to build a palette passing a gd resource.

a-x- commented 9 years ago

Ok, thank you.