为用户提供指导的 Web 应用程序建议框架
我开始开发一个 Web 应用程序,该应用程序将利用 Dijkstra 算法为用户找到从 A 点到 B 点的最快方向。我只是想知道是否有人对此框架有任何建议?我倾向于涉及 PHP 的东西,但我真的不想构建自己的框架,因为这似乎有点过分了。
我只得到了一些可以使用的图像,有人对我如何从 A 点到 B 点画一条线有建议吗?
I'm starting to work on a web application that will utilize Dijkstra's algorithm to find users the fastest directions for point A to point B. I'm just wondering if anyone has any suggestions for a framework for this? I was leaning towards something involving PHP, but I'd really prefer to not build my own framework as that seems overkill.
I'm only being given some images to work with, does anyone have suggestions for how I'd draw a line from point A to point B?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道您是否真的在寻找 PHP 框架(如 CodeIgniter 或 Symfony),或者只是寻找用于图像处理的 PHP 库。框架对于管理整个应用程序、处理用户管理、权限、数据存储等很有用……如果您只想操作图像,那么库应该可以做到。
我用来管理地图的第一个应用程序是使用 GD 库(通常与您的 PHP 版本一起安装)的纯 PHP 版本。此处提供的文档: http://php.net/manual/en/book.image.php
使用 GD 在现有图片上画一条线的快速小示例:
您可以使用 GD 做很多事情,只是需要时间来习惯。
I don't know if you're really looking for a PHP framework (like CodeIgniter or Symfony) or just for PHP library for image manipulation. Framework are useful to manage your whole application, dealing with users management, permission, data storage, etc... If your looking to just manipulate images, a Library should do the thing.
My first app I did to manage a map was in plain PHP using the GD library (usually installed with your version of PHP). Documentation available here : http://php.net/manual/en/book.image.php
Quick small example to draw a line on an existing picture with GD :
You can do a lot of things with GD, it just takes time to be used to.