Clement Fradet Normand

Results 209 comments of Clement Fradet Normand

@tjmcewan same issue here, have you found a way to fix it ?

I fixed it. I was removing elements of leaflet fullscreen options with css. So i removed all options related to fullscreen also in javascript and all worked great. I think...

Here is a good resizing with an other library (jimp). Not perfect but far better. ![image](https://user-images.githubusercontent.com/25119847/73964587-bef22280-4912-11ea-9364-1d72f9fa4142.png)

Thanks a lot @targos! here is the doc: https://image-js.github.io/image-js/#imageresize

@targos got this: `Error: unsupported resize interpolation: bilinear` My code: ```JS const zoomRoot = bigSquareImageClone .resize({ 'width':512, 'height': 512, 'interpolation': 'bilinear' }); ``` Do you know how to fix it...

@targos I'm just using `resize`, `crop`, `load` and `save`, is that all right ? Got a first error: `TypeError: Image.load is not a function`

COuld take a long time to read all of this: https://github.com/image-js/image-js/tree/v1.0.0-alpha.2/packages/image-js/src Would be really great to have a little explanation of how to use these 4 methods with the alpha...

Thanks a lot @targos Few bugs spotted" ```JS const bigTempImage = readSync("./dist/big.png"); ``` returns me `Error: unrecognized data format`, but it works with: ```JS const bigTempImage = readSync("big.png"); ``` so...

Moreover what could be a right code example for `clone` and `crop` ?