akempes

Results 10 comments of akempes

I added two events, dragstart and dragend. I'm using these events to connect to my server and store the changes. Dragstart will abort the request made when the dragend event...

Hi, I've never seen it before. On which device did this occur? Than I may be able to reproduce it...

The script doesn't allow folder paths but only the folder names. Add just "lib" to the "folder_exclude_patterns". Sadly this will exclude **all** lib folder throughout the whole project...

I've used [Imagick](https://github.com/gographics/imagick) to first combine the tiles into strips and then combine the strips into one single file. First generate a stip from the tiles: `convert -append "folder/*.png" "strips/strip1.png"`...

@manticorp I tried your update but it isn't working for Laravel 5.3 and 5.4. I had to change it to: ```php $this->app->singleton('image-palette', function () { return new Client; }); ```

One more thing: To support Laravel 5 you need to remove the line `$this->package('brianmcdo/image-palette');`. In fact the whole boot function may be removed.

Thanks for the FAST updates! This last update also fixes issue #6. I hope this pull request is merged soon!

I just installed node-emoji (`npm install --save node-emoji`) and added the pipe to my project by coping the src/index.ts file.

I just ran into the same problem. For anyone who wants to load an image from an url: ```javascript const url = 'https://dummyimage.com/458x340/000000/9b1bdb.png'; fetch(url) .then(response => { // Check if...