nibe
nibe
Would this allow for something like ``` { "@context": { "image": { "@id": "http://schema.org/image", "@type": "@id" } }, "image": "http://manu.sporny.org/images/manu.png" } ``` or is that already possible? Thanks for your...
I just tested it and [`minScale` in smartcrop.go](https://github.com/muesli/smartcrop/blob/f1935b108c21d44756141bfebf302dfd7b03fdbe/smartcrop.go#L70) does indeed cause this issue. It's set to `0.9` and changing it to `1.0` stops unnecessary cropping. Unfortunately, it is a constant.
I found a workaround by the way. First you smart crop with the aspect ratio you want, without reducing the width or height (so that `minScale` does not come into...
I have plenty of headings containing non-breaking spaces since I started using them for business names, product names and personal names, which can break awkwardly without them, especially on a...
For me this crash always happens after the game selects the Show Building Spaces button. It goes through the buttons from the bottom to the top, making me suspect an...
That works but so does `$jpg := $original.Resize "200x jpg"`. Whereas `$jpg := $png.Process "resize 200x jpg"` doesn't work. Use case pseudocode: ``` $png := $original | elaborateProcessing $jpg :=...