- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
在某些非常特殊的情况下,System.Drawing.Save(Stream, Imageformat) 会创建损坏的 PNG 图像。
有没有办法避免它,例如:
重现步骤
问题是什么?
问题是最后一个图像数据后的 IDAT block 不正确。它不包含数据,但长度字节为 00 00 ff f4。可以用https://github.com/jsummers/tweakpng检测到.我们注意到 Linux 上的图像库(不确定是哪些)无法处理此类错误。据我们所知,在 Windows 中这个错误会被忽略,您不会注意到任何问题。
什么时候发生?
这取决于 PNG 文件的大小。仅当生成的 PNG 文件大小(以字节为单位)为0x1001C + n * 0x10000,n 为 0、1、2、3、4,可能更大。
可重现
可以调整第二步以生成特定的 PNG 文件大小(例如,为空位图中的不同数量的像素着色)。当尺寸为上述尺寸时,一直出现错误。
重现代码
在干净的控制台应用程序中替换 Program.cs 的内容。运行该程序时,它会尝试创建具有精确指定大小的 PNG 并将其保存为“constructed.png”。
顺便说一句:第二个 PNG 保存为“constructedReExport.png”:这是通过加载第一个并再次保存创建的。我想我记得这是一个潜在的解决方法,但是当我现在运行它时,第二个文件包含相同的错误...
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
namespace CreateCorruptPng
{
class Program
{
static void Main(string[] args)
{
// Choose 0x1001C + 0x10000 * n; with n = 0, 1, 2, 3, 4 to get corrupt PNG
int targetOutputSizeBytes = 0x5001C;
// You may need to fiddle with these parameters to
// successfully create an image of the exact size.
int widthPixels = 2000;
int height = 1200;
var creator = new PngCreator(widthPixels, height);
string outputPath = ".";
creator.TryCreateWithSize(targetOutputSizeBytes);
creator.SaveCurrentImage(Path.Combine(outputPath, "constructed.png"));
creator.SaveAfterSecondExport(Path.Combine(outputPath, "constructedReExport.png"));
}
}
public class PngCreator
{
Bitmap _img;
int _width;
int _height;
int _maxPixcount;
public PngCreator(int w, int h)
{
_width = w;
_height = h;
_maxPixcount = w * h;
}
public void TryCreateWithSize(int requiredByteCount)
{
Console.WriteLine($"Attempting to create png file of exactly {requiredByteCount} bytes.");
Console.WriteLine($"Image size (w x h) = {_width} x {_height}.");
int lowerBound = 0;
int upperBound = _maxPixcount;
bool success = false;
while (upperBound > lowerBound + 1)
{
InitImage();
int pixelCount = (upperBound + lowerBound) / 2;
AddPixels(pixelCount);
int currentSize = GetPngByteCount();
if (currentSize == requiredByteCount)
{
success = true;
break;
}
if (currentSize < requiredByteCount)
lowerBound = pixelCount;
else
upperBound = pixelCount;
}
Console.WriteLine("Search stopped.");
if (success)
Console.WriteLine($"SUCCESS.\n Created PNG with exact file size {requiredByteCount} bytes.");
else
Console.WriteLine($"WARNING.\n" +
$" Could not produce PNG with file size {requiredByteCount} bytes.\n" +
" Try to run again with different resolution.\n" +
" If the file size in the last iteration is too small, try larger resolution.");
}
private void InitImage()
{
_img?.Dispose();
_img = new Bitmap(_width, _height, PixelFormat.Format16bppArgb1555);
}
private void AddPixels(int n)
{
Console.WriteLine($"Coloring {n} pixels...");
for (int i = 0; i < n; i++)
{
int x = i % _width;
int y = i / _width;
_img.SetPixel(x, y, Color.FromArgb((i / 2) % 255, 0, 0));
}
}
private int GetPngByteCount()
{
using (MemoryStream s = new MemoryStream())
{
_img.Save(s, ImageFormat.Png);
byte[] imgBytes = s.ToArray();
Console.WriteLine($"Png file size {imgBytes.Length}");
return imgBytes.Length;
}
}
public void SaveCurrentImage(string path)
{
SaveImage(path, _img);
}
public void SaveAfterSecondExport(string path)
{
using (Bitmap imgReimported = ToPngBytesAndLoadAgain(_img))
{
SaveImage(path, imgReimported);
}
}
private Bitmap ToPngBytesAndLoadAgain(Bitmap img)
{
return new Bitmap(new MemoryStream(ToPngBytes(img)));
}
private static byte[] ToPngBytes(Bitmap img)
{
using (MemoryStream s = new MemoryStream())
{
img.Save(s, ImageFormat.Png);
return s.ToArray();
}
}
private static void SaveImage(string path, Bitmap img)
{
Console.WriteLine($"Saving file to {path}");
File.WriteAllBytes(path, ToPngBytes(img));
}
}
}
最佳答案
我在处理由 Adobe 产品创建的一些文件时遇到了问题,不同的 adobe 产品有不同的引擎,有时这会破坏 GDI+,并使用类似的解决方法来保留文件。使用不使用 GDI+ 的第三方图像处理工具可能是最佳选择,例如 ImageMagic(或 .net 包装器 Magic.Net)
当您为内容做广告时,是指绘制图像还是添加文件,请检查添加的文件是否有问题。
关于c# - Windows/.NET 的 System.Drawing.Save(Stream, ImageFormat) 中的错误。生成损坏的 PNG,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52100703/
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 8 年前。 Improve this qu
我目前正在尝试制作一个非常简单的应用程序,它会根据一天中的时间问候。我的代码是: open System let read() = Console.Read() let readLine() = Co
我已经运行Elasticsearch服务很长时间了,但是突然遇到了以下情况 由以下原因导致:org.elasticsearch.index.translog.TranslogCorruptedExce
我对执行以下操作的 php 重定向脚本有一个奇怪的问题: 在用户的浏览器中植入 Cookie,或者读取现有 Cookie(如果有)。 将用户重定向到另一个网址(重定向的网址是原始网址中的参数,例如 h
我正在使用 iText 7.0.0(Java 风格),似乎表格单元格 HorizontalAlignment 被忽略,因为 CENTER 和 RIGHT 都不起作用。你能重现这个吗? see th
简而言之: 我有一个可以从多个线程访问的计数器变量。尽管我已经实现了多线程读/写保护,但该变量似乎仍然以不一致的方式同时写入,导致计数器结果不正确。 深入杂草: 我使用的“for 循环”会在后台触发大
我有一个 REST 项目,在访问控制服务类中保存用户的ArrayList。一切都工作正常,直到 REST Web 服务突然抛出 java.util.NoSuchElementException。单步查
已关闭。此问题不符合Stack Overflow guidelines 。它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
当我刷新页面时,我无法显示 voteUp/Down,因为如果我执行 voteUp/Down(+1 或 -1) 并刷新页面,这会再次返回 voteUp/Down (0)。过去我使用 JSON,但社区推荐
我正在为离散时间 CPU 调度模拟器编写代码。它只是生成流程并相应地安排它们。我目前正在实现 FCFS 计划。我理解离散时间模拟器的本质,但我在用 C++ 实现时遇到了麻烦。 问题出现在handleN
尝试使用 yum 部署包时出现错误: 2016-07-07 14:14:31,296 - ERROR - error: rpmdb: BDB0113 Thread/process 6723/1
我有一个简单的同步队列 template class SynchronisedQueue { public: void Enqueue(const T& d
我正在使用 hadoop 0.20.append 和 hbase 0.90.0。我将少量数据上传到 Hbase,然后出于评估目的杀死了 HMaster 和 Namenode。在此之后,我向 Hbase
我使用 symfony 框架 1.4 创建了一个网站。我正在使用 sfguard 进行身份验证。 现在,这在 WAMP (windows) 上运行良好。我可以在不同的浏览器上登录多个帐户并使用该网站。
目前我已经实现了 HashMap private static Map cached = new HashMap(); 和 Item 是一个具有属性的对象 Date expireTime 和 byte
我试图将 2 个不同的 WPF 控件绑定(bind)到 ViewModel 中的同一属性,即 CheckBox.IsChecked 和 Expander.IsExpanded。我想要实现的行为是让 C
我希望这是一个简单的问题,但我没有找到答案。 我想让 build.gradle 文件通过替换某些变量来设置我的 Spring Boot 应用程序中的版本。这与广告一样有效: def tokens =
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
这个问题在这里已经有了答案: In a fragment shader, why can't I use a flat input integer to index a uniform array o
我已经下载了 OSM 世界地图。解析时出现异常: osm bound changeset (...) changeset Exception in thread "main" org.xml.sax.
我是一名优秀的程序员,十分优秀!