码迷,mamicode.com
首页 >  
搜索关键字:eddys picture    ( 691个结果
Some things about RESUME
1. 介绍Project介绍这个项目的big picture, 比如项目是干什么的,动机是什么,实现的功能是什么。然后介绍具体应用到的技术,所用的语言,开发环境,系统架构,系统设计。在利用一些具体的use case来详细描述这个项目,好比做一个口头的demo。最后说一下这个项目的future wor...
分类:其他好文   时间:2014-12-12 14:51:30    阅读次数:201
AVPicture结构体分析
/** * Picture data structure. * * Up to four components can be stored into it, the last component is * alpha. */ typedef struct AVPicture { uint8_t *data[AV_NUM_DATA_POINTERS]; ///< poi...
分类:其他好文   时间:2014-12-11 16:10:36    阅读次数:175
Android -- 几种保存成jpeg文件的形式
//1.采用NV21格式 YuvImage类进行保存 效率很高 String fileName = "IMG_" + String.valueOf(index) + ".jpg"; File sdRoot = Environment.getExternalStorageDirectory(); String dir = "/picture/"; File mkDir = new ...
分类:移动开发   时间:2014-12-11 00:24:21    阅读次数:270
Android 四大组件 之 content provider 创建流程
以下是Source Application去query Target Application中的content provider时的流程,此处只画到content provider启动。 The picture above is the flow chart for how Content Providers started (1) Source APP Inform AMS ...
分类:移动开发   时间:2014-12-10 16:26:00    阅读次数:177
Android 四大组件 之 Broadcast/Receiver 流程
下图描述了在source application中broadcast一个intent,注册此intent的Target Application如何启动和接收的流程。 The picture above is the flow chart for how the source Application broadcast an intent (1) Inform AMS to br...
分类:移动开发   时间:2014-12-10 12:36:08    阅读次数:192
Android bindService流程
下图描述从一个Application A如何bind在Application B中的Service. The picture above is the flow chart for how the source Application bind a target service Major includes four steps: (1) Inform AMS to ...
分类:移动开发   时间:2014-12-09 21:34:02    阅读次数:255
HTML常见标签
This is our websitelinkaabbccddeeffusername:password:gender:malefemalecomment: upload :picture:
分类:Web程序   时间:2014-12-09 11:54:15    阅读次数:213
Android start_activity流程
好了,用上篇介绍的工具,跟踪了下startActivity在system_server中的流程,如下: The picture below is the flow chart for how the source Activity start a target activity Major includes four steps: (1) Preparation, flow chart in...
分类:移动开发   时间:2014-12-09 10:36:36    阅读次数:194
linux自动删除规定天数前的文件
公司在线上有一个监控系统,每天都会制造大量文件,然后就需要删除规定天数以前的文件,用来保证硬盘不会满造成服务中断。语句也很简单,#delete 15 days ago picture filesfind /home/monitoring/ -mtime +15 -exec rm -rf {} \;-...
分类:系统相关   时间:2014-12-06 15:24:24    阅读次数:205
MFC 在Picture控件中显示图像(JPG)
首先选择图片:void Chbgk_picDlg::OnBnClickedButton1(){CFileDialog cfd(true,_T(".jpg"),NULL,OFN_FILEMUSTEXIST|OFN_HIDEREADONLY,_T("Executable Files (*.jpg...
分类:编程语言   时间:2014-12-03 21:00:55    阅读次数:213
691条   上一页 1 ... 53 54 55 56 57 ... 70 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!