美术们总是忘记或者因为其它原因没有给图片资源加@2x后缀,遂用python实现了这个小功能。View Code
分类:
编程语言 时间:
2014-07-22 23:15:36
阅读次数:
332
A) App Icons1. CFBundleIcons
icon名字随便取,但必须是PNG格式--系统根据icon大小选择最匹配的,而不是根据icon的名字 must reside in the top level
of your app bundle. (Avoid using interl.....
分类:
其他好文 时间:
2014-05-04 10:26:12
阅读次数:
327
Application.CaptureScreenshot("Screenshot.png");截屏后的文件所在路径:Application.persistentDataPath
分类:
其他好文 时间:
2014-05-03 23:43:11
阅读次数:
294
.cpp
layout->setBackGroundImageScale9Enabled(true);
layout->setBackGroundImage("green_edit.png");
layout->setPosition(Point(0,0));
addChild(layout);
...
分类:
其他好文 时间:
2014-05-03 16:30:56
阅读次数:
322
首先准备两张图片,一张是EditText获得焦点后的边框背景,一张是没有获得焦点时的背景,注意制作成9.png样式的图片,然后在drawable里添加一个selector_edittext_bg.xml文件,内容如下:<?xmlversion="1.0"encoding="utf-8"?><selectorxmlns:android="http://schemas...
分类:
其他好文 时间:
2014-05-03 15:00:05
阅读次数:
328
PNG文件结构分析
---Png解析为了实现更高级的应用,我们必须充分挖掘PNG的潜力。PNG的文件结构根据PNG文件的定义来说,其文件头位置总是由位固定的字节来描述的:十进制数137
80 78 71 13 10 26 10十六进制数89 50 4E 47 0D 0A 1A 0A其中第一个字节0x...
分类:
其他好文 时间:
2014-04-30 23:56:42
阅读次数:
495
#include#include/*GDI+startuptoken*/ULONG_PTRgdiplusStartupToken;/*DeclareWindowsprocedure*/LRESULTCALLBACKWindowProcedure(HWND,UINT,WPARAM,LPARAM);//...
#include #include /* GDI+ startup token */ULONG_PTR
gdiplusStartupToken;/* Declare Windows procedure */LRESULT CALLBACK
WindowProcedure (HWND, UINT, W...
ubuntu 开机画面分为两部分,一个是grub界面,一个是plymouth界面
1.grub界面
(1)首先将grub界面的桌面背景图片(最好是PNG格式)拷贝到/boot/grub目录下。图片
分辨率最好=屏幕分辨率。
(2)修改etc/default/grub文件,需要sudo 权限。
GRUB_DEFAULT=0 表示启动grub菜单的第一个选项;
GRUB_HIDDEN_...
分类:
其他好文 时间:
2014-04-30 22:22:38
阅读次数:
297