- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编辑 - 另一个更新!
有趣的是,我在我的 nexus 5 上尝试了相同的代码,图像预览是正确的,但图像本身只是黑色。
正在使用的设备是s3 minis,在这些设备上无法打开图像并且不显示预览。
我的目标是 sdk 版本 16。
此外,我将我的 nexus 插回我的开发机器并作为存储设备打开,图像未显示。
然后我将手机中的图像通过电子邮件发送给自己,该死的东西显示正常,这让我更加困惑,我唯一能想到的是图像太大无法显示?
//////////////////////////////////////////////////////////////////////////////////////
我正在尝试创建一个图像,然后将其保存到文件中,它在屏幕上显示正常并且文件已创建,但是该文件无法打开并且大小为 0 字节。以前有人遇到过这个问题吗?这是我的代码:
private class SampleView extends View {
public SampleView(Context context) {
super(context);
setFocusable(true);
}
@Override
protected void onDraw(Canvas canvas) {
EANMaker e = new EANMaker("123456789963");
Paint paint = new Paint();
View view = this;
view.setDrawingCacheEnabled(true);
view.setDrawingCacheQuality(view.DRAWING_CACHE_QUALITY_HIGH);
canvas.drawColor(Color.WHITE);
Bitmap b = Bitmap.createBitmap(500, 500, Bitmap.Config.ALPHA_8);
Canvas c = new Canvas(b);
c.drawRect(0, 0, 500, 500, paint);
paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC));
paint.setTextSize(40);
paint.setTextScaleX(1.f);
paint.setAlpha(0);
paint.setAntiAlias(true);
c.drawText("Carton ID", 60, 40, paint);
paint.setTextSize(160);
Typeface tf = gettypeFace(MyActivity.this, "ean.ttf");
paint.setTypeface(tf);
c.drawText(e.getCode(), 60, 180, paint);
paint.setColor(Color.WHITE);
canvas.drawBitmap(b, 50,50, paint);
FileOutputStream fos = null;
try {
fos = new FileOutputStream(Environment.getExternalStorageDirectory().getAbsolutePath() + "/barcode.png");
b.compress(Bitmap.CompressFormat.PNG, 100, fos);
fos.flush();
fos.close();
fos = null;
} catch (IOException ee) {
ee.printStackTrace();
} catch (Exception p)
{
p.printStackTrace();
}
finally {
if (fos != null) {
try {
fos.close();
} catch (IOException ee) {
ee.printStackTrace();
}
}
}
}
}
public Typeface gettypeFace(Context c, String assetPath) {
synchronized (cache) {
if (!cache.containsKey(assetPath)) {
try {
Typeface t = Typeface.createFromAsset(c.getAssets(),
assetPath);
cache.put(assetPath, t);
} catch (Exception e) {
Log.e("TAG", "Could not get typeface '" + assetPath
+ "' because " + e.getMessage());
return null;
}
}
return cache.get(assetPath);
}
}
编辑,我一直在玩这个,现在可以得到一个 6k 文件,但是仍然无法打开,我怀疑其中一个 Canvas 没有被绘制到位图中,但我完全不知道是什么还有事要做,我最新的代码如下
private class SampleView extends View {
public SampleView(Context context) {
super(context);
setFocusable(true);
}
@Override
protected void onDraw(Canvas canvas) {
EANMaker e = new EANMaker("123456789963");
Paint paint = new Paint();
canvas.drawColor(Color.WHITE);
Bitmap b = Bitmap.createBitmap(900, 480, Bitmap.Config.ARGB_8888);
Canvas c = new Canvas(b);
canvas.drawBitmap(b,0,0, paint);
//paint.setTextScaleX(1.f);
paint.setColor(Color.BLACK);
paint.setTextSize(40);
c.drawText("Carton LABEL", 20, 40, paint);
c.drawText("Carton ID = 1 Packed By = Test User", 20, 80, paint);
c.drawText("Despatch Date = 05/08/2014", 20, 120, paint);
paint.setTextSize(160);
Typeface tf = gettypeFace(MyActivity.this, "ean.ttf");
paint.setTypeface(tf);
c.drawText(e.getCode(), 60, 280, paint);
paint.setColor(Color.WHITE);
FileOutputStream fos = null;
try {
fos = new FileOutputStream(Environment.getExternalStorageDirectory().getAbsolutePath() + "/barcode.png");
b.compress(Bitmap.CompressFormat.PNG, 80, fos);
fos.flush();
fos.close();
fos = null;
} catch (IOException ee) {
ee.printStackTrace();
} catch (Exception p)
{
p.printStackTrace();
}
finally {
if (fos != null) {
try {
fos.close();
} catch (IOException ee) {
ee.printStackTrace();
}
}
}
}
}
public Typeface gettypeFace(Context c, String assetPath) {
synchronized (cache) {
if (!cache.containsKey(assetPath)) {
try {
Typeface t = Typeface.createFromAsset(c.getAssets(),
assetPath);
cache.put(assetPath, t);
} catch (Exception e) {
Log.e("TAG", "Could not get typeface '" + assetPath
+ "' because " + e.getMessage());
return null;
}
}
return cache.get(assetPath);
}
}
和我的 logcat 来证明没有错误:
08-05 13:13:02.371 26627-26627/com.example.imagetest I/System.out﹕ debugger has settled (1443)
08-05 13:13:03.082 26627-26627/com.example.imagetest D/libEGL﹕ loaded /system/lib/egl/libEGL_mali.so
08-05 13:13:03.082 26627-26627/com.example.imagetest D/libEGL﹕ loaded /system/lib/egl/libGLESv1_CM_mali.so
08-05 13:13:03.092 26627-26627/com.example.imagetest D/libEGL﹕ loaded /system/lib/egl/libGLESv2_mali.so
08-05 13:13:03.112 26627-26627/com.example.imagetest D/OpenGLRenderer﹕ Enabling debug mode 0
08-05 13:13:03.162 26627-26627/com.example.imagetest I/System.out﹕ Full code: 1234567899633
08-05 13:13:03.162 26627-26627/com.example.imagetest I/System.out﹕ Generated code: $!23E5GH-ijjgdd!
08-05 13:13:03.192 26627-26627/com.example.imagetest D/dalvikvm﹕ GC_FOR_ALLOC freed 84K, 13% free 9464K/10823K, paused 22ms, total 32ms
08-05 13:13:03.192 26627-26627/com.example.imagetest I/dalvikvm-heap﹕ Grow heap (frag case) to 12.093MB for 1728016-byte allocation
08-05 13:13:03.222 26627-26629/com.example.imagetest D/dalvikvm﹕ GC_CONCURRENT freed 39K, 12% free 11112K/12551K, paused 13ms+3ms, total 31ms
08-05 13:13:03.222 26627-26627/com.example.imagetest D/dalvikvm﹕ WAIT_FOR_CONCURRENT_GC blocked 9ms
最佳答案
正在创建图像,它们太大而无法在设备上正确打开。
关于android - 位图压缩给出空文件(0 字节),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25134156/
我有点想做 the reverse of this. 我不想解压缩并将收集文件添加到 S3 应用户要求: 生成一堆xml文件 使用一些图像(托管在 s3 上的预先存在的图像)压缩 xml 文件 下载
将此添加到域的虚拟主机后 AddOutputFilterByType DEFLATE application/javascript text/javascript text/css 响应头不包含任何内
在 Apache Im 中,通过将以下内容添加到我的 .htaccess 文件来启用输出压缩: # compress text, html, javascript, css, xml: AddOutp
是否可以以压缩格式将请求数据从浏览器发送到服务器? 如果是,我们该怎么做? 最佳答案 压缩从浏览器发送到服务器的数据是不受 native 支持 在浏览器中。 您必须找到一种解决方法,使用客户端语言(可
我正在寻找可以压缩JavaScript源代码的工具。我发现一些网络工具只能删除空格字符?但也许存在更好的工具,可以压缩用户的函数名称、字段名称、删除未使用的字段等。 最佳答案 经常用来压缩JS代码的工
使用赛马博彩场景,假设我有许多单独的投注来预测比赛的前 4 名选手 (superfecta)。 赌注如下... 1/2/3/4 1/2/3/5 1/2/4/3 1/2/4/5 1/2/5/3
我是一名实习生,被要求对 SQL 2008 数据压缩进行一些研究。我们想将 Outlook 电子邮件的几个部分存储在一个表中。问题是我们想将整个电子邮件正文存储在一个字段中,然后又想压缩它。使用 Ch
我目前有一个系统,用户可以在其中上传 MP4 文件,并且可以在移动设备上下载该文件。但有时,这些视频的大小超过 5MB,在我国,大多数人使用 2G。因此,下载大型视频通常需要 15-20 分钟。 有什
假设我有一个带有类型列的简单文档表: Documents Id Type 1 A 2 A 3 B 4 C 5 C 6 A 7 A 8 A 9 B 10 C 用户
我有一个较大字符串中的(子)字符串位置的 data.frame。数据包含(子)字符串的开头及其长度。可以很容易地计算出(子)字符串的结束位置。 data1 start length end #>
我想知道是否 文件加密算法可以设计成它也可以执行文件压缩的事件(任何活生生的例子?)。 我也可以将它集成到移动短信服务中,我的意思是短信吗? 另外我想知道二进制文件...如果纯文本文件以二进制编码
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
我们有几个具有大量 JavaScript 的 Java 项目,目前我们使用的是旧版本的 YUICompressor (2.4.2)。然而,我在这篇博文中发现 YUICompressor 正在 depr
从之前关于尝试提高网站性能的文章中,我一直在研究 HTTP 压缩。我读过有关在 IIS 中设置它的信息,但它似乎是所有 IIS 应用程序池的全局事物,我可能不允许这样做,因为还有另一个站点在其上运行。
我有一个 REST 服务,它返回一大块 XML,大约值(value) 150k。 例如http://xmlservice.com/services/RestService.svc/GetLargeXM
我正在尝试获取一个简单的 UglifyJS (v2.3.6) 示例来处理压缩。 具体来说,“未使用”选项,如果从未使用过,变量和函数将被删除。 这是我在命令行上的尝试: echo "function
我正在开发一个项目,如果我的磁盘出现问题,我将在使用 ZLIB 压缩内存块后将其发送到另一个磁盘。然后我计划下载该转储并用于进一步调试。这种压缩和上传将一次完成一个 block - 比如说 1024
LZW 压缩算法在压缩后增加了位大小: 这是压缩函数的代码: // compression void compress(FILE *inputFile, FILE *outputFile) {
我的问题与如何在 3D 地形上存储大量信息有关。这些信息应该是 secret 的,因为它们非常庞大,也应该被压缩。我选择了文件存储,现在我想知道将对象数据加密/压缩(或压缩/加密)到文件的最佳做法。
我使用以下代码来压缩我的文件并且效果很好,但我只想压缩子文件夹而不是在压缩文件中显示树的根。 public boolean zipFileAtPath(String sourcePath, Strin
我是一名优秀的程序员,十分优秀!