[AccessD] Microsoft Office Document Image Writer

MartyConnelly martyconnelly at shaw.ca
Sun Feb 20 13:15:03 CST 2005


If you want to display from Access and you have Lizardtext viewer 
installed in IE
The code below will display in an new IE screen..
I guess if you want to use Office automation you will need to wait for 
MS to produce a graphical filter.
LizardTech has a Windows scanner product for document management 
Document Express that will convert
Windows Word documents to djvu. $400. You need the enterprise edition 
for PDF conversion
There is a freebie conversion site
http://any2djvu.djvuzone.org/

I still have to figure out what is going on with  
JPEG2000/Part6, JPM-style PDF and JBIG2: ISO standard-compliant document 
compression.


'testIEDisplayDJVU "C:\GIS\DJVU\dsdk-reference-manual.djvu"

Sub testIEDisplayDJVU(strDJVUfile As String)

'http://www.microsoft.com/technet/treeview/default.asp?url=/technet/scriptcenter/logs/scrlog08.asp
'If you add a reference to "Microsoft Internet Controls"
'(SHDOCVW.DLL) you should be able to do:
'Public IE as .... and find "InternetExplorer" in the popup menu.
'So then you have what you wrote, which is early-bound,
'and you can use that as follows:
'   Public IE As InternetExplorer
'   Set IE = New InternetExplorer

Dim objExplorer As Object
Dim objDocument As Object

Set objExplorer = CreateObject("InternetExplorer.Application")

objExplorer.Navigate "about:blank"
objExplorer.Toolbar = False
objExplorer.StatusBar = False
objExplorer.MenuBar = True
objExplorer.FullScreen = False
objExplorer.AddressBar = False
'set screen size
objExplorer.Width = 800
objExplorer.Height = 570
objExplorer.Left = 0
objExplorer.Top = 0
objExplorer.Visible = 1

objExplorer.Navigate strDJVUfile '"C:\GIS\DJVU\dsdk-reference-manual.djvu"

Do While (objExplorer.Busy)
Loop

Set objExplorer = Nothing
Set objDocument = Nothing

End Sub


Gustav Brock wrote:

>Hi all
>
>For those who wish to play with DjVu files at once, I located this
>small shareware app.
>It works at once.
>I scanned at typical text page in b/w which saves as 1 MB in bmp
>format, gif at 75 K, jpeg lowest quality at 100 K while it was only 7 K
>in djvu format.
>
>Also, I noticed that IrfanView is capable of displaying this format.
>
>/gustav
>
>ftp://ftp.simtel.net/pub/simtelnet/win95/compress/djvuerin.zip 1658795
>bytes
>
>djvuerin.zip    Produce higher quality, small sized web images
>
>DjVuer (pronounced day-ja-voo-er), is based on the revolutionary DjVu
>image compression technology developed by AT&T Labs.  DjVuer is the
>Windows 95/98/NT desktop version of DjVu, that provides high
>resolution
>small-size images over the web.  DjVuer delivers high-quality, small
>sized images in less time over the Web.  With DjVuer, digital
>photographers and content developers can scan high-resolution color
>photos, pages of books, magazines, catalogs, manuals, historical or
>ancient documents, and make them available on the Web in rich detail.
>Scanned images can be compressed at ratios as high as 1000: 1. 
>Scanned
>pages at 300 DPI in full color can be compressed down to a mere 30 to
>60KB files from 25MB with excellent quality.
>
>Special requirements: None.
>
>Shareware.
>
>Dushy Edrisinghe, Feith Systems and Software, Inc.
>dushy at feith.com 
>
>  
>

-- 
Marty Connelly
Victoria, B.C.
Canada






More information about the AccessD mailing list