.NET 动态图像生成
我一直在考虑建立一个类似于百万美元主页的动态图像网格,但尺寸为 500x500。用户选择他们在网格上的位置。
我的问题是你将如何从数据中绘制图像?我一直认为图像可以从数组[500][500]中绘制,每个槽存储一个像素的颜色。因此,当用户在正方形中添加一块时,您会记录位置和大小并将其替换到数组中>?
然后,每次图像更改时,您都会将整个 blob 存储在数据库中,这样您就可以进行版本控制,
你们觉得怎么样?
I've been thinking about setting up a dynamic image grid similiar to milliondollarhomepage, but 500x500. Users choose their place on grid.
My question is how would you go about drawing the image from the data? I've been thinking the image can be drawn from a array[500][500], each slot storing color for a pixel. So when a user adds a piece in the square, you record position and size and replace that in the array>?
Then each time the image changes you store the total blob in the DB so you have some versioning
What do you guys think?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这样,您既可以获得所有更改的历史记录,又可以显示快速且静态的图像。
This way you have both a history of all changes and a fast and static image to show.