使用 image 或 graphmagick 自动进行图像缩放
我有一个取决于 imagemagick 的问题: 是否可以仅上传一张高度为 1200 像素的图片,并根据设备或浏览器分辨率减小图像的图像高度和尺寸?
提前致谢
I've got a question that depends on imagemagick:
Is it possible to upload just one picture with a size of 1200px height for example and -depending on device or browser resolution- reduce the imageheight AND size of the image?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以根据设备或浏览器版本使用条件。假设您想在以下图像高度之间切换:
(即普通计算机)
然后将此部分输入到您的模板常量:
模板设置的替代解决方案(如下所述):
参考以获取更多想法。
useragent
无法正确识别移动设备,请尝试扩展 cwmobileredirect。它提供了非常可靠的移动设备切换。maxW
) 工作正常,但设置高度 (maxH
) 在 4.2 以下的版本中不知何故有问题。如果 maxH 出现问题,请使用替代解决方案。You can use conditions depending on devices or browser versions. Assuming you like to switch between the folling image heights:
(i.e. regular computers)
Then enter this section to your template constants:
Alternative solution for template setup (explained below):
reference for more ideas.
useragent
, try the extension cwmobileredirect. It provides a very reliable mobile device switch.maxW
) works fine, but setting the height (maxH
) is buggy somehow in versions below 4.2. Use the alternative solution if problems with maxH occur.