我们正在使用iTextSharp使用C#创建PDF文件。但是当我使用一些PDF编辑器对创建的PDF文件进行编辑时,我无法完美地进行编辑。因为某些编辑后的文本是重叠的,有些是未显示或隐藏的。所以,我想选择其他一些方法来使用iTextSharp创建可编辑的PDF文件。
是否有任何参数(使PDF文档可编辑)在使用iTextSharp构建PDF文件时添加以创建editable PDF files
?
请指导我解决这个问题?
答案 0 :(得分:2)
目前尚不清楚你在寻找什么。
PDF不是用于编辑文本的格式。请阅读“iText in Action”的Chapter 6
简介。 http://www.manning.com/lowagie2/samplechapter6.pdf。
但是,有一种方法可以创建交互式PDF。
浏览到section 6.3.5
,您将了解一种交互式表单:基于AcroForm技术的表单。在section 6.3.5
中,使用OpenOffice创建此类表单。
在chapter 8
中,您将学习如何使用iText创建AcroForm表单。当然:在这种形式中,所有坐标都是固定的。定义了一个矩形,不适合矩形的内容可以按比例缩小(如果font = 0)或剪裁。我想这就是你所描述的,但你不是很清楚。
另一种表单基于XML Forms Architecture
。在这种情况下,PDF用作XML的容器。您可以使用Adobe LiveCycle Designer
创建此类表单。我不知道任何可以在自动化过程中创建此类表单的“库”。 iTextSharp可以以这种形式注入XML来填充它们;我们还有一个名为XFA Worker
的封闭源产品,可以展平XFA表单。
答案 1 :(得分:1)
首先你的问题不是很清楚。 其次,我假设您正在尝试仅使用C#代码创建PDF。
使用Open Office
创建PDF template
的方法可以改善这一点。
然后,在使用模板后,您在模板中创建的可编辑字段中编写。
以下是一些可以帮助您完成的代码:
public class DocumentDownload : PdfTemplateHandler
{
protected override string TemplatePath
{
get { return "~/App_Data/PdfTemplates/MyDocument_2011_v1.pdf"; }
}
protected override void LoadDataInternal()
{
documentType = Request["docType"] != null ? Request["docType"].ToString() : "";
if (uid.Length < 1)
{
Response.Write("Invalid request!");
Response.End();
}
// load data
DownloadFileName = string.Format("MyDocument_{0}_{1}.pdf", 1234, DateTime.Now.ToBinary());
}
protected override void SetFieldsInternal(iTextSharp.text.pdf.AcroFields acroFields)
{
//iTextSharp.text.pdf.BaseFont unicode = iTextSharp.text.pdf.BaseFont.createFont(unicodeFontPath, BaseFont.IDENTITY_H, BaseFont.EMBEDDED);
//var unicodeFont = iTextSharp.text.pdf.BaseFont.CreateFont(iTextSharp.text.FontFactory.TIMES_ROMAN, iTextSharp.text.pdf.BaseFont.IDENTITY_H, iTextSharp.text.pdf.BaseFont.EMBEDDED);
acroFields.SetField("txtrNumber", Number.ToString());
acroFields.SetField("cbTaxi", "Yes");
}
}
public abstract class PdfTemplateHandler : IHttpHandler
{
public virtual bool DownloadAsAttachment
{
get
{
return true;
}
}
protected virtual TimeSpan PdfTemplateCacheDuration
{
get
{
return TimeSpan.FromMinutes(30);
}
}
protected virtual string PdfTemplateCacheKey
{
get
{
return string.Format("__PDF_Template[{0}]", TemplatePath);
}
}
protected string DownloadFileName { get; set; }
protected HttpContext Context { get; private set; }
protected HttpResponse Response { get; private set; }
protected HttpRequest Request { get; private set; }
#region IHttpHandler Members
public bool IsReusable
{
get { return false; }
}
public void ProcessRequest(HttpContext context)
{
Context = context;
Response = context.Response;
Request = context.Request;
try
{
LoadDataInternal();
}
catch (ThreadAbortException)
{
// no-op
}
catch (Exception ex)
{
//Logger.LogError(ex);
Response.Write("Error!");
Response.End();
}
Response.BufferOutput = true;
Response.ClearHeaders();
Response.ContentType = "application/pdf";
if (DownloadAsAttachment)
{
Response.AddHeader("Content-Disposition", "attachment; filename=" +
(string.IsNullOrEmpty(DownloadFileName) ? context.Session.SessionID + ".pdf" : DownloadFileName));
}
PdfStamper pst = null;
try
{
PdfReader reader = new PdfReader(GetTemplateBytes());
pst = new PdfStamper(reader, Response.OutputStream);
var acroFields = pst.AcroFields;
pst.FormFlattening = true;
pst.FreeTextFlattening = true;
pst.SetFullCompression();
SetFieldsInternal(acroFields);
pst.Close();
}
finally
{
if (pst != null)
pst.Close();
}
}
#endregion
#region Abstract Members for overriding and providing functionality
protected abstract string TemplatePath { get; }
protected abstract void LoadDataInternal();
protected abstract void SetFieldsInternal(AcroFields acroFields);
#endregion
protected virtual byte[] GetTemplateBytes()
{
var data = Context.Cache[PdfTemplateCacheKey] as byte[];
if (data == null)
{
data = File.ReadAllBytes(Context.Server.MapPath(TemplatePath));
Context.Cache.Insert(PdfTemplateCacheKey, data,
null, DateTime.Now.Add(PdfTemplateCacheDuration), Cache.NoSlidingExpiration);
}
return data;
}
protected static string unicode_iso8859(string src)
{
Encoding iso = Encoding.GetEncoding("iso8859-2");
Encoding unicode = Encoding.UTF8;
byte[] unicodeBytes = unicode.GetBytes(src);
return iso.GetString(unicodeBytes);
}
protected static string RemoveDiacritics(string stIn)
{
string stFormD = stIn.Normalize(NormalizationForm.FormD);
StringBuilder sb = new StringBuilder();
for (int ich = 0; ich < stFormD.Length; ich++)
{
UnicodeCategory uc = CharUnicodeInfo.GetUnicodeCategory(stFormD[ich]);
if (uc != UnicodeCategory.NonSpacingMark)
{
sb.Append(stFormD[ich]);
}
}
return (sb.ToString().Normalize(NormalizationForm.FormC));
}
}
PDF模板可缓存。调试时请记住这一点。