• 28 Oct

    How-To Split a multipage PDF into single pages using Pascal Script

    Dear users,

    Regarding v2019.10.28.0

    We’ve added a Pascal Script Function that will let you split a multipage pdf file into single page pdf files.

    Don’t forget to adjust the ctOutputFolder in the script.

    – psPdfSplitPages function will split a multipage pdf to single pdf pages

    Function psPdfSplitPages(SourceFile, DestinationFolder: String; PadLength: Integer): Boolean;

    PadLength: 0 = automatic

    i.e.

    Const
      ctOutputFolder = 'C:\Test\Out_PDF\';
    Begin
      psExitCode:= 0;
      // ... add your code here
      If psPdfSplitPages(psFilePath + psFileName, ctOutputFolder, 0) Then
      Begin
        psExitCode:= 1;
        psLogWrite(1, '', psFilePath + psFileName + ' Split Success');
      End
      Else
        psLogWrite(1, '', psFilePath + psFileName + ' Split Error');
    End.

    If you need any help, just let us know.

    Regards,
    Limagito Team

    By Limagito-Team PDF , ,
  • 27 Oct

    UNZIP Decompression formats

    Dear Users,

    Regarding LimagitoX v2019.10.27.0

    On request we’ve added support for some extra Decompression formats. Automatic conversion of non allowed (Unix) char in packed files and folders to underscores was also added. To achieve this we are using the famous 7z.dll. The dll (v16.04) and License file 7z.License.txt were added to the installer.

    Supported decompression formations (according to 7z docu):

    BZ2
    Rar
    Arj
    Z
    Lzh
    7z
    Cab
    Nsis
    Lzma
    Lzma86
    Pe
    Elf
    Macho
    Udf
    Xar
    Mub
    Hfs
    Dmg
    Compound
    Wim
    Iso
    Bkf
    Chm
    Split
    Rpm
    Deb
    Cpio
    Tar
    GZip
    Xz
    Ntfs
    Fat
    Mbr
    Vhd
    Mslz
    Flv
    Swf
    Swfc
    APM
    Ppmd
    TE
    UEFIc
    UEFIs
    SquashFS
    CramFS
    Ext
    VMDK
    VDI
    Qcow
    GPT
    Rar5
    IHex
    Hxs

    Regards
    Limagito Team

    By Limagito-Team ZIP , ,
SEARCH