从上一则SO帖子here开始,我已经不再能够从PDF转换中删除透明度,而不能调整转换的背景颜色。我已经尝试了在Imagemagick.NET github docs上可以找到的所有内容。我需要确保通过此软件包传递的任何图像都具有不透明的白色背景。
/// <summary>
/// Write image data from a pdf file to a bitmap file
/// </summary>
/// <param name="imgData"></param>
private static void convertPdfToBmp(ImageData imgData)
{
MagickReadSettings settings = new MagickReadSettings();
// Settings the density to 600 dpi will create an image with a better quality
settings.Density = new Density(600);
using (MagickImageCollection images = new MagickImageCollection())
{
// Add all the pages of the pdf file to the collection
images.Read(imgData.pdfFilePath, settings);
// Create new image that appends all the pages horizontally
using (IMagickImage image = images.AppendVertically())
{
// Remove the transparency layers and color the background white
image.Alpha(AlphaOption.Remove);
int aval = image.Settings.BackgroundColor.A = 0;
int rval = image.Settings.BackgroundColor.R = 0;
int bval = image.Settings.BackgroundColor.G = 0;
int gval = image.Settings.BackgroundColor.B = 0;
// Convert the image to a bitmap
image.Format = MagickFormat.Bmp;
// Delete any old file
if (File.Exists(imgData.bmpFilePath))
{
File.Delete(imgData.bmpFilePath);
}
// Save result as a bmp
image.Write(imgData.bmpFilePath);
}
}
}
在上面的代码中,如果我将4个通道image.Settings.BackgroundColor
中的任何一个设置为其他颜色,则对图像没有影响。如果使用image.BackgroundColor
,则对图像没有影响。我想念什么?
注意:在上面的代码中,我将颜色设置为黑色以验证代码是否正常工作。我也尝试过其他颜色的笑声。
答案 0 :(得分:0)
从以下位置更改设置:
settings.Density = new Density(600);
到
settings.Density = new Density(600);
settings.ColorType = ColorType.TrueColor;
settings.BackgroundColor = new MagickColor(Color.White);
我已经尝试过并且可以正常工作。