g-mero

Results 20 comments of g-mero

You can check 'ThumbnailWithSize' and 'Thumbnail' method, there is a crop argument seems like what you want to fullfill.

Try this. ``` img.ExportGIF(&vips.GifExportParams{ StripMetadata: true, Quality: 75, Effort: 7, Bitdepth: 8, }) ```

> Have you tried the UnescapePath setting? https://docs.gofiber.io/api/fiber#config Became 'data/pic/1234/图片', still can not get the full path

> Try using url.Queryunescape? > > ```go > result, _ := url.Queryunescape(c.Params("*")) > src := "data/pic/" + result > ``` > > or double check the link/file again? I cannot...

@ReneWerner87, this issue occurs when the request path contains unescaped characters. It seems that some API testing software (e.g., apifox, apipost) cannot automatically encode unescaped characters (e.g., Chinese). It works...

I use motion-one (which based on solid-transition-group). You should re-config every route component to make it work. ``` export default function App() { const NewFileRoutes = () => FileRoutes().map((route) =>...

感谢建议 - 1.3.0版本后修改为了Gmal - Alert模块的backdrop将在下一更新中体现 - Message模块主要参考了[QMsg](https://gitee.com/leisureLXY/qmsg)的样式,因为需要堆叠,所以设计的尽可能小 - Readme确实不够完善,我也建立了一个[文档站点](https://gmeroalert.github.io/),不过也还没有完善(我太懒了),后续会进一步完善的 - 我不是很喜欢很长的链式调用,type主要是控制样式,除了loading,其他的基本大差不差,分离为成员函数就显得很冗余(实际上原始的测试版本是这么做的,但由于多模块的引入,我取消了这个设计)