thephpleague / color-extractor

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

cpu Usage 20-30% #61

Closed Mr-houzi closed 2 years ago

Mr-houzi commented 4 years ago

cpu Usage 20-30%,How to solve?

colinodell commented 2 years ago

Extracting colors is a resource-intensive process as we must check each pixel and then perform a bunch of complex math to get the results. Unfortunately there's not much we can do about this, and 20-30% usage during execution isn't actually too bad.

If you (or anyone else) have ideas for performance improvements please feel free to submit a PR!