我正在使用PDFSharp来创建pdf文档,但是当我将图像添加到pdf时,文件大小会急剧增加,即使我将图像压缩为300x300像素和72dpi分辨率。当我创建一个没有图像的pdf时,它大约是300kb,这很棒,但第二次我在这个分辨率和大小上添加了一些图像,它达到了5mb。最多可以添加25个图像,这将使我的PDF格式变得荒谬。有没有人有什么建议?我已将我的代码放在下面压缩我的代码:
//maxSize = 300x300 and mimetype can be either "image/png" or "image/jpg"
public static Bitmap CompressImage(Image currentImage, string mimeType, Size maxSize)
{
Bitmap myBitmap;
ImageCodecInfo myImageCodecInfo;
Encoder myEncoder;
EncoderParameter myEncoderParameter;
EncoderParameters myEncoderParameters;
MemoryStream stream = new MemoryStream();
// Create a Bitmap object based on a BMP file.
myBitmap = new Bitmap(currentImage);
if (currentImage.Width < maxSize.Width && currentImage.Height < maxSize.Height)
return myBitmap;
if (myBitmap.HorizontalResolution > 72.0f || myBitmap.VerticalResolution > 72.0f)
myBitmap.SetResolution(72.0f, 72.0f);
Size compressedImageSize = new Size();
compressedImageSize = ResizeToBound(new Size(myBitmap.Width, myBitmap.Height), maxSize);
Bitmap compressedBitmap = new Bitmap(myBitmap, compressedImageSize);
myBitmap.Dispose();
// Get an ImageCodecInfo object that represents the JPEG codec.
myImageCodecInfo = GetEncoderInfo(mimeType);
// for the Quality parameter category.
myEncoder = Encoder.Quality;
// EncoderParameter object in the array.
myEncoderParameters = new EncoderParameters(1);
// Save the bitmap as a JPEG file with quality level 75.
myEncoderParameter = new EncoderParameter(myEncoder, 75L);
myEncoderParameters.Param[0] = myEncoderParameter;
compressedBitmap.Save(stream, myImageCodecInfo, myEncoderParameters);
compressedBitmap.Dispose();
compressedBitmap = new Bitmap(stream);
return compressedBitmap;
}
这是GetEncoder助手函数
public static ImageCodecInfo GetEncoderInfo(String mimeType)
{
mimeType = mimeType.ToLower();
if (mimeType.Contains("jpg"))
mimeType = mimeType.Replace("jpg", "jpeg");
int j;
ImageCodecInfo[] encoders;
encoders = ImageCodecInfo.GetImageEncoders();
for (j = 0; j < encoders.Length; ++j)
{
if (encoders[j].MimeType == mimeType)
return encoders[j];
}
return null;
}
这是ResizeToBound辅助函数。
public static Size ResizeToBound(Size image, Size boundingBox)
{
double widthScale = 0, heightScale = 0;
if (image.Width != 0)
widthScale = (double)boundingBox.Width / (double)image.Width;
if (image.Height != 0)
heightScale = (double)boundingBox.Height / (double)image.Height;
double scale = Math.Min(widthScale, heightScale);
Size result = new Size((int)(image.Width * scale),
(int)(image.Height * scale));
return result;
}
答案 0 :(得分:0)
将JPEG图像添加到PDF文件时,这些JPEG图像通常会按原样添加,不做任何修改(通常将JPEG文件不加修改地复制到PDF文件中)。
如果PDFsharp无法获取原始JPEG文件,则将使用无损压缩添加图像。
您将图像存储在MemoryStream
中,然后再将其读入Bitmap
。这可能会阻止PDFsharp访问原始JPEG数据。只是一个疯狂的猜测 - 你提供的代码片段没有明确的答案。
创建临时JPEG文件并将文件名传递给PDFsharp会比较慢,但应该会导致文件更小。也许这也可以用MemoryStreams完成,但是没有看到你的代码实际上将图像添加到PDF中,这很难说。