码迷,mamicode.com
首页 >  
搜索关键字:bmp    ( 1170个结果
利用zxing生成二维码
使用zxing类库可以很容易生成二维码QRCode,主要代码如下: private Bitmap createQRCode(String str,int width,int height) { Bitmap bmp=null; if(str.equals(""))retu...
分类:其他好文   时间:2015-08-26 17:43:10    阅读次数:109
C语言读BMP图片
#include //包含相关bmp格式的定义结构#include#includeint bmpWidth; //bmp图片宽度(像素)int bmpHeight; //bmp图片高度(像素)RGBQUAD* pColorTable; //调色板数组(真彩色时不用)int biBitCou...
分类:编程语言   时间:2015-08-26 15:45:16    阅读次数:205
C# 二进制图片串互转
C# byte数组与Image的相互转换功能需求:1、把一张图片(png bmp jpeg bmp gif)转换为byte数组存放到数据库。2、把从数据库读取的byte数组转换为Image对象,赋值给相应的控件显示。3、从图片byte数组得到对应图片的格式,生成一张图片保存到磁盘上。这里的Image...
分类:Windows程序   时间:2015-08-25 16:09:03    阅读次数:218
Android学习之保存Bitmap到指定文件夹
/** * 保存图片到指定文件夹 * * @param bmp * @param filename * @return */ private boolean saveBitmapTofile(Bitmap bmp, String filename) { if (bmp == null || filename == null) return false; C...
分类:移动开发   时间:2015-08-21 00:18:12    阅读次数:160
Beginning SDL 2.0(3) SDL介绍及BMP渲染
本文基于SDL2.0,简要介绍了如何在不创建新窗口的情况下实现window窗口程序下调用SDL渲染BMP图像。主要涉及SDL_Window、SDL_Rect、SDL_Surface、BMP位图加载、Surface缩放、窗口绘制区域获取和刷新等知识点。
分类:其他好文   时间:2015-08-19 23:07:50    阅读次数:424
用CImage类来显示PNG、JPG等图片
CImage是VC.NET中定义的一种MFC/ATL共享类,也是ATL的一种工具类,它提供增强型的(DDB和DIB)位图支持,可以装入、显示、转换和保存多种格式的图像文件,包括BMP、GIF、JPG、PNG、TIF等。CImage是一个独立的类,没有基类。(CImage类是基于GDI+的,从VC.N...
分类:其他好文   时间:2015-08-19 16:12:54    阅读次数:160
CSS实现背景透明,文字不透明(各浏览器兼容) (转)
/*CSS*/.waps{ background:url(07158.bmp) no-repeat top center fixed; width:1004px; text-align:center; line-height:28px; font-size:12px; font-family:Ari...
分类:Web程序   时间:2015-08-19 12:58:14    阅读次数:163
CSS实现背景透明,文字不透明(各浏览器兼容)
/*CSS*/.waps{ background:url(07158.bmp) no-repeat top center fixed; width:1004px; text-align:center; line-height:28px; font-size:12px; font-family:Ari...
分类:Web程序   时间:2015-08-19 11:04:26    阅读次数:216
将Byte数组保存成24位BMP
直接上源代码:#include "stdafx.h"#include #include using namespace std;class CSaveByteToBmp{public: bool SaveDIB2Bmp(int fileNum, const CString& BMPFileNa...
分类:编程语言   时间:2015-08-18 18:29:56    阅读次数:127
实现同时将一批.bmp文件转换成.mat格式
%% 功能:实现同时对一批.bmp文件的转换成.mat格式PicFormat = {'*.bmp','Bitmap image (*.bmp)';... '*.jpg','JPEG image (*.jpg)' ;... '*.*','All Files (*.*)'};% 利用uige...
分类:其他好文   时间:2015-08-17 13:46:12    阅读次数:229
1170条   上一页 1 ... 76 77 78 79 80 ... 117 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!