如何在中制作相同尺寸的图像,但图像尺寸不同
I have many images to showing in to the <table>
or <td>
How to make same size image in <table>
/ <td>
, but image diffrent size.
for view My site click here : promolagi.com
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
当您构建图像时,您可以将其高度和宽度设置为恒定。
请记住,它会拉伸您的图像以适合您想要的尺寸,并且质量会降低。
When you build an image you can set its height and width to be constant.
Bear in mind it will be stretch your image to fit the size you desire and the quality will be reduced.
在td中添加一个div,将div的大小设置为您想要显示图像的大小,然后将溢出设置为隐藏。这应该只显示图像的一部分,但它将始终具有相同的大小。
Add a div in the td set the size of the div to be the size that you want the image displayed and then set the overflow to be hidden. This should then only show part of the image but it will always be the same size.
在你的 CSS 中:
像这样,表格中的所有图像的大小都是 200x300px。
您可以为每个图像指定这一点:
或
In your CSS :
Like this all your images in a table will have 200x300px of size.
You can specify this for each image:
or
如果我正确理解您的问题,那么您的图像大小不同,并且您想要创建大小相同的缩略图。
您需要创建新的图像文件,即存储在服务器中的缩略图。 (使用全尺寸图像并让浏览器调整它们的大小并不是一个好主意。)
您可以使用图像处理程序(Photoshop、PSP、Gimp 等)创建缩略图图像。通常它们具有用于处理多个图像的批处理选项。
或者使用基于命令行的图像编辑器 ImageMagic,它可以方便地执行批处理作业。
或者使用专用的缩略图生成程序。有许多免费的替代品(谷歌缩略图生成器)。
由于图像具有不同的比例,因此您必须确定“相同尺寸”的含义。相同的宽度或相同的高度,或相同的最大尺寸(必须适合指定的矩形),或相同的面积。缩略图生成器程序通常允许您选择这些选项中的任何一个。然后,它会生成特定文件夹中所有图像的缩略图。
其中许多程序还可以为图片库生成 html 代码。
If I understand your question correctly, you have images that are of different size and you want to create thumbnails that are all the same size.
You need to create new image files, thumbnail images that you store in the server. (It is not good idea to use full size images and let the browser to resize them.)
You can create the thumbnail images using an image manipulation program (Photoshop, PSP, Gimp etc.). Usually these have batch processing option for handling multiple images.
Or use command line based image editor, ImageMagic, which is handy for doing batch jobs.
Or use a dedicated thumbnail generator program. There are many free alternatives (Google for thumbnail image generator).
Since the images have different proportions, you must decide what you mean by "same size". The same width or same height, or the same maximum dimension (must fit inside a specified rectangle), or the same area. The thumbnail generator program usually allows you to choose any of these options. Then it generates thumbnails for example for all the images in a specific folder.
Many of these programs can also generate html code for an image gallery.