使用ImageMagick将PDF转换为图像,无法获得良好的色彩质量。
MagickReadSettings settings = new MagickReadSettings();
settings.Verbose = true;
settings.Density = new Density(600, 600);
MagickImageCollection images = new MagickImageCollection();
images.Read("C:\\" + Path.GetFileName(fileUrl));
List <string> files = new List<string>();
for (var x = 0; x < images.Count; x++)
{
images[x].Quality = 100;
images[x].BitDepth(24);
images[x].Contrast(true);
images[x].Resize(3675, 2400);
images[x].Write("C:\\websites\\FlyerEditor2\\FlyerEditor\\src\\assets\\" + Path.GetFileNameWithoutExtension(fileUrl) + "-" + (x + 1) + ".jpeg");
files.Add("assets/" + Path.GetFileNameWithoutExtension(fileUrl) + "-" + (x + 1) + ".jpeg");
}
答案 0 :(得分:0)
好的,这个问题与imageMagick无关。彩色托盘是一个简单的问题。默认情况下,将pdf转换为jpeg使用cmyk,而Web标准为RGB
答案 1 :(得分:0)
如果使用python3,你可以尝试使用魔杖。
在终端:
brew install imagemagick@6
pip install wand
在python中:
from wand.image import Image
pdf_file = '.../example/a.pdf'
def convert_pdf_to_jpg(file_name, pic_file, resolution=120):
with Image(filename=file_name, resolution=resolution) as img:
print('pages = ', len(img.sequence))
with img.convert('jpeg') as converted:
converted.save(filename=pic_file)
答案 2 :(得分:0)
我发现imagemagick在Linux和Windows之间对色空间的转换处理存在重大差异。
使用命令
转换-密度300-颜色空间RGB my.pdf my.jpg
转换-密度300-色彩空间sRGB my.pdf my.jpg
在Linux中,-colorspace sRGB和-colorspace RGB都生成图像,其中对比度和调色板是与原始图像的主要转移,对比度增加了,并且颜色与原始图像相差甚远。
在Windows中,-colorspace sRGB和-colorspace RGB都不是可以接受的。