Database design to store image color pattern in MySQL for searching Image by color

前端 未结 3 851
时光说笑
时光说笑 2021-01-18 19:58

I am building a image galley using PHP and MySQL where I want to implement Image search by it\'s color. By following Imagick::getImageHistogram i got the mo

3条回答
  •  醉话见心
    2021-01-18 20:21

    Why don't you create a database table with the following fields:

    Images Table

    id
    name
    red
    green
    blue
    alpha
    

提交回复
热议问题