Split all PDFs of a given Path into single Page PDFs

User with the Enterprise License can use the Aloaha Scripting APIs as explained on:
http://www.aloaha.com/software-development/pdf-sdk.php

To splitt all multipage PDFs of a given path requires only 3 lines of code:
(http://www.aloaha.com/software-development/freeware-apis.php)

 

Set pdf = CreateObject(“aloahapdf.edit”)

                              Call pdf.split_pdf_in_dir(CStr(“c:\tosplit”))

Set pdf = nothing

 

If you need only to extract some specific pages of a given document you should also try the portable Aloaha PDF Reader:

http://blog.aloaha.com/2012/05/03/aloaha-releases-one-of-the-worlds-smallest-portable-pdf-viewer/

 

 


Aloaha releases one of the worlds smallest portable PDF Viewer!

Aloahas portable PDF Reader has a compressed footprint of just 1,4 MB and as such would fit on a small old Floppy Disk.

The PDF Viewer does not require any installation nor any Admin rights! It can be downloaded HERE or from http://dl.dropbox.com/u/20338532/neverdelete/PDFViewer/AloahaPDFViewer.zip. Just start it from the downloaded zip file!

Pleaes note the the portable Aloaha PDF Reader is standalone and does not require any installation. Additionally it is also included in Aloahas PDF Suite.

Features: 

  • Multi-Threaded Page rendering – supports modern multi core machines.
  • Works completly in memory so no PDF leftovers in %temp% for extra security.
  • Secure – do not get infected with viruses and keep sensitive information safe.
  • Tiny Footprint – eliminate bloatware and help your computer run faster! No installation required!
  • Decrypts encrypted PDFs. (PDF Password Remover) (license required)
  • Opens Images as PDF. (Image2PDF / Image to PDF)
    http://www.aloaha.com/software-development/image-2-pdf.php
  • Copy page as image to clipboard.
  • Copy page as ASCII Text to clipboard. (PDF2TXT / PDF to Text)
    http://www.aloaha.com/software-development/pdf2txt.php
  • Open RichtText *.rtf directly as PDF! (rtf2pdf)
  • Add RichText directly to PDF (Richtext2PDF / Text2PDF)
  • Copy text selection as ASCII Text to clipboard.
  • Read out loud page or selection. (TTS)
  • Save page as HTML. (PDF2HTML / PDF to HTML)
  • Save page as Image. (PDF2Image / PDF to Image)
  • Append PDF Document / insert PDF Document.
    http://www.aloaha.com/software-development/append-pdf.php
  • Append Images to PDF / insert Images into PDF Document. (img 2 pdf)
  • Place images on PDF pages. (Stamp Image on PDF)
  • Extract single page of multipage pdf to a file.
    http://blog.aloaha.com/2012/05/10/split-all-pdfs-of-a-given-path-into-single-page-pdfs/
  • Insert PDF Attachment in Page and adding PDF Attachment to Document.
    http://www.aloaha.com/software-development/pdf-attachments.php
  • Multi-Threaded print page/print document.
  • Delete page from PDF without Software installation.
  • Very fast – read PDF files without waiting and without having to install Software.
  • Incl. PDF Batch Print Processor for instant commandline printing/pdf batch printing.
  • Bookmarking.
  • Easy navigation via double click, page up/down, scroll wheel, etc.
  • Keyboard control – all frequently used actions can be done with keyboard only.
  • Easy to use – keyboard shortcuts, intuitive interface, page thumbnail images, …
  • PDF Reader also available as .NET component for your own projects!

All the features above are available as royalty free .NET PDF SDK/Component. Please contact us at info@aloaha.com for further information!

PDF Batch Print Processor:

Just call the PDF Viewer with the “print” option and Aloaha will print the PDF directly to the default printer. For example: c:\> PDFViewer -print “c:\PDF Documents\Invoice1.pdf”
The commercial version will also allow to specify the printer via command line parameter!

Requirements:

  • .NET Framework min. 2.0 required
  • XP, 2003, 2008, 2008r2, Vista, W7 and also W8. All in 32 and 64 Bit mode.

Contact:

Please send feature requests to info@aloaha.com
Aloaha portable PDF Viewer Screenshot

Aloaha portable PDF Viewer

 

Pad File and HTML Pad


Freeware fuer die eGK

Aloaha hat gerade ein kleines freeware Tool zum Betrachten der neuen Gesundheitskarte eGK freigegeben. Das Tool benoetigt keinerlei Installation und kann von http://www.aloaha.com/download/HealthCardViewer.zip geladen und gestartet werden. Natuerlich koennen auch alte KVKs gelesen werden.



Convert .doc/.docx documents directly to PDF via Aloaha API

Here a small code sample to explain how to convert directly a .doc/.docx/.rtf file to PDF.

dim pdf
Set pdf = CreateObject(“AloahaPrinterControl.Control”)
MsgBox pdf.PrintFile2Aloaha(“c:\test.doc”)
set pdf = nothing

 

Requirements:

  • MS Winword must be installed
  • Aloaha PDF Suite (http://www.aloaha.com/download/aloaha_pdf.zip)
  • Aloaha Server License

 Attention: Now direct conversion of .rtf documents to PDF with the Aloaha PDF Reader! The PDF Viewer is included in the Aloaha PDF Suite!


Deutsche Gesundheitskarte auslesen

Mit dem Aloaha Cardconnector ist es moeglich die neue deutsche Gesundheitskarte (eGK) auszulesen. Der Cardconnector bringt dazu eine Reihe, einfach zu benutzender, Schnittstellen mit. Sie brauchen dazu nur das Aloaha COM Object HealthData.hdclass zu referenzieren. Zum Beispiel mit: set hd = CreateObject(“HealthData.hdclass”)

Es gibt auf der Karte 3 Datensaetze

  1.  EF.PD (Personendaten)
  2.  EF.VD (Versichertendaten)
  3.  EF.GVD (Geschuetzte Versichertendaten)

 

Die XML Daten koennen Sie mit wenigen Zeilen auslesen:

Dim hd
dim record         ‘possible from 1 to 3 (3 PIN Protected)


record=1            ’EF.PD
Set hd = CreateObject(“HealthData.hdclass”)
MsgBox hd. XMLRecord(record)


Set hd = Nothing

 

Sie koennen aber auch ganz geziehlt Werte abfragen und diese als Komma separierte Liste auslesen:

Dim hd
dim record      ’possible from 1 to 3 (3 PIN Protected)
dim filter

filter=”Kostentraeger|Name,AbrechnenderKostentraeger|Kostentraegerkennung”

record=2
Set hd = CreateObject(“HealthData.hdclass”)

‘display default filter
msgbox hd.FilterCSV(record)

‘set new filter
hd.FilterCSV(record)=filter

MsgBox hd.RecordCSV(record)
Set hd = Nothing

 

Aber auch das direkte Auslesen eines Wertes ist moeglich:

Dim hd
dim record ‘possible from 1 to 3 (3 PIN Protected)

record=3
Set hd = CreateObject(“HealthData.hdclass”)

‘Read Value from first Reader (0)
MsgBox hd.RecordCSV(record,0,”Gueltig_bis”)
Set hd = Nothing

 

Es gibt auch eine kleine lizenzfreie GUI zur Abfrage:

 

Health Card Browser

Health Card Browser

 

Der Cardconnector kann von http://www.aloaha.com/download/cardconnector.zip geladen und installiert werden. Eine gueltige evaluation API Lizenz koennen Sie bei info@aloaha.com erhalten.

Die GUI benoetigt zwar den installierten Cardconnector aber KEINE Lizenz. Download hier: Aloaha Health Card Browser eGK GUI

 



This API can read new Health Cards (eGK) and also old KVK cards! When reading old KVK Cards please note:
Please make sure that when you are using an HID/Omnikey Reader that you install the Sync API additionally to the reader driver. When using SCM Microsystems Reader you need to make sure that the MCARD API has been installed additionally to the reader driver!


Definition eines Standard-Speicherordner

Haeufig werden wir gefragt ob man in der Aloaha PDF Suite einen Standard-Speicherordner definieren kann. Standardmaessig merkt sich Aloaha den letzten Speicherort. Wenn Aloaha jedoch bei jedem Speichern einen definierten Ordner benutzen soll koennen Sie das in HKLM\SOFTWARE\Aloaha\pdf\ForcedInitialSaveDir definieren.


Aloaha PDF Signator Video


Windows 8

Screenshots of Windows 8 with Aloaha Smartcard Connector and Credential Provider installed



  • RSS Aloaha on Twitter

  • Copyright © 1996-2012 Aloaha Software. All rights reserved.
    RSS Feed
    Powered by WordPress