如何在 Adobe 中以 pdf 形式获取图像字段的路径?
How to get the path of an Image Field in a pdf form, in Adobe?
我正在使用 adobe reader 创建 PDF 表单。我添加了一个图像字段和一个文本框。文本框是只读的,我想用最终用户在图像字段中选择的图像路径填充文本框。以下是我的代码:
var one = this.getField("Image1");
var two = this.getField("Text1");
two.value='The Path';
上面的代码运行正常,但是我不知道要写什么而不是'The Path',来获取所选图像的实际路径最终用户。
P.S.
在 Image1 按钮上有 2 个动作:
鼠标移开(执行Js)
event.target.buttonImportIcon();
On Blur(执行Js)
var one = this.getField("Image1");
var two = this.getField("Text1");
two.value='The Path';
如果我没有正确理解您的请求...假设 Image1 是一个按钮字段,Text1 是一个文本字段,并且您希望所选的图像文件显示为按钮图标,代码如下。 .
var one = this.getField("Image1");
var two = this.getField("Text1");
var doc = app.browseForDoc(); // Allows the user to browse for a file
var docPath = doc.cPath; // gets the file path of the selected file
one.buttonImportIcon(docPath); // uses the selected path to import the image as the "normal" or "up" button icon
two.value = docPath; // set the value of the text field to the selected device independent path
我正在使用 adobe reader 创建 PDF 表单。我添加了一个图像字段和一个文本框。文本框是只读的,我想用最终用户在图像字段中选择的图像路径填充文本框。以下是我的代码:
var one = this.getField("Image1");
var two = this.getField("Text1");
two.value='The Path';
上面的代码运行正常,但是我不知道要写什么而不是'The Path',来获取所选图像的实际路径最终用户。
P.S.
在 Image1 按钮上有 2 个动作:
鼠标移开(执行Js)
event.target.buttonImportIcon();
On Blur(执行Js)
var one = this.getField("Image1"); var two = this.getField("Text1"); two.value='The Path';
如果我没有正确理解您的请求...假设 Image1 是一个按钮字段,Text1 是一个文本字段,并且您希望所选的图像文件显示为按钮图标,代码如下。 .
var one = this.getField("Image1");
var two = this.getField("Text1");
var doc = app.browseForDoc(); // Allows the user to browse for a file
var docPath = doc.cPath; // gets the file path of the selected file
one.buttonImportIcon(docPath); // uses the selected path to import the image as the "normal" or "up" button icon
two.value = docPath; // set the value of the text field to the selected device independent path