码迷,mamicode.com
首页 >  
搜索关键字:scale    ( 3914个结果
iOS resize image
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
transform解释转:http://www.daqianduan.com/2959.html
CSS3 transform都有哪些常用属性?transform的属性包括:rotate() / skew() / scale() / translate(,) ,分别还有x、y之分,比如:rotatex() 和 rotatey() ,以此类推。下面我们来分解各个属性的用法:transform:ro...
分类:Web程序   时间:2014-07-29 14:13:48    阅读次数:323
UICollectionViewCell设置阴影
//@mg:masksToBounds必须为NO否者阴影没有效果// cell.layer.masksToBounds = NO; cell.layer.contentsScale = [UIScreen mainScreen].scale; cell.layer.shad...
分类:其他好文   时间:2014-07-28 14:28:23    阅读次数:431
数学之路-python计算实战(21)-机器视觉-拉普拉斯线性滤波
拉普拉斯线性锐化滤波  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
php GIF 打水印
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
android中根据不同分辨率dp和px的相互转算
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
精确运算--BigDecimal
工具类 ,直接就可以使用,对于float和double的进行加减乘除长生的误差的解决办法。import java.math.BigDecimal;public class Arith {// 默认除法运算精度private static final int DEF_DIV_SCALE = 10;//...
分类:其他好文   时间:2014-07-23 20:44:15    阅读次数:206
ACM基础训练题解4302 丢失的牛
简单线段树插入和查询删除 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
chrome字体小于12px
在项目中需要兼容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
Scale horizontally和Scale vertically
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!