Aurigma 文件上传器 php 如何以正确的比例调整拇指大小

发布于 2024-12-12 14:27:04 字数 335 浏览 0 评论 0原文

我正在使用 aurigma 商业多文件上传器和裁剪器。

我正在尝试上传各种宽高比和尺寸的图像。

我希望它们适合 140*140 像素的盒子。

如果高度是图像的最小属性,我希望宽度为 140 像素,反之亦然。

允许重叠。

我浏览了官方网站和文档,但不明白如何做到这一点。

为了澄清图像是否为 100 * 50 像素,我希望将其大小调整为 210 * 140 或者 50*100 的图像应该是 140 * 210。

我没有上传任何代码,因为我使用的代码在主站点上可用,并且我没有添加任何具体内容。

www.aurigma.com/

I am using aurigma a commercial multi file uploader and cropper.

I am tring to upload images of various aspect ratios and sizes.

I want them to fit into boxes that are 140*140 pixels.

If the height is the smallest attribut of the image I want that to be 140 pixels or vice versa on the width.

Overlap are allowed.

I have looked through the official site and documentation but cannot understand how to do this.

To clarify if an image is 100 * 50 pixels I want it resized to 210 * 140
or an image that is 50*100 should be 140 * 210.

I haven't uploaded any code as the code I have used is available on the main site and I have added nothing specific.

www.aurigma.com/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陈甜 2024-12-19 14:27:05

您是否尝试过使用OrientationalFit

它的工作方式类似于“适合”模式,但对缩略图方向进行了修正。

$au.uploader({
    id: 'Uploader1',
    converters: [
        { mode: '*.*=Thumbnail', thumbnailFitMode: 'OrientationalFit',
            thumbnailWidth: 210, thumbnailHeight: 140, 
            thumbnailJpegQuality: 80 }
    ]
});

结果:

3072 x 2304 => 187 x 140
2304 x 3072 => 140 x 187

关于您的样本,还有一件事。图像上传器不能用于放大,即缩略图不能大于源图像。这是设计使然。

Did you try to use OrientationalFit?

It works like a Fit mode but with correction on thumbnail orientation.

$au.uploader({
    id: 'Uploader1',
    converters: [
        { mode: '*.*=Thumbnail', thumbnailFitMode: 'OrientationalFit',
            thumbnailWidth: 210, thumbnailHeight: 140, 
            thumbnailJpegQuality: 80 }
    ]
});

Results:

3072 x 2304 => 187 x 140
2304 x 3072 => 140 x 187

And one more thing about you sample. Image Uploader cannot be used for upsizing, i.e. thumbnail cannot be larger than source image. This is by design.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文