http://stackoverflow.com/questions/2658738/the-simplest-way-to-resize-an-uiimagehttp://stackoverflow.com/questions/185652/how-to-scale-a-uiimageview-p...
分类:
移动开发 时间:
2014-07-31 20:01:37
阅读次数:
280
CSS3 transform都有哪些常用属性?transform的属性包括:rotate() / skew() / scale() / translate(,) ,分别还有x、y之分,比如:rotatex() 和 rotatey() ,以此类推。下面我们来分解各个属性的用法:transform:ro...
分类:
Web程序 时间:
2014-07-29 14:13:48
阅读次数:
323
//@mg:masksToBounds必须为NO否者阴影没有效果// cell.layer.masksToBounds = NO; cell.layer.contentsScale = [UIScreen mainScreen].scale; cell.layer.shad...
分类:
其他好文 时间:
2014-07-28 14:28:23
阅读次数:
431
拉普拉斯线性锐化滤波 LaplacianCalculates the Laplacian of an image.C++: void Laplacian(InputArray src, OutputArray dst, int ddepth, int ksize=1, double scale=1, double delta=0, int borderType=BORDER_DEFAULT )P...
分类:
编程语言 时间:
2014-07-28 00:05:59
阅读次数:
393
include ‘Timagick.class.php‘;
$image = new Timagick();
$image->open(‘a.gif‘);
$image->resize_to(100, 100, ‘scale_fill‘);
$image->add_text(‘1024i.com‘, 10, 20);
$image->add_watermark(‘1024i.gif‘, ...
分类:
Web程序 时间:
2014-07-27 12:16:21
阅读次数:
345
public class PxAndDp {
/**
* 根据手机的分辨率从 dp 的单位 转成为 px(像素)
*/
public static int dip2px(Context context, float dpValue) {
final float scale = context.getResources().getDisplayMetrics().density;
...
分类:
移动开发 时间:
2014-07-26 02:36:36
阅读次数:
276
工具类 ,直接就可以使用,对于float和double的进行加减乘除长生的误差的解决办法。import java.math.BigDecimal;public class Arith {// 默认除法运算精度private static final int DEF_DIV_SCALE = 10;//...
分类:
其他好文 时间:
2014-07-23 20:44:15
阅读次数:
206
简单线段树插入和查询删除 1 #include 2 #include 3 #include 4 using namespace std; 5 int num[10000]; 6 int node[20000]; 7 int scale; 8 void clear(int n){ 9 scal...
分类:
其他好文 时间:
2014-07-22 23:30:27
阅读次数:
291
在项目中需要兼容Firefox、chrome、Safari浏览器,主要在于字体大小<12px时的兼容,之前已经在css中加入了-webkit-transform=scale(0.75);-webkit-transform-origin=0 0;样式实现chrome中字体大小为9px。但是今天发现Sa...
分类:
其他好文 时间:
2014-07-22 23:30:17
阅读次数:
245
Methods of adding more resources for a particular application fall into two broad categories: horizontal and vertical scaling.[5]
To scale horizontally (or scale out) means to add more nodes to a s...
分类:
其他好文 时间:
2014-07-22 22:33:55
阅读次数:
397