表示层/前端的图像裁剪
我们的网站根据上传的图像创建各种裁剪/尺寸(图像)。 我们希望放弃这种方法,因为我们的表示层/前端会随着时间的推移而变化,随后图像表示大小要求也会发生变化。 实现这一目标的最佳、最长期可持续的方法是什么?指导表示赞赏。 我们正在使用:HTML、CSS、JQuery、PHP/mySQL 和 Drupal。
Our site creates various crops/sizes (of an image) UPON image upload.
We want to move away from this approach, as our presentation layer/front-end morphs over time, and subsequently, the image presentation size requirements change.
What's the best, most long-term sustainable approach to do this? Guidance appreciated.
We're working with: HTML, CSS, JQuery, PHP/mySQL and Drupal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法是像当前一样继续生成缩略图,但保持上传的原始缩略图不变。稍后,假设图像需求发生变化,运行脚本并重新生成所有图像会更容易。通过这种方式,我们可以确保我们不会在运行时进行图像裁剪,因为这可能既耗时又占用资源。
让我知道这是否有帮助。
谢谢
The best approach would be to continue generating the thumbnails as you do currently but keep the original uploaded as is. Later down the time, lets say the image requirements change, it would be easier to run a script and re-generate all the images. This way we make sure that we are not doing image croping at runtime, because this can be time consuming and resource intensive.
Let me know if this helps.
Thanks