// 0. 加载原有图片
UIImage *image = [UIImage imageNamed:icon];
// 1.创建图片上下文
CGFloat margin = border;
CGSize size = CGSizeMake(image.size.width + margin, image.size.height + margin);
...
分类:
其他好文 时间:
2014-06-16 12:44:07
阅读次数:
202
题目
You are given an n x n 2D matrix representing an image.
Rotate the image by 90 degrees (clockwise).
Follow up:
Could you do this in-place?
方法
矩阵坐标的转换,循环替换。
public voi...
分类:
其他好文 时间:
2014-06-16 11:28:03
阅读次数:
199
原地址:http://hi.baidu.com/drunkdream/item/9c9ac638dfc46ec6382ffac5实验环境:windows7+python2.6+pycrust+PIL1.1.7实验操作:Image模块例子:打开、旋转、显示一副图像>>>
import Image>>>...
分类:
编程语言 时间:
2014-06-16 07:56:05
阅读次数:
794
最近在研究微信的sdk,在缩略图这遇到了一点问题。
微信的缩略图要求是不大于32k,这就需要对我的图片进行压缩。试了几种方法,一一道来。
1、质量压缩法:
代码如下
ByteArrayOutputStream baos = new ByteArrayOutputStream();
image.compress(Bitmap.Co...
分类:
移动开发 时间:
2014-06-15 17:34:42
阅读次数:
239
Linux 的编译使用 GNU make 工具来检查整个系统的文件和调用 gcc 工具以及脚本完成编译源代码生成 image 等操作。要了解整个编译系统,我们首先要了解 Linux 内核的 Makefile 文件。
Linux 的 编译系统包括 5 个部分
Makefile
顶层的 Makefile 文件
.config
内核配置文件
arch/$(ARCH...
分类:
系统相关 时间:
2014-06-15 16:05:05
阅读次数:
351
You are given an n x n 2D matrix representing an image.
Rotate the image by 90 degrees (clockwise).
Follow up:
Could you do this in-place?
思路:第一种思路是一层一层的进行旋转,比较直观,但是花费的时间要久一些;第二种思路则比较取巧,首先沿着...
分类:
其他好文 时间:
2014-06-15 08:46:26
阅读次数:
170
/// /// 返回指定WebBrowser中图片中的图内容/// ///
WebBrowser控件/// IMG元素/// IMG对象private Image GetWebImage(WebBrowser WebCtl,
HtmlElement ImgeTag){ HTMLDocument...
分类:
Web程序 时间:
2014-06-13 16:58:24
阅读次数:
427
packagedrawImage;importjava.awt.Graphics;importjava.awt.Graphics2D;importjava.awt.Image;importjava.io.File;importjava.io.IOException;importjavax.image...
分类:
编程语言 时间:
2014-06-13 16:43:57
阅读次数:
281
今天在开发.net引用程序中,需要System.Drawing.Image.Save
创建图片,debug的时候程序一切正常,可是发布到IIS后缺提示出现“GDI+中发生一般性错误”的异常。于是开始“摆渡”,并寻找到了解决办法:赋予
NETWORK SERVICE 帐户以写权限。以下为晚上寻找到的资...
分类:
其他好文 时间:
2014-06-13 14:43:58
阅读次数:
291
使用Image.FromFile取磁盘上的图片时,这个方法会锁定图片文件,而且会导致内存占用增大,
有几种方法解决:一:将Image类转换成Bitmap类System.Drawing.Image img =
System.Drawing.Image.FromFile(filepath);Syste....
分类:
其他好文 时间:
2014-06-12 22:42:28
阅读次数:
289