带有底部边框的图形用于捕获签名

带有底部边框的图形用于捕获签名

我正在使用 pdflatex 生成 PDF 文档,其中包含使用 Inkscape 预先转换为 pdf 的签名图像。

当前模板如下所示({{ tags }} 是 django 模板标签):

\noindent \begin{tabular}{l l l}
CUSTOMER: &   \includegraphics[width=6cm,height=1.5cm,keepaspectratio]{{ customer_sig2 }} & Date: {% now "SHORT_DATE_FORMAT" %}\\
                         & {{ qb_full_name|upper }}      & \\
REP:          & \includegraphics[width=6cm,height=1.5cm,keepaspectratio]{{ rep_sig2 }}  & Date:  {% now "SHORT_DATE_FORMAT" %}\\
                         & {{ qb_rep_name|upper }}
\end{tabular}

下面是我目前拥有的和我需要的粗略示例(链接):

https://i.stack.imgur.com/v1G30.gif

签名图像是使用 Inkscape 从 svg base64 数据创建为 PDF 的。Inkscape 似乎会自动裁剪到最近的边缘。这是从 python 调用的,没有太多选项 -x = Popen(['/usr/bin/inkscape', tmpfile.name, '--export-pdf=%s' % pdf.name])

我怎样才能在乳胶中最好地重新创建示例图像?

编辑:

当前签名是在 Przemyslaw 的帮助下,使用以下代码(显示页面底部和左右边距):

\noindent \begin{tabular}{lc}
CUSTOMER: & \includegraphics[height=1.35cm,width=6.1cm,keepaspectratio]{{ customer_sig2 }}\\
\cline{2-2}
 & \multicolumn{1}{r}{\rule{0mm}{4mm} Date: {% now "SHORT_DATE_FORMAT" %} }
 \end{tabular}
 \hfill \begin{tabular}{lr}
 REP: & \includegraphics[height=1.35cm,width=6.5cm,keepaspectratio]{{ rep_sig2 }}\\
\cline{2-2}
& \multicolumn{1}{r}{\rule{0mm}{4mm} Date: {% now "SHORT_DATE_FORMAT" %} }
\end{tabular}

编辑后的签名

仅供参考 - 我正在使用 jSignature 插件来捕获签名..标准框尺寸为 378x95px 签名被图像高度向下推的示例(这应该是固定宽度并保持纵横比,没有指定固定高度,请参阅 hrule 了解 rep 签名被向下推了一点):

签名已下推

答案1

快速解决方案,更改图片:

\documentclass{article}

\usepackage[draft]{graphicx}
\usepackage{url}

\begin{document}

\noindent \begin{tabular}{l l l}
CUSTOMER: &   \includegraphics[width=6cm,height=1.5cm,keepaspectratio]{at} & Date: \\%{% now "SHORT_DATE_FORMAT" %}\\
                         & {\url{ qb_full_name|upper }}      & \\
\end{tabular}
\begin{tabular}{l l l}
REP:          & \includegraphics[width=6cm,height=1.5cm,keepaspectratio]{at}  & Date:  \\%{% now "SHORT_DATE_FORMAT" %}\\
                         & {\url{ qb_rep_name|upper }}
\end{tabular}


\bigskip
Second version:
\bigskip

\noindent \begin{tabular}{lc}
CUSTOMER: &   \includegraphics[width=5cm,height=1.5cm]{at}\\
\cline{2-2}
 & \multicolumn{1}{r}{ Date: 05/23/2013}
\end{tabular}
\hspace{1mm}
\begin{tabular}{l c}
REP:          & \includegraphics[width=6cm,height=1.5cm]{at}\\
\cline{2-2}
  & \multicolumn{1}{r}{\rule{0mm}{4mm} Date: 05/23/2013}
\end{tabular}


\end{document}

一行两个表格。url下划线字符的包。周围的框架。png 是一张图片。我已删除keepaspectratio以显示的行为Date: 05/23/2013,其中一个带有深度校正。

在此处输入图片描述

相关内容