- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题:
使用 PDFBox,如何创建具有“鼠标悬停”颜色效果(也称为滚动/鼠标悬停)的链接注释?
这意味着当我将鼠标光标悬停在 PDF 文件中的链接上时(没有单击它),该链接会变为不同的颜色。如果我将鼠标移开,链接会变回原来的颜色。
例如:
我正在寻找的效果类似于 stackoverflow 网站上的链接。当您将鼠标光标悬停在(不单击)“提问”按钮上时,链接会从灰色变为橙色。当您将光标移开时,颜色会变回灰色。例如,请参见下图:我想在 PDF 文件中实现完全相同的效果。
我尝试过的:
在PDF Reference Sixth Edition中,是这样描述的:
the rollover appearance is used when the user moves the cursor into the annotation’s active area without pressing the mouse button"
和
[rollover appearance] are defined in an appearance dictionary, which in turn is the value of the AP entry in the annotation dictionary
此外,
在PDFBox中,有一个PDAppearanceDictionary
类,它有一个setRolloverAppearance()
方法。
这是我能到达的最远的地方。我不知道如何将 PDAppearanceDictionary
类(如果这确实是正确的类)与 PDAnnotationLink
类结合使用,以达到我想要的结果。
我曾尝试在 Google 上查找示例,但没有成功。
最佳答案
简而言之
对于这种翻转效应是否可能存在一些不确定性。使用最新的 Adobe PDF 查看器(Reader XI 和 Acrobat 9.5)进行显示,链接注释没有出现所需的翻转效果。不过,对于按钮小部件(带有相同的 URL 操作),效果确实出现了。
详细
test code将自定义为按钮的 PDAnnotationLink
或 PDAnnotationWidget
提供给一种方法,该方法将相应的注释嵌入文档并为其添加正常和翻转外观:
void createRollover(PDAnnotation annotation, String filename) throws IOException, COSVisitorException
{
PDDocument document = new PDDocument();
PDPage page = new PDPage();
document.addPage(page);
List<PDAnnotation> annotations = page.getAnnotations();
float x = 100;
float y = 500;
String text = "PDFBox";
PDFont font = PDType1Font.HELVETICA_BOLD;
float textWidth = font.getStringWidth(text) / 1000 * 18;
PDPageContentStream contents = new PDPageContentStream(document, page);
contents.beginText();
contents.setFont(font, 18);
contents.moveTextPositionByAmount(x, y);
contents.drawString(text);
contents.endText();
contents.close();
PDAppearanceDictionary appearanceDictionary = new PDAppearanceDictionary();
PDAppearanceStream normal = createAppearanceStream(document, textWidth, font, "0.5 0.5 0.5 rg");
PDAppearanceStream rollover = createAppearanceStream(document, textWidth, font, "1 0.7 0.5 rg");
PDAppearanceStream down = createAppearanceStream(document, textWidth, font, "0 0 0 rg");
appearanceDictionary.setNormalAppearance(normal);
appearanceDictionary.setRolloverAppearance(rollover);
appearanceDictionary.setDownAppearance(down);
annotation.setAppearance(appearanceDictionary);
PDRectangle position = new PDRectangle();
position.setLowerLeftX(x);
position.setLowerLeftY(y - 5);
position.setUpperRightX(x + textWidth);
position.setUpperRightY(y + 20);
annotation.setRectangle(position);
annotations.add(annotation);
document.save(new File(RESULT_FOLDER, filename));
document.close();
}
在 PDAnnotationLink
的情况下:
如果是按钮 PDAnnotationWidget
:
背景:
他的问题中的 OP 和评论中的@Tilman 提到了 PDF 规范:
An annotation may define as many as three separate appearances: [...]
• The rollover appearance shall be used when the user moves the cursor into the annotation’s active area without pressing the mouse button. [...]
The normal, rollover, and down appearances shall be defined in an appearance dictionary, which in turn is the value of the AP entry in the annotation dictionary
因此,认为:
So it should be possible
不过,他们没有考虑到规范将外观字典引入为:
AP dictionary (Optional; PDF 1.2) An appearance dictionary specifying how the annotation shall be presented visually on the page (see 12.5.5, “Appearance Streams”). Individual annotation handlers may ignore this entry and provide their own appearances.
因此,如果 PDF 查看器中的注释处理程序具有有自己的想法。
tl;dr:完全由相关 PDF 查看器来决定它使用哪些外观流以及忽略哪些外观流并以自己的方式替换。
如果使用注释外观流,则应始终确保在忽略给定外观的情况下也提供最有可能使用的信息,例如在链接注释下方包含常规页面内容。
关于java - 在PDFBox中,如何创建带有 "rollover"/"mouse over"效果的链接注释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28144941/
我想检测 Area2D 内的鼠标单击(并按住),然后检测 Area2D 内部或外部的鼠标释放。 这是我目前所拥有的: extends Area2D #PickArea func _input_even
鼠标上的以下按钮在哪里? 编辑: jack 回答后,我在括号中添加了位置。 mouse-1(向左按钮) mouse-2(单击车轮按钮/中间按钮) mouse-3(右键) mouse-4(振铃) mou
这是我的问题;我正在尝试显示“标记”,并在鼠标悬停/移出/单击上进行一些操作。 问题是,根本没有任何事件在over上触发,当在控制台中单击(向下)时,我收到了一些反馈,但不是每个元素的反馈说(目标==
我将从 Textmate 切换到 SublimeText 2。 在 TextMate 中,只需单击行号即可用鼠标为该行添加书签。我这样做已经很多年了,虽然我确信有些人可能更喜欢键盘快捷键,但我不是其中
如何在JavaScript中获取“mouse key up”的按键代码? 如果我按下鼠标左键,那么键码就是一个。 我想在 onmousekeyup 时触发一些代码。但是只要鼠标按下键,这段代码就不会触
我想要实现的是,我想让它像星级评定一样工作。当你进入鼠标时,星星变成黄色,当你离开鼠标时,它变成灰色,然后如果你再次点击它变成黄色。 不知道如何实现它,我添加了代码来向您展示我到目前为止所做的尝试。
我刚刚发现:set mouse=a .令人惊奇的是,它允许我的同事滚动浏览我的 openend 文件。 但事情是这样的:当我左键单击某处时,我真的不希望光标移动。我不想要 :set mouse=a 的
我正在使用官方 highcharts 包装器进行 react 以生成甘特图。我试图从鼠标悬停事件中获取鼠标坐标并将其用于自定义工具提示,但坐标不精确。 例子: https://stackblitz.c
我在 reactjs 上创建了一个简单的组件(一种值选择器:plunker) 现在,我希望隐藏控件的上部和下部 (opacity=0) 并在用户将鼠标悬停在中央 时动画化为 opacity=1 >di
我正在编写一个测试,它在Cuprite::Ferrum上运行,我需要在其中单击一个元素,并将其拖放到页面上另一个元素的下方。当我手动操作时,它工作得很好,但当我尝试将其放在测试中时,它几乎可以工作,但
I want to record mouse and keyboard simultaneously and replay them later. When MIDDLE MOUSE is pr
我为 3d 射击游戏添加了主要用户对象,为其附加了摄像头,并试图在脚本代码中捕捉鼠标移动,附加到玩家游戏对象。但是不能使用Input.GetAxis("Mouse X")、Input.GetAxis(
我是 Unity 脚本的新手,我正在尝试制作 ThirdPersonCamera,所以关注 this tutorial他可以正确上下左右移动鼠标 使用的脚本是 posY += Input.GetAxi
Fotorama slider : slider 设置为 Autoplay="true",效果很好。如何让 slider 在鼠标悬停时暂停,然后在鼠标移开时恢复自动播放?这是我的代码: 最佳答案 v
我在 Windows 窗体中有一个 TreeView 。当我左键单击 TreeView 中的一个节点时,e.Node 显示正确的值,但是当我右键单击同一节点时,e.Node 在 trreview Af
是涉及到寄存器还是缓存内存相关? 我的问题的说明性示例可能很简单,我将鼠标移过我当前正在输入的屏幕。我不点击任何东西,我只是将箭头从左到右、上下移动。 CPU 如何处理鼠标相对于显示器显示的瞬时位置变
用户可以使用一个非常简单的工具(在按住 LMB 的同时移动鼠标)在我的应用程序中绘制草图。这会导致一系列 mousemove 事件,我会在每个事件中记录光标位置。生成的折线曲线往往相当密集,几乎每隔一
我有一些新手问题。 在我的应用程序 (processingjs) 中,我使用 scale() 和 translate() 来允许用户缩放和滚动场景。只要我将比例设置为 1.0,我就没有问题。但是每当我
我正在寻找一个在 XP/Vista/7 中工作的全局鼠标钩子(Hook),它允许我访问鼠标输入的 X、Y 值,并在它们到达 Windows 之前修改这些值...... 我还希望能够在实际鼠标输入之间模
我正在使用mousejoint来拖动box2d中的物体,但这会导致惯性延迟。 是否存在即时拖动 body 的任何方式? 最佳答案 解决方案是在b2MouseJointDef中调整属性frequency
我是一名优秀的程序员,十分优秀!