Showing posts with label pdf. Show all posts
Showing posts with label pdf. Show all posts

Friday, 2 June 2017

Coolutils Total PDF Converter 5 1 74 Final

Coolutils Total PDF Converter 5 1 74 Final


Total PDF Converter adalah software for converts file PDF to DOC, RTF, XLS, HTML, BMP, JPEG, GIF, WMF, EMF, PNG, EPS, PS, TIFF, TXT, CSV.



How to Activation
  • Install Coolutils PDF Converter
  • Run
  • Click menu Help - Enter registration
  • Enter serial
  • enjoy
 Download Coolutils Total PDF Converter 5.1.74 Final
------------------------------------------------------------------------------------
Download
Coolutils Total PDF Converter 5.1.74 Final
File Type : Rar
Size : 32.14 MB

Download

>>DOWNLOAD HERE<<
{ Read More }


Wednesday, 31 May 2017

Create PDF using PdfDocument

Create PDF using PdfDocument



android.graphics.pdf.PdfDocument enables generating a PDF document from native Android content. This example show how to create a two page PDF file using PdfDocument, store as "/sdcard/test.pdf". Then use last example Display PDF using PdfRenderer to view it.

(remark: if you use last example to view the PDF file, you have to change targetPdf = "/sdcard/test.pdf".)


MainActivity.java
package com.blogspot.android_er.androidcreatepdf;

import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.pdf.PdfDocument;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;

public class MainActivity extends AppCompatActivity {

Button btnCreate;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

btnCreate = (Button)findViewById(R.id.create);
btnCreate.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
createPdf();
}
});

}

private void createPdf(){
// create a new document
PdfDocument document = new PdfDocument();

// crate a page description
PdfDocument.PageInfo pageInfo =
new PdfDocument.PageInfo.Builder(100, 100, 1).create();

// start a page
PdfDocument.Page page = document.startPage(pageInfo);

Canvas canvas = page.getCanvas();

Paint paint = new Paint();
paint.setColor(Color.RED);

canvas.drawCircle(50, 50, 30, paint);

// finish the page
document.finishPage(page);

// Create Page 2
pageInfo = new PdfDocument.PageInfo.Builder(500, 500, 2).create();
page = document.startPage(pageInfo);
canvas = page.getCanvas();
paint = new Paint();
paint.setColor(Color.BLUE);
canvas.drawCircle(200, 200, 100, paint);
document.finishPage(page);

// write the document content
String targetPdf = "/sdcard/test.pdf";
File filePath = new File(targetPdf);
try {
document.writeTo(new FileOutputStream(filePath));
Toast.makeText(this, "Done", Toast.LENGTH_LONG).show();
} catch (IOException e) {
e.printStackTrace();
Toast.makeText(this, "Something wrong: " + e.toString(),
Toast.LENGTH_LONG).show();
}

// close the document
document.close();
}

}


activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout

android_id="@+id/activity_main"
android_layout_width="match_parent"
android_layout_height="match_parent"
android_paddingBottom="16dp"
android_paddingLeft="16dp"
android_paddingRight="16dp"
android_paddingTop="16dp"
android_orientation="vertical"
tools_context="com.blogspot.android_er.androidcreatepdf.MainActivity">

<TextView
android_layout_width="wrap_content"
android_layout_height="wrap_content"
android_layout_margin="20dp"
android_layout_gravity="center_horizontal"
android_autoLink="web"
android_text="http://android-er.blogspot.com/"
android_textStyle="bold"/>

<Button
android_id="@+id/create"
android_layout_width="match_parent"
android_layout_height="wrap_content"
android_text="Create PDF"/>
</LinearLayout>



uses-permission of "android.permission.WRITE_EXTERNAL_STORAGE" is needed in AndroidManifest.xml.
<?xml version="1.0" encoding="utf-8"?>
<manifest
package="com.blogspot.android_er.androidcreatepdf">

<application
android_allowBackup="true"
android_icon="@mipmap/ic_launcher"
android_label="@string/app_name"
android_supportsRtl="true"
android_theme="@style/AppTheme">
<activity android_name=".MainActivity">
<intent-filter>
<action android_name="android.intent.action.MAIN" />

<category android_name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android_name="android.permission.WRITE_EXTERNAL_STORAGE"/>

</manifest>

{ Read More }


Friday, 26 May 2017

Create anonymous pdf file

Create anonymous pdf file


I often use LibreOffice (previously I used OpenOffice.org, not sure where these two are heading to) to create a text and its Export to PDF... function to create the corresponding pdf file.

Today I wanted to create an anonymous pdf file. It was the copy of a text where I had omitted all personal references (name, address, links to personal web sites, etc.) and I also wanted the pdf file to be anonymous in the sense that it shouldnt contain any personal trace.

Im not sure that I reached 100% anonymity but here is what I found: the Properties section of the pdf file contained a number of references to my name which I had to get rid off one by one.

File: which is the file name. Originally my initials were part of it but I had saved the file without it already using a neutral file name.

Title: often I give documents a title in  File -> Properties.. . In the Description tab there is a Title entry where in this instance I had put my name too which I needed to remove.
(My first try was the LibreOffice Export to PDF... dialog. There is a tab User Interface with a sub section Windows which shows a tick box Display document title which is ticked by default. After removing the tick the title had disappeared from the the top of the pdf window but it still showed in the pdf properties.)

Author: I have set my profile in LibreOffice preferences User Data e.g. name, address etc. I use it to include parts of it whenever necessary. In order to exclude this information from showing up in a pdf file I had to change the LibreOffice files properties.
Go to File -> Properties.. and choose the General tab. There is a tick box Apply User Data which is ticked by default. Removing the tick will prevent from user data being used. The LibreOffice file needs to be first saved and then exported again.

Location: since I usually create and save files on my system under my account (which contains my full name) it showed as  Macintosh HD:Users:fullname:Documents so I had to find an anonymous place and I chose /Users/Shared.

Since Im not a pdf expert there might be other (maybe hidden) references somewhere in the pdf file. Id love to know.

{ Read More }


Thursday, 25 May 2017

Create pdf from context menu with pdf generate

Create pdf from context menu with pdf generate


Source.



sudo apt-get install imagemagick unoconv ghostscript zenity libfile-mimeinfo-perl
 
 
 
 gedit ~/.config/pdf-generate.conf
 
 
And paste this:


[general]
compression=95 
density=200


So if you want to modify any default parameter, just edit this file before running the tool.

 Main script in charge of the PDF generation k=job should be placed under /usr/local/bin/pdf-generate. See source link to see its content. (Also here.)


# mkdir --parents $HOME/.config
# wget --header=Accept-Encoding:none -O $HOME/.config/pdf-generate.conf https://raw.githubusercontent.com/NicolasBernaerts/ubuntu-scripts/master/pdf/pdf-generate.conf
# sudo wget --header=Accept-Encoding:none -O /usr/local/bin/pdf-generate https://raw.githubusercontent.com/NicolasBernaerts/ubuntu-scripts/master/pdf/pdf-generate
# sudo chmod +x /usr/local/bin/pdf-generate
 
In case that expires:

sudo gedit /usr/local/bin/pdf-generate



and paste this:


#!/bin/bash
# --------------------------------------------
#  Generate a PDF document from a given list of documents
#  Documents are added in final document following
#  alphabetical order
#
#  Setup procedure : http://bernaerts.dyndns.org/linux/74-ubuntu/338-ubuntu-generate-pdf-from-documents
#
#  Depends on :
#   * imagemagick
#   * unoconv
#   * ghostscript
#   * mimetype
#
#  Parameters : full path of documents
#
#  Revision history :
#   05/07/2015, V1.0 - Creation by N. Bernaerts
#   15/08/2015, V1.1 - Force jpeg quality to 95
#   25/09/2015, V1.2 - Add configuration file
#   02/10/2015, V2.0 - Code rewrite to handle progress and notification
# ---------------------------------------------------

# -------------------------------------------------------
# check tools availability
# -------------------------------------------------------

command -v bc >/dev/null 2>&1 || { zenity --error --text="Please install bc"; exit 1; }
command -v mimetype >/dev/null 2>&1 || { zenity --error --text="Please install mimetype"; exit 1; }
command -v convert >/dev/null 2>&1 || { zenity --error --text="Please install convert [imagemagick]"; exit 1; }
command -v unoconv >/dev/null 2>&1 || { zenity --error --text="Please install unoconv"; exit 1; }
command -v gs >/dev/null 2>&1 || { zenity --error --text="Please install gs utility [ghostscript]"; exit 1; }

# ---------------------------------------------------------
#   Read and calculate parameters from configuration file
# ---------------------------------------------------------

# Configuration file : ~/.config/pdf-generate.conf
FILE_CONF="$HOME/.config/pdf-generate.conf"

# check configuration file
[ -f "$FILE_CONF" ] || { zenity --error --text="Please create and configure ${FILE_CONF}"; exit 1; }

# Load configuration file
COMPRESSION=$(cat "${FILE_CONF}" | grep "compression" | cut -d= -f2)
DENSITY=$(cat "${FILE_CONF}" | grep "density" | cut -d= -f2)

# calculate page size
PAGE_WIDTH=$(echo "${DENSITY} * 8.27" | bc)
PAGE_HEIGHT=$(echo "${DENSITY} * 11.7" | bc)

# -------------------------------------------------------
#          Retrieve or select input files
# -------------------------------------------------------

# set separator as carriage return
IFS=$

# loop thru arguments to load candidate files
for ARGUMENT
do
  [ -f "${ARGUMENT}" ] && ARR_FILE=("${ARR_FILE[@]}" "${ARGUMENT}")
  [ -d "${ARGUMENT}" ] && ARR_FILE=("${ARR_FILE[@]}" $(find "${ARGUMENT}" -maxdepth 1 -type f) )
done

# if there is no candidate files, open selection dialog
if [ ${#ARR_FILE[@]} -eq 0 ]
then
  # open multiple files selection dialog box
  LST_FILE=$(zenity --file --multiple --title="Select file to merge as PDF")

  # generate video files array
  ARR_FILE=($(echo "${LST_FILE}" | tr "|" " "))
fi

# -------------------------------------------------------
# loop thru selected files to check convertibility
# -------------------------------------------------------

for FILE in "${ARR_FILE[@]}"
do
  # document type undefined
  DOCTYPE=""

  # get the file mime type (application/msword, ...)
  MIMETYPE=$(mimetype -b "${FILE}")

  # check if file is a image file (.jpg, .png, .tiff, ...)
  CHECKTYPE=$(echo "${MIMETYPE}" | grep "image/")
  [ "${CHECKTYPE}" != "" ] && DOCTYPE="image"

  # check if file is a libreoffice file (.odt, .ods, ...)
  CHECKTYPE=$(echo "${MIMETYPE}" | grep ".opendocument.")
  [ "${CHECKTYPE}" != "" ] && DOCTYPE="libreoffice"

  # check if file is a microsoft file 2007+ file (.docx, .xlsx, .pptx, ...)
  CHECKTYPE=$(echo "${MIMETYPE}" | grep "vnd.openxmlformats-officedocument.")
  [ "${CHECKTYPE}" != "" ] && DOCTYPE="ms-office"

  # check some specific document types
  case $MIMETYPE in
    # ms-office document (.doc, .xls, .ppt, ...)
    "application/msword" | "application/vnd.ms-word" | "application/vnd.oasis.opendocument.text" |
    "application/vnd.ms-excel" | "application/vnd.ms-powerpoint" )
      DOCTYPE="ms-office"
      ;;

    # PDF document (.pdf)
    "application/pdf" | "application/x-pdf" | "application/x-bzpdf" | "application/x-gzpdf" )
      DOCTYPE="pdf"
      ;;

    # plain text file (.txt)
    "text/plain" | "application/x-shellscript" )
      DOCTYPE="text"
      ;;

    * )
      ;;
  esac

  # if document type is compatible, add current file as candidate
  [ "${DOCTYPE}" != "" ] && ARR_CANDIDATE=("${ARR_CANDIDATE[@]}" "${FILE}|${DOCTYPE}")

done

# -------------------------------------------------------
#       Confirmation dialog box
# -------------------------------------------------------

# calculate number of files to convert
NBR_FILE=${#ARR_FILE[@]}
NBR_CANDIDATE=${#ARR_CANDIDATE[@]}

# if some candidate file exist, order them and display confirmation dialog
if [ ${NBR_CANDIDATE} -gt 0 ]
then
  # order generated PDF files in alphabetical order
  ARR_CANDIDATE=($(sort <<<"${ARR_CANDIDATE[*]}"))

  # generate final file name
  FILE=$(echo "${ARR_CANDIDATE[0]}" | cut -d| -f1)
  FILE_FINAL="$(echo "${FILE}" | sed s/^(.*)..*$/1/)-merged.pdf"

  # display confirmation dialog box
  RESULT=$(zenity --question --title="Merge to PDF" --text="${NBR_CANDIDATE} file(s) out of ${NBR_FILE} will be merged to a single PDF file (${DENSITY} DPI) Do you want to generate ${FILE_FINAL} ?" )
  ACTION=$?

# else display error dialog
else
  # display confirmation dialog box
  RESULT=$(zenity --error --title="Merge to PDF" --text="There is no file compatible with PDF format." )
  ACTION=""

fi

# if action canceled or error, exit
[ "${ACTION}" != "0" ] && exit 1

(

# -------------------------------------------------------
# loop thru candidate files to convert them to PDF
# -------------------------------------------------------

for CANDIDATE in "${ARR_CANDIDATE[@]}"
do
  # retrieve document type and filename
  FILE=$(echo "${CANDIDATE}" | cut -d| -f1)
  DOCTYPE=$(echo "${CANDIDATE}" | cut -d| -f2)

  # progress display
  echo "# Conversion of ${FILE}"

  # get file name without extension & generate resulting PDF file name
  FILE_BASE="$(echo "${FILE}" | sed s/^(.*)..*$/1/)"
  FILE_PDF="${FILE_BASE}.pdf"

  # convert file according to its type
  case $DOCTYPE in
    # PDF files
    "pdf" )
    ARR_PDF=("${ARR_PDF[@]}" "${FILE}")
    ;;

    # image files
    "image" )
    convert "${FILE}" -compress jpeg -quality ${COMPRESSION} -resize ${PAGE_WIDTH}x${PAGE_HEIGHT} -gravity center -extent ${PAGE_WIDTH}x${PAGE_HEIGHT} -units PixelsPerInch -density ${DENSITY}x${DENSITY} "${FILE_PDF}"
    ARR_TMP=("${ARR_TMP[@]}" "${FILE_PDF}")
    ARR_PDF=("${ARR_PDF[@]}" "${FILE_PDF}")
    ;;

    # office files
    "libreoffice" | "ms-office" | "text" )
    unoconv -f pdf -o "${FILE_PDF}" "${FILE}"
    ARR_TMP=("${ARR_TMP[@]}" "${FILE_PDF}")
    ARR_PDF=("${ARR_PDF[@]}" "${FILE_PDF}")
    ;;

    # other formats, not handled
    * )
    ;;
  esac

done

# -------------------------------------------------------
#   Final merge
# -------------------------------------------------------

if [ ${#ARR_PDF[@]} -gt 0 ]
then
  # progress display
  echo "# Final assembly of ${FILE_FINAL}"

  # generate resulting PDF
  gs -q -dNOPAUSE -dBATCH -dSAFER -sPAPERSIZE=a4 -dPDFFitPage -dCompatibilityLevel=1.4 -sDEVICE=pdfwrite -sOutputFile="${FILE_FINAL}" ${ARR_PDF[@]}
fi

# -------------------------------------------------------
#   Temporary files clean-up
# -------------------------------------------------------

# loop to remove temporary files
for TMP_FILE in "${ARR_TMP[@]}"
do
  rm "${TMP_FILE}"
done

) | zenity --width=500 --height=25 --progress --pulsate --auto-close --title "Merge to PDF"

# -------------------------------------------------------
#   End of job notification
# -------------------------------------------------------

[ ${#ARR_CANDIDATE[@]} -gt 0 ] && zenity --notification --window-icon="evince" --text="${FILE_FINAL} generated."
                               || zenity --notification --window-icon="error" --text="Document type was not compatible for PDF generation."






Then make it executable:

sudo chmod +x /usr/local/bin/pdf-generate


To fully integrate this PDF generation tool in your desktop environment:
gedit /usr/share/applications/pdf-generate.desktop. 
 
 
Nautilus-Gnome content:
 
 
 [Desktop Entry]
Type=Application
Exec=pdf-generate
Hidden=false
NoDisplay=false
Icon=evince
Keywords=pdf;generate;image;office;document;merge
X-GNOME-Autostart-enabled=true
Name[en_US]=Generate PDF document
Name[en]=Generate PDF document
Name[C]=Generate PDF document
Name[fr_FR]=G�n�ration dun PDF
Comment=Tool to merge a set of documents to a PDF file.
Comment[en_US]=Tool to merge a set of documents to a PDF file.
Comment[fr_FR]=Outil de concat�nation de documents en un fichier PDF.
MimeType=image/bmp;image/gif;image/jpeg;image/jpg;image/png;image/tiff;application/pdf;application/x-pdf;application/x-bzpdf;application/x-gzpdf;application/msword;application/vnd.ms-word;application/vnd.oasis.opendocument.text;application/vnd.openxmlformats-officedocument.wordprocessingml.document;application/vnd.ms-excel;application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;application/vnd.openxmlformats-officedocument.spreadsheetml.template;application/vnd.ms-powerpoint;application/vnd.openxmlformats-officedocument.presentationml.presentation;application/vnd.openxmlformats-officedocument.presentationml.template;application/vnd.openxmlformats-officedocument.presentationml.slideshow;text/plain;
Categories=GNOME;GTK;Graphics;Conversion;Utility;

 KDE-Dolphin content

[Desktop Entry]
Actions=pdf-generate
Encoding=UTF8
Icon=pdf
MimeType=MimeTypes=image/bmp;image/gif;image/jpeg;image/jpg;image/png;image/tiff;application/pdf;application/x-pdf;application/x-bzpdf;application/x-gzpdf;application/msword;application/vnd.ms-word;application/vnd.oasis.opendocument.text;application/vnd.openxmlformats-officedocument.wordprocessingml.document;application/vnd.ms-excel;application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;application/vnd.openxmlformats-officedocument.spreadsheetml.template;application/vnd.ms-powerpoint;application/vnd.openxmlformats-officedocument.presentationml.presentation;application/vnd.openxmlformats-officedocument.presentationml.template;application/vnd.openxmlformats-officedocument.presentationml.slideshow;text/plain;inode/directory;application/pdf
ServiceTypes=KonqPopupMenu/Plugin,image/jpeg
Type=Service
#X-KDE-Submenu=Convert all in folder

[Desktop Action pdf-generate]
Exec=pdf-generate %F
Icon=pdf
Name=Create pdf file


To get a full desktop integration, this PDF generation tool should be available from a custom action in your file manager context menu.

For Nautilus you need to declare the new custom action in a .desktop file placed under ~/.local/share/file-manager/actions

[Desktop Entry]
Type=Action
Icon=evince
Name[C]=Generate PDF document
Name[en]=Generate PDF document
Name[en_US]=Generate PDF document
Name[fr_FR]=G�n�ration dun PDF
Tooltip[C]=Tool to merge a set of documents to a PDF file
Tooltip[en]=Tool to merge a set of documents to a PDF file
Tooltip[en_US]=Tool to merge a set of documents to a PDF file
Tooltip[fr_FR]=Outil de concat�nation de documents en un fichier PDF
Profiles=pdf_generate;

[X-Action-Profile pdf_generate]
Exec=pdf-generate %F
MimeTypes=image/bmp;image/gif;image/jpeg;image/jpg;image/png;image/tiff;application/pdf;application/x-pdf;application/x-bzpdf;application/x-gzpdf;application/msword;application/vnd.ms-word;application/vnd.oasis.opendocument.text;application/vnd.openxmlformats-officedocument.wordprocessingml.document;application/vnd.ms-excel;application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;application/vnd.openxmlformats-officedocument.spreadsheetml.template;application/vnd.ms-powerpoint;application/vnd.openxmlformats-officedocument.presentationml.presentation;application/vnd.openxmlformats-officedocument.presentationml.template;application/vnd.openxmlformats-officedocument.presentationml.slideshow;text/plain;inode/directory;
Name[C]=Default profile
Name[en]=Default profile
Name[en_US]=Default profile
Name[fr_FR]=Profil par d�faut

 For Dolphin/KDE it is in ~/.kde/share/kde4/services/ServiceMenus/

 Therefore,


gedit ~/.kde/share/kde4/services/ServiceMenus/pdf-generate.desktop

with the content:
 
[Desktop Entry]
Actions=pdf-generate
Encoding=UTF8
Icon=pdf
MimeType=MimeTypes=image/bmp;image/gif;image/jpeg;image/jpg;image/png;image/tiff;application/pdf;application/x-pdf;application/x-bzpdf;application/x-gzpdf;application/msword;application/vnd.ms-word;application/vnd.oasis.opendocument.text;application/vnd.openxmlformats-officedocument.wordprocessingml.document;application/vnd.ms-excel;application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;application/vnd.openxmlformats-officedocument.spreadsheetml.template;application/vnd.ms-powerpoint;application/vnd.openxmlformats-officedocument.presentationml.presentation;application/vnd.openxmlformats-officedocument.presentationml.template;application/vnd.openxmlformats-officedocument.presentationml.slideshow;text/plain;inode/directory;application/pdf
ServiceTypes=KonqPopupMenu/Plugin
Type=Service


[Desktop Action pdf-generate]
Exec=pdf-generate %F
Icon=pdf
Name=Create pdf file
 After re-login, a context menu option will appear for selected files as indicated in the source link. For my KDE/Dolphin configuration, this works for selected files if they have the same extension. Otherwise, the best way it just to put all needed files in one folder and then execute the command from the right-click context menu of that folder.

Also here.


{ Read More }


Wednesday, 24 May 2017

Converter MS Word to PDF

Converter MS Word to PDF


Cara Menyimpan atau Membuat File Save as PDF File
(PDF File Converter � MS Word to PDF)
Mungkin diantara anda ada yang ingin menyimpan atau merubah File Ms Word ke dalam bentuk format File PDF ? PDF kepanjangan dari Portable Document Format yang saat ini biasa digunakan untuk membuat File e-book, Surat menyurat, Formulir atau Blangko atau document penting lain yang sering dibuat dalam bentuk atau Format File PDF ini.
Sebenarnya ternyata sangat mudah menuliskan Document dalam bentuk Format File PDF ini. Salah satunya dengan menggunakan Software Cute PDF Writer, dengan menggunakan Software tersebut. Salah satu caranya kita membuat document tersebut sebelumnya menggunakan MS Word , kemudian menyimpannya dalam bentuk Format File PDF. Dengan software ini maka akan sangat gampang kita merubah atau meng convert File MS Word (DOC) menjadi sebuah File dengan Format File PDF.
Tidak hanya Aplikasi atau Sofware MS Word saja, namun ternyata Sofware Converter PDF ( Cute PDF Writer ) ini bisa digunakan hampir semua Aplikasi, sehingga setelah kita meng install Sofware PDF Converter ini kita bisa Save as file as Program MS Word , Excel , atau Software lain PDF yang secara default sebenarnya tidak tersedia pada aplikasi terseebut Jadi kita akan sangat mudah untuk Convert Document ke dalam bentuk PDF.
Cara Instalasi dan Software yang diperlukan untuk Meng Convert File ke dalam bentuk PDF.
Download Software yang diperlukan yaitu :
PS2PDF converter klik Link ini untuk download
Cute PDF Writer klik Link ini untuk Download
Install Kedua Software tersebut kemudian restart komputer anda.
Untuk memastikan Software sudah terinstall dengan sempurna anda cek di Menu
Control Panel >> Printer and Faxes
Cara Membuat Menyimpan File PDF


Pastikan disitu terdapat Icon Printer dengan nama CutePDF Writer
Bagaimana Cara Convert Save As PDF atau menyimpan File dalam bentuk PDF tersebut ?
Download Free Software Converter PDF
Pertama anda buat Dokumen anda menggunakan Software MS Word, Excel, Power Point atau Program lain yang biasa anda gunakan untuk membuat Document tersebut dan anda simpan seperti biasa.
Kemudian untuk meng convert ke dalam bentuk PDF anda masuk ke menu Print, pada Kotak Dialog anda rubah Opsi Printer anda dan pilih CutePDF Writer. Kemudian anda klik Ok . Dan anda tentukan Lokasi tempat File Convert to PDF ini sesuai dengan Lokasi penyimpanan yang anda di dinginkan.
Dan dalam sekejap File anda sudah tersimpan dalam bentuk Format File PDF.
Sofware PDF Converter untuk save as file PDF ini sangat mudah dan merupakan Aplikasi Free Ware atau Software Gratis sehingga sangat membantu kita untuk Membuat Dokument dengan Format File PDF.
Semoga tutorial tentang membuat atau menyimpan file PDF Converter atau save as PDF ini bisa bermanfaat untuk anda.
{ Read More }


Wednesday, 10 May 2017

Convert PDF to any Document with PDF Transformer Mediafire Link

Convert PDF to any Document with PDF Transformer Mediafire Link




You know that PDF (Portable Document Format) can be converted to another text format like Microsoft Word Document, RTF Document, Text Document, HTML, etc. If you�re going to convert PDF document to Microsoft Word Document, you can easily do it using Software. There are many Software which can be used to convert it. One of them is ABBYY PDF Transformer. With this software you can easily convert PDF document to another text document, like MS. Word, MS. Excel, RTF, Text, HTML, and search able PDF document. This is a Portable version of PDF Transformer. It means that you can run the program directly without need to install it first.
When you run it, make sure you change the language from Russian to English, so you can use it easily.
Enjoy Convert PDF to Word and many feature available there.


You can download the software here (Resumable link download from Mediafire) :
ABBYY PDF Transformer v 3.0.100.399 Portable.rar
{ Read More }


Wednesday, 3 May 2017

CoolUtils PDF Combine 4 1 48 Final Full Version

CoolUtils PDF Combine 4 1 48 Final Full Version


CoolUtils PDF Combine 4.1.48 Final Full Version adalah software yang dapat anda gunakan untuk menggabungkan beberapa file PDF menjadi satu file, kalau saya biasanya menggunakan CoolUtils PDF Combine 4.1.48 Final Full Version ini untuk menggabungkan antar BAB pada makalah tugas, he okelah bagi pelajar saya yakin akan sangat membutuhkannya, so langsung si download saja ya.

Screenshoot:


Features:
  • Combines different pages of invoices, bank statements, contracts, or e-books
  •  Allows selecting as many PDF files as you like
  •  Supports different kinds of PDF files produced by various programs
  •  Suggests adding macros in destination path (date or time)
  •  Keeps folder structure if you combine subfolders within a folder.
  •  For e-books PDF Combine creates Table of Contents. Each file name of the combined 
Cara Install:
  •  Matikan koneksi internet
  • Install Aplikasi, pilih help>register, kemudian masukan serial yang saya sertakan
  • Enjooy
Download: 
  • Download | CoolUtils PDF Combine 4.1.48 Final Full Version  - 11,9 MB
  • Download | Serial  - 1 KB
  • Password (if need) :  
Jika ada pertanyaan/request, hubungi saya di  Twitter
Anda ingin MENGHASILKAN UANG DARI ANDROID?  Cek Disini Yah Cara Download dari Nornar.com Klik Disini 
{ Read More }


Saturday, 29 April 2017

Convert PDF to DOC files

Convert PDF to DOC files


PDF2Word (pdf to word) software enable export the text, images and other contents from pdf document into word document, so you can reuse your PDF content, pdf to word software will preserving text, layout and bitmap images in the generated word document.

PDF2Word (pdf to word) software is a standalone program and does not require Microsoft Word, Adobe Acrobat, or even Acrobat Reader.

Here are some key features of "PDF to Word Converter" :
� Convert PDF files into Microsoft Word documents;
� Batch PDF to Word Conversion;
� Standalone software, MS Word, Adobe Acrobat and Reader NOT required!
� Support Command Line Operation (for manual use or inclusion in scripts);
� Automatically resize PDF page to fit your requirement;
� Accurately preserve Text, Pictures, and Layout;
� PDF to Word is easy to use;
� Support multiple document conversions (Batch Processing);
� Support drag and drop files and batch conversion;
� Support PDF1.6 protocol (formerly only supported by Acrobat 7.0);
� Converted files can be automatically loaded immediately after conversion complete;
� Support page ranges (all, from to, individual pages);
� Support English, French, German, Italian and other languages;
� Support delete graphics and pictures from the generated Word document;
� Support encrypted PDF files;
� Five reconstruction modes for PDF to Word conversion;
� Convert PDF file to flowing MS Word document without text boxes;


Download Convert PDF to DOC files
{ Read More }


Sunday, 16 April 2017

Create two page per sheet pdf file on Mac

Create two page per sheet pdf file on Mac


What I had: a pdf file with rather small pages i.e. when printing in original size there was a lot of white boundary around the page.
What I wanted: a new pdf file containing only a subset of pages and with two pages per sheet instead of just one.

Now this didnt sound complex but I found that I needed to take a couple of tries on my Mac until I finally got it going.

First try: Acroread
When using acroread to view the pdf file and Print to print the selected pages with the Save as PDF option I get a complaint:
Saving a PDF file when printing is not supported, choose File > Save.
And File -> Save does not support to save just a selection of pages (this is Adobe Reader 9.4.0).

Second try: Preview
Of course the alternative to acroread is Preview (version 4.2) and its Print function allowed to select pages and save them to pdf. Only issue: I could not get the Layout changed to have two pages per sheet, I tried various settings but I always ended up with one page per sheet.
Which lead to the

Third try: Preview via PostScript
Again I was using Preview as before but this time I was using Save as PostScript.... The resulting file can be viewed again in Preview, it gets converted to PDF and it finally showed what I wanted: two pages per sheet, only the pages I wanted. Another Save and I got my new pdf file.

So sometimes supposedly easy things take longer than anticipated, thats where your time goes :-)

And just for my own reference here are the settings again:
I didnt change anything in the top part except for page selection so paper size A4, orientation portrait and scale 100%.
In preview I kept Automatically rotate each page and ticked Scale each page to fit paper. In Layout I set Pages per Sheet to 2, left the orientation unchanged (from top-left, top-right, bottom-left, bottom-right) and ticked Border Single Hairline just to get a little visual cue and separation.
And also note that the little Print preview does not show the layout, you always have to create the new file first and then youll see whether your changes have any effect. 

Note: Print options in Preview differ by file type. When you open an image file in Preview there is indeed an Images per page option but this is absent when opening a pdf file so therefore my need for the detour. Id welcome any simpler solution.
{ Read More }


Convert PDF to Excel for Free Tables

Convert PDF to Excel for Free Tables


PDF to Excel online converter is a free tool which converts an pdf document like ebook or pdf document which you had created in office into excel format. This is very handy when you have huge data in PDF as report or table format and you want to convert into excel so you can do all calculations easily.

Convert PDf to Excel

Basically it looks for table elements inside your pdf and pulls it out which makes sense. If you try uploading a pdf without tables the conversion results nothing and since you get converted excel file via email you would see this information. Try PDF to Excel

{ Read More }


Thursday, 13 April 2017

Converting PDF to PNG JPG using ImageMagick in Linux

Converting PDF to PNG JPG using ImageMagick in Linux


Being an undergrad student a lot of the lecture notes and study related material i have is in PDF format now a lot of times i have felt the need of carrying this material around, however carrying laptop around all the time is just not feasible.I have a Video Ipod that could store images and one could view them on the go however it cannot display pdf files so my search began for a tool that could actually convert PDF files into PNG that could be later loaded on to the ipod and viewed at ones convenience .

Note : The installation instruction below are for Ubuntu however they should work perfectly well on any other distro as long as you have ImageMagik and Ghost Script installed.

Installing ImageMagick
ImageMagick is a powerful command line image processing package with a number of features you could install it using the following command :

sudo apt-get install imagemagick
After installation is over to convert say sample.pdf to sample.png issue the following command

convert sample.pdf sample.png
or

convert sample.pdf sample.jpg

Now if sample.pdf has multiple pages ImageMagick would convert each individual page into a separate file for example : 1st page as sample-0.png , 2nd page as sample-1.png and so on .

However ImageMagick internally uses Ghostscript to convert the file to graphics image so resolution might be bit less and if you want to convert document into higher resolution image you could do so by using Ghostscript directly.

There are number of options available in convert which you could inquire by issuing convert -? command.

Article Written by : Ambuj Varshney (blogambuj@gmail.com)
For Desktop on Linux Blog , http://linuxondesktop.blogspot.com
(C) 2008 , Ambuj Varshney
{ Read More }


Wednesday, 12 April 2017

Creare PDF A o convertire PDF in PDF A con LibreOffice

Creare PDF A o convertire PDF in PDF A con LibreOffice


Il PDF/A � uno standard ISO (ISO 19005-1:2005 ) che definisce un formato per larchiviazione nel lungo periodo di documenti elettronici basato sulla versione 1.4 (PDF/A-1) del formato PDF di Adobe Systems Inc. (implementato in Adobe Acrobat versione 5 e successive).
Questo tipo di formato di file � molto richiesto nello scambio di documenti con la pubblica amministrazione italiana. Chi lavora con il Catasto conosce bene questo formato in quanto � richiesto per linvio di allegati che accompagnano le pratiche catastali.
Quando un utente si trova per la prima volta a dover realizzare un file PDF di questo tipo spesso va nel panico pi� totale perch� non sa con quale software generarlo.
Questoggi vi illustrer� come � semplice creare un file PDF/A usando il nostro amato LibreOffice.

Creare un PDF/A con LibreOffice partendo da un file di testo

Questo � il caso pi� comune ovvero abbiamo scritto una relazione con LibreOffice (o altra suite) e vogliamo convertirlo in PDF/A.
Apriamo il nostro documento di testo che vogliamo salvare nel formato PDF/A. Clicchiamo ora su File, Esporta nel formato PDF...


Nella nuova finestra che si aprir� spuntiamo la voce Archivio PDF/A-1a (ISO 19005- 1) e clicchiamo su esporta.


Indicate il percorso di salvataggio.
Bene, ora il nostro file PDF/A � stato creato e possiamo vederlo nelle propriet� del file appena generato.


Convertire un PDF nel formato PDF/A con LibreOffice

Nel caso fossimo gi� in possesso di un file PDF (magari generato da altri programmi come quelli di scansione) e vogliamo convertirlo nel formato PDF/A la procedura � simile.
Apriamo LibreOffice e clicchiamo Apri File


e andiamo a selezionare il file PDF che vogliamo convertire nel formato PDF/A.
Una volta fatto il file PDF verr� aperto da LibreOffice Draw.
Clicchiamo ora su FileEsporta nel formato PDF...



Spuntiamo la voce Archivio PDF/A-1a (ISO 19005- 1) e clicchiamo su esporta.


Il file PDF verr� ora convertito da LibreOffice nel formato PDF/A


{ Read More }


Sunday, 9 April 2017

Create pdf from multiple images

Create pdf from multiple images


Put all png files in a directory, open terminal there and run

convert png.* out.pdf

Replace extension accordingly/

To add all images from that directory into one pdf use

convert *.* out.pdf
{ Read More }


Monday, 6 April 2015

Top 10 PDF to Word Doc Converter websites software online

Today on All Top 9 we are going to list about the Top 10 PDF to word Doc Converter Software. These are available for free in online. Now, I am going to list all those best PDF to Word Doc Converter Software together. Make use of it and every site gives good outputs in converting from PDF to Word Doc.

pdf-to-word-doc-converter

Top 10 PDF to Word Doc Converter websites (online+software)

1. UniPDF-Free PDF to Word Doc Converter for Windows

UniPDF is a free pdf to word converter, and it is a desktop software runs on windows (supports from win xp), it has some other features like we can convert Pdf to Image (JPEG), pdf to text, Pdf to html etc and as far as we tried, there are no lags in images, so we are preferring it in our top 10 list as first , please make sure to remember the output destination folder and also the name of converted file.

2. pdftoword.com

Pdftoword.com is powered by Nitro, it has a free version and also a premium version, we can try to convert pdf to word in online or by using the software (trail for 14 days is available) offline, I prefer the online, as its easy and more convenient, we can just upload the doc, and give our mail id, and have to press convert, thats it, and based on our file size and no. of images in the document, the process takes some time, and as soon as it gets converted, it will be in our mail which we can forward or download to our pc

3. pdfonline.com

pdfonline.com has the ability to convert pdf to word or doc to pdf , both online or by using software (trial), this is also similar to Unipdf software, we tested a sample pdf file to convert to doc, and it took around 52 seconds, and there is no need to give email id, as you can directly download the converted file as soon as the file gets converted

4. freepdfconvert.com

freepdfconvert..com has some special features, its UI is very neat. and it is divided in the form of tabs, in the first tab, you can convert pdf to doc.docx,rtf. in the second tab you can convert pdf to excel, like wise pdf to power point, pdf to image etc, in all the tabs make sure you give the correct extension which you want the file to get converted and freepdfconvert.com requires email id, so it can deliver the converted file to you by mail.

5. pdftoword.org

Pdftoword.org is an online site to convert pdftoword and there is no special software provided by this site, but it has the ability to convert  PDF to WORD, PDF to IMAGE ,PDF to TEXT, PDF to HTML. WORD to PDF, POWERPOINT to PDF ,EXCEL to PDF .TEXT to PDF, simple interface, just upload the file, fill ur email id and press convert, thats it!

6. convertpdftoword.net

convertpdftoword.net provides both online and software to convert pdf to word, and it also provides to convert the file to different extensions like  .doc, .docx, .rtf, .txt, .xls, .xps, .html etc, we dont need to input our email id, just upload the file, click on "convert and download". thats it!

7. verypdf.com

Verypdf.com provides both online and offline way to convert the pdf file to doc, you can upload the local file from your desktop or you can simply paste the url of the pdf file, and can convert it to desired format (.doc,docx), it has a software for desktop too, but its also a trail version, like the other pdf to doc converting softwares (file size is 10MB)

8. convertonlinefree.com

convertonlinefree.com is able to convert to pdf to doc upto a file size of 30MB, it has some other special features like: WORD to PDF, Other documents to PDF, Image to PDF, PDF to TXT, PDF to WORD, PDF to JPG, DJVU to PDF, etc, it has simple UI, you dont need to enter your email too, just upload the file and select the desired conversion extention and click on convert, after conversion you will get the download link

9. onlineocr.net

Onlineocr.net is a Optical recognition site and it has the ability to convert 46 languages files to other extensions like pdf, doc,jpeg, etc and it supports a maximum file size of 5MB, and the converted file wont have any mistakes in the words or in the images and you will get direct download link after conversion, but no desktop software available as of now.

10. convertpdftoword.org

Convertpdftoword.org took only 1 min to convert a sample pdf to word, as this site only provides pdf to doc conversion and there is a trail software available in the site, you can simply convert the pdf file to doc in online and it requires email address, so it can send the converted file through mail.

These are the top 10 PDF to Word doc converter websites which can be done through software and online. These are the best pdf to word softwares which gives good outputs.
{ Read More }