使用 MySQL 存储图像尺寸
在数据库中存储图像尺寸的最佳方式是什么?我应该只使用两个 SMALLINT 吗?或者我应该使用 POINT 还是 VARCHAR?
What is the optimal way to store an image dimension in a database? Should I just use two SMALLINTs? Or should I use a POINT or a VARCHAR?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从最佳角度来说,显然,保存您想要存储的任何值所需的存储量最少是最好的。我没有太多要补充的内容,您已经知道了:我认为两个
SMALLINT
将是最好的路线。Speaking optimally, clearly the least amount of storage required to hold any values you want stored would be best. I don't have a lot to add to what you already know: I think two
SMALLINT
s would be the best route to go.取决于您需要这些数据的用途。如果您要根据图像大小运行 SELECT,则对每个(宽度、高度)运行 SMALLINT。如果您只需要图像尺寸作为图像的元数据,则可以将 varchar 与序列化数组(例如由 getimagesize() 返回)或字符串一起使用。
希望有帮助。 :)
Depends on what you need this data for. If you are going to run
SELECT
s based on image size, then SMALLINT for each (width, height). If you just need image dimensions as meta data to the image, you can use varchar with serialized array (for example returned by getimagesize()) or string.Hope that helps. :)