Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这可能很难描述……但是……
我创建了一些简单的 PHP 论坛,我可以让用户发布图片链接,并且我希望图片出现在页面上。但是...我的论坛帖子在 iframe 内,如果帖子的宽度太宽,它会切断侧面,所以我希望图像只有这么宽。使图像适合的任何概念?我想知道 HTML 中是否有一些自动调整大小选项或 PHP 远程获取文件宽度/高度并为其生成 HTML 的方法?
您可以max-width在 css 中使用该属性,例如:
max-width
iframe img{max-width: 500px;}/*or whatever your max wants to be*/
在php中你可以使用
<?php list($width, $height) = getimagesize($yourfilename);
你可能需要包装getimagesize一个 if 因为它会导致它在失败时返回 false
getimagesize