生成图标的 PHP 代码
目前我正在 Zend Framework 中开发一个巨大的后端应用程序。 很多时候我最终会为某些对象或操作使用错误的图标。
我的问题 有没有自动生成图标的php代码???
当然这些图标不会神奇地生成,最好的情况是我们有一个类型为 的图标集合。
- 对象(用户、类别、产品、RSS 等)
- 操作(添加、编辑、删除、更新等)
这样我们就可以通过动态混合不同类型的图标来创建图标。
生成删除用户图标的代码,尺寸为32x32,并在图标右下角删除图标。
$icon = new Icon(); $icon->object('user')->action('delete'); $icon->action_align('right')->action_valign('bottom'); $icon->action_height(10)->action_width(10); $icon->height(32)->width(32); $icon->create();
这只是一个例子,说明我们如何创建一个以前从未退出过的图标。
currently i am working on a huge back-end application in Zend Framework.
A lot of times i end up using wrong icon for some object or action.
My Question
Is there any php code to generate icons automatically????
Ofcourse these icons will not be generated magically, best case scenario is that we have a collection of icons which have the type of.
- Object (user,category,product,rss etc)
- Action (add,edit,delete,update etc)
This way we can create icons by mixing different types of icons on the fly.
The code for generating a icon to delete user with 32x32 and delete icon in bottom-right corner of the icon.
$icon = new Icon(); $icon->object('user')->action('delete'); $icon->action_align('right')->action_valign('bottom'); $icon->action_height(10)->action_width(10); $icon->height(32)->width(32); $icon->create();
This is just an example that how can we create a icon which was never exited before.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嘿,我可以建议您创建这样的文件管理器:
创建图像缩略图的过滤器
Hey i can suggest you to create filer like this one :
Filter that creates image thumbnail
您可以使用GD库导出图像,不是.ico格式,而是.bmp 就可以了。使用 Imagick 似乎你可以直接处理 .ico 文件。
You can use GD library to export the images, not in the .ico format but a .bmp will be ok. With Imagick it seems you can do directly .ico files.