Giter Site home page Giter Site logo

ImageColorAt out of bounds about phash HOT 5 CLOSED

4dr1en avatar 4dr1en commented on September 4, 2024
ImageColorAt out of bounds

from phash.

Comments (5)

xwiz avatar xwiz commented on September 4, 2024

This may be a problem with php mime configuration.

Take a look at this #3 (comment)

from phash.

4dr1en avatar 4dr1en commented on September 4, 2024

I don't know how to configure this but I think i found a problem in makeThumbnail.

this function make too small thumbail if the image is in portrait format.
I replaced

$newheight = $thumbheight;

$divisor = $height / $thumbheight;

$newwidth = floor( $width / $divisor );

by

if($width >= $height){

            $newheight = $thumbheight;

            $divisor = $height / $thumbheight;

            $newwidth = floor( $width / $divisor );

        }

        else{

            $newwidth = $thumbwidth;

            $divisor = $width / $thumbwidth;

            $newheight = floor( $height / $divisor );

        }

And now that work for me. 👍

from phash.

xwiz avatar xwiz commented on September 4, 2024

Interesting can you share a sample problematic image? The resizing should normally be able to resize/downscale to 8 x 8 unless the images are smaller than that..

from phash.

4dr1en avatar 4dr1en commented on September 4, 2024

I had this issue with all images with $height > $width. Even the images with just a 90° rotation.

from phash.

xwiz avatar xwiz commented on September 4, 2024

Hmm, been long I tested, will check it out and set up a unit test... Feel free to create PR if you have tested

from phash.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.