MyBB Community Forums

Full Version: embed jpg or pdf in thread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey there,

is it possible to embed an attached pdf or jpg in a mybb thread?

Greets,
Phileas
You can embed PDF in posts with simple MyCodes.

Title:
Embed PDF

Short Description:
Embed PDF documents in posts

Regular Expression:
\[pdf\](.*?)\[/pdf\]

Replacement:
<div id="pdf" style="width: 90%; height: 300px; margin: auto auto; border: 1px solid #AAA;">
<object data="$1#toolbar=1&amp;navpanes=0&amp;scrollbar=1&amp;page=1&amp;view=FitH" type="application/pdf" width="100%" height="100%">
<p>It appears you don't have a PDF plugin for this browser. <a href="$1">click here to download the PDF file.</a></p>
</object>
</div>

(Note: Not tested, but it should work) ...
For Jpg you could do [img][/img]
(2014-07-07, 11:39 AM)effone Wrote: [ -> ]Replacement:
<div id="pdf" style="width: 90%; height: 300px; margin: auto auto; border: 1px solid #AAA;">
<object data="$1#toolbar=1&amp;navpanes=0&amp;scrollbar=1&amp;page=1&amp;view=FitH" type="application/pdf" width="100%" height="100%">
<p>It appears you don't have a PDF plugin for this browser. <a href="$1">click here to download the PDF file.</a></p>
</object>
</div>

(Note: Not tested, but it should work) ...

You could even use pdf.js to show them inline, removes the need for any plugins.