Render PDF / Web Document in Pharo

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Render PDF / Web Document in Pharo

Sean P. DeNigris
Administrator
Is it possible to display either in a Morphic world? As a start, even a non-interactive preview would be valuable...

Thanks.
Cheers,
Sean
Reply | Threaded
Open this post in threaded view
|

Re: Render PDF / Web Document in Pharo

Olivier Auverlot
Hi Sean,

For rendering PDF documents, you could use Artefact ( https://sites.google.com/site/artefactpdf/ )

Best regards
Olivier ;-)

Le 4 nov. 2014 à 20:13, Sean P. DeNigris a écrit :

Is it possible to display either in a Morphic world? As a start, even a
non-interactive preview would be valuable...

Thanks.



-----
Cheers,
Sean
--
View this message in context: http://forum.world.st/Render-PDF-Web-Document-in-Pharo-tp4788409.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.


Reply | Threaded
Open this post in threaded view
|

Re: Render PDF / Web Document in Pharo

fstephany
Does artefact support *displaying* PDF in Pharo?

On Tue, Nov 4, 2014 at 11:53 AM, Olivier Auverlot <[hidden email]> wrote:
Hi Sean,

For rendering PDF documents, you could use Artefact ( https://sites.google.com/site/artefactpdf/ )

Best regards
Olivier ;-)

Le 4 nov. 2014 à 20:13, Sean P. DeNigris a écrit :

Is it possible to display either in a Morphic world? As a start, even a
non-interactive preview would be valuable...

Thanks.



-----
Cheers,
Sean
--
View this message in context: http://forum.world.st/Render-PDF-Web-Document-in-Pharo-tp4788409.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.



Reply | Threaded
Open this post in threaded view
|

Re: Render PDF / Web Document in Pharo

Olivier Auverlot
No but with Pharo, I think that's not difficult to launch a PDF viewer at the end of PDF generation process.

Le 4 nov. 2014 à 21:59, François Stephany a écrit :

Does artefact support *displaying* PDF in Pharo?

On Tue, Nov 4, 2014 at 11:53 AM, Olivier Auverlot <[hidden email]> wrote:
Hi Sean,

For rendering PDF documents, you could use Artefact ( https://sites.google.com/site/artefactpdf/ )

Best regards
Olivier ;-)

Le 4 nov. 2014 à 20:13, Sean P. DeNigris a écrit :

Is it possible to display either in a Morphic world? As a start, even a
non-interactive preview would be valuable...

Thanks.



-----
Cheers,
Sean
--
View this message in context: http://forum.world.st/Render-PDF-Web-Document-in-Pharo-tp4788409.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.




Reply | Threaded
Open this post in threaded view
|

Re: Render PDF / Web Document in Pharo

S Krish

embedding a viewer like Java / COM component could be attempted with Native Boost.. that is a framework creation effort. viz in Visualworks:

| acrobatInterface arguments |
  acrobatInterface := COMDispatchDriver createObject: 'AcroExch.AVDoc'.
  arguments := Array new: 10 withAll: 0.
  arguments
    at: 1 put: 'fileName.pdf';
    at: 2 put: self windowHandle;
    at: 3 put: 1.
  acrobatInterface
    invokeMethod: 'OpenInWindowEx'
    withArguments: arguments.
  acrobatInterface inspect

used to work...if in Pharo we can get that capability.. it will be great for Windows apps.. for lot more than just PDF views
It can cover MS Office / IE .. and tons more of capability..



On Wed, Nov 5, 2014 at 12:14 PM, Olivier Auverlot <[hidden email]> wrote:
No but with Pharo, I think that's not difficult to launch a PDF viewer at the end of PDF generation process.

Le 4 nov. 2014 à 21:59, François Stephany a écrit :

Does artefact support *displaying* PDF in Pharo?

On Tue, Nov 4, 2014 at 11:53 AM, Olivier Auverlot <[hidden email]> wrote:
Hi Sean,

For rendering PDF documents, you could use Artefact ( https://sites.google.com/site/artefactpdf/ )

Best regards
Olivier ;-)

Le 4 nov. 2014 à 20:13, Sean P. DeNigris a écrit :

Is it possible to display either in a Morphic world? As a start, even a
non-interactive preview would be valuable...

Thanks.



-----
Cheers,
Sean
--
View this message in context: http://forum.world.st/Render-PDF-Web-Document-in-Pharo-tp4788409.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.