Hello,
A) I thought that should be no problem in the PDF format by adding within a 'stream ... endstream' section(Of course the rectangle would need to span the page size and have the right color):
Code: Select all
[] 0 d % Reset dash pattern to a solid line
1 w % Reset line width to 1 unit
% Draw a rectangle with a 1−unit red border, filled with light blue.
1.0 0.0 0.0 RG % Red for stroke color
0.5 0.75 1.0 rg % Light blue for fill color
200 300 50 75 re
B
B) Later PDF specifications allow a page object to contain a 'Trans' entry for page transitions during display:
Code: Select all
10 0 obj
<< /Type /Page
/Parent 4 0 R
/Contents 16 0 R
/Trans << /Type /Trans
/S /Fade % can also be Split, Blinds, Box, Wipe, Dissolve, Glitter, R, Fly, Push, Cover, Uncover
/D 3.5 % 3.5 seconds duration
>>
>>
endobj
It doesn't really help if I can select the transition in a PDF
Viewer, as everyone in a different viewer could not see these transitions...
Let me know what you think, Cheers,
Thorsten