Sunday, December 30, 2012

Merge Multiple Presentations by Passing List of All Files in .NET Apps

This technical tip allows developers to merge multiple presentation files using Saaspose.Slides REST API in your .NET applications. You can pass a list of all the files you want to merge using this example. Developers need to upload all the input files (Presentation1.pptx, Presentation2.pptx and Presentation3.pptx in case of this example) before running this example. Please check Upload File to Saaspose for how to. Some important steps for performing this task are to specify product URI, build URI, build URI to download merged presentation and Save output file.
Sample Code for Adding Watermark Text to a Word Document
SaasposeApp.AppKey = "89**********************";
SaasposeApp.AppSID = "77***********************";
//specify product URI
Product.BaseProductUri = @"http://api.saaspose.com/v1.0";
string[] presentationsList = new string[] { "Presentation2.pptx", "Presentation3.pptx" };
PresentationsList list = new PresentationsList();
list.PresentationPaths = presentationsList;
string strJSON = JsonConvert.SerializeObject(list);
//build URI
string strURI = "http://api.saaspose.com/v1.0/slides/Presentation1.pptx/merge"; //Product.BaseProductUri + "/pdf/" + basePdf + "/appendDocument?appendFile=" + newPdf + "&startPage=1&endPage=" + iPageCount.ToString();
string signedURI = Utils.Sign(strURI);
Utils.ProcessCommand(signedURI, "POST", strJSON);
// build URI to download merged presentation
strURI = "http://api.saaspose.com/v1.0/storage/file/Presentation1.pptx";
signedURI = Utils.Sign(strURI);
using (Stream responseStream = Utils.ProcessCommand(signedURI, "GET"))
{
    //Save output file
    using (Stream fileStream = System.IO.File.OpenWrite("C:\\MergedPresentation.pptx"))
    {
        Utils.CopyStream(responseStream, fileStream);
    }
}
//Following is the PresentationsList class
/// <summary>
/// represents list of presentations to be merged
/// </summary>
class PresentationsList
{
    public PresentationsList() { }
    public string[] PresentationPaths { get; set; }
}
//build URI to upload file to Saaspose
            string strURI = "http://api.saaspose.com/v1.0/storage/file/MyRemoteFileName";
            string signedURI = Sign(strURI);
            UploadFileBinary(localfilepath, signedURI, "PUT");                        
Overview: Saaspose.Slides
Saaspose.Slides is a REST based API that allows developers to read, write & modify a PowerPoint presentations in cloud. It is platform independent API & can be used by developers in web, desktop, mobile & cloud applications alike. It provides a rich set of features like creating presentation from scratch, modify various aspect of a presentation & converting a presentation to PDF, XPS, TIFF, SVG, HTML, PNG, JPEG, GIF & BMP formats. It helps you add, modify or extract text from the presentation.
More about Saaspose.Slides
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Wednesday, December 26, 2012

Image Text Extraction from Remote Image URL by REST API in Java Apps

This technical tip allows developers to extract image text from remote image URL using Saaspose.OCR REST API in their Java applications. Some important steps for performing this task is to build URI to extract text, sign URI, execute signed URI request and get response, Parse and deserialize the JSON to an object and Display the value and type of all the extracted text.
Sample Code for Extracting Image Text from Remote Image URL
//build URI to extract text
            String strURI = "";
            strURI = "http://api.saaspose.com/v1.0/ocr/recognize?url=http://s017.radikal.ru/i406/1202/7b/70183bef7a09.jpg&language=english&useDefaultDictionaries=true";
            //sign URI
            String signedURI = Sign(strURI);
            //execute signed URI request and get response
            InputStream responseStream = ProcessCommand(signedURI, "POST");
            String strJSON = StreamToString(responseStream);
            // Parse and deserialize the JSON to a object.
            OCRResponse ocrResponse = gson.fromJson(strJSON, OCRResponse.class);
            // Display the value and type of all the recognized barcodes
            for (Part part : ocrResponse.getPartsInfo().getList())
            {
                System.out.println("Text: " + part.getText());
                System.out.println("Font Name: " + part.getFontName());
                System.out.println("Font Size: " + part.getFontSize());
                System.out.println("Bold: " + part.getBold());
                System.out.println("Italic: " + part.getItalic());
                System.out.println("Underline: " + part.getUnderline());
            }
            //Here is the OCRResponse class
            public class OCRResponse extends BaseResponse
            {
                private String Text;
               private OCREnvelop PartsInfo;
               public String getText() { return Text; }
               public OCREnvelop getPartsInfo() { return PartsInfo; }
            }
            //Here is the OCREnvelop class
            public class OCREnvelop
            {
               private List<Part> Parts;
               public List<Part> getList() { return Parts; }
            }
            //Here is the Part class
            public class Part
            {
               public Part() { }
               private String FontName;
               private float FontSize;
               private boolean Bold;
               private boolean Italic;
               private boolean Underline;
               private String Text;
               public String getFontName() { return FontName; }
               public float getFontSize() { return FontSize; }
               public boolean getBold() { return Bold; }
               public boolean getItalic() { return Italic; }
               public boolean getUnderline() { return Underline; }
               public String getText() { return Text; }
            }
Overview: Saaspose.OCR
Saaspose.OCR is a platform independent REST API used for optical character recognition and document scanning. It allows developers to scan documents, extract text and recognize characters from the documents in the cloud. It supports OCR feature for whole image, partial image or a specific rectangular area of an image file. It can be used with languages like .NET, Java, PHP, Ruby, Rails, Python, jQuery & many others. It can also be integrated with other cloud services to process documents.
More about Saaspose.BarCode
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Sunday, December 23, 2012

Protect Excel Workbooks by Applying Encryption & Decryption in Cloud

What’s new in this release?
The latest version of Saaspose.Cells enhances the security measures by protecting the workbooks from unauthorized access to modify the structure or content. It allows to encrypt the workbook and assures the protection for making changes to the layout of the worksheets in a workbook. You can encrypt a workbook and assign an encryption key to prevent the unauthorized access by eavesdroppers or hackers. The encrypted workbooks cannot be accesses without decryption key. Saaspose.Cells allows you to decrypt workbook for authorized access to make any changes in the document. A decryption key is required to recover the contents of the workbook. The content, layout and structure of the decrypted workbook can then be modified. This is a powerful features supported by Saaspose.Cells that protects the workbooks from eavesdroppers and hackers and the use of encryption and decryption keys assures only authorized access to sensitive information. For more details, please refer to Saaspose.Cells documentation. All you need to do is download the required SDKs of Saaspose.Cells and enhance the productivity of your applications in the cloud. You can encrypt and decrypt workbooks easily using the feature rich Saaspose.Cells REST API. Following is a list of Saaspose.Cells SDK and REST examples for encryption and decryption requirements of your spreadsheets. Saaspose.Cells is a platform independent REST API that allows document manipulation with several features and supports different programming languages. You can improve your document manipulation experience by collaborating Saaspose.Cells with other file format APIs and integrate multiple features in your application for better performance. We appreciate your valuable feedbackto help us improve our services.
Newly added documentation pages and articles
Some new tips and articles have now been added into Saaspose documentation that may guide you briefly how to use Saaspose APIs on Amazon S3 Storage for performing different tasks like the followings.
Overview: Saaspose.Cells
Saaspose.Cells is a REST based API for processing spreadsheets in the cloud. It allows creating, manipulating and converting spreadsheets in your web, desktop, mobile and cloud applications. It supports rows, columns, cells, text, data, images, hyperlinks, comments, formulas & many other aspects of spreadsheet. It can be used with any language to incorporate the spreadsheet processing features in any type of business application. It is a platform independent API & can be used with any language.
More about Saaspose.Cells
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Thursday, December 20, 2012

Convert, Extract & Replace Images in Word, PDF, PowerPoint & Excel Files

What’s new in this release?
Saaspose provides the platform to create, edit and manipulate your documents in the cloud. Using Saaspose APIs, you can integrate various features in your applications to manipulate your documents, presentations, worksheets, PDF files, image and barcode. While working with different file formats, you require to manipulate images within the documents in different scenarios. It can be image extraction, image replacement, conversion to images and various other functions depending on the requirements. Saaspose.Words, Saaspose.Cells, Saaspose.Pdf and Saapose.Slides have been designed to offer a wide range of features to utilize in your applications for image manipulations. Using Saapose.Words, you can get the images from document; you can either extract a single image or all images from the document. You can also convert drawing object to image and use the converted image as required. You can get the image drawing object from document using Saaspose.Words in your applications.
Similarly using Saaspose.Slides, you can save a slide as an image with specified size and use it accordingly in your applications. You can get all the number of images in presentation or you may choose to get the number of images in a single slide. Saaspose.Slides allows you to get image count from a presentation or a slide uploaded at Amazon S3 storage.Using Saaspose.Pdf in your applications, you can convert a PDF page to image with default size. You can also extract a particular image from a PDF page with default size. Saaspose.Pdf allows you to replace the images in PDF file by using the uploaded image on Saaspose storage or send the image file as request stream to Saaspose API. Saaspose.Cells allows you to convert auto shapes in a workbook to images and save the images for further use. You can also convert single or multiple charts to images using Saaspose.Cells. You can choose a specific chart from a worksheet to be converted to an image. You can also convert pictures in a worksheet to images using Saaspose.Cells API and convert a worksheet to an image as well. This REST API allows you to convert ole object to image in the cloud. Being language independent, these APIs can be utilized in the applications using programming language of your choice such as .NET, Java, Ruby and PHP.
About Saaspose
SaaSpose is a cloud-based document generation, conversion and automation platform for developers. Using SaaSpose makes it easy for Web & Mobile Developers to work with Microsoft Word documents, Microsoft Excel spreadsheets, Microsoft PowerPoint presentations, Adobe PDFs, OpenDocument formats, and email formats and protocols in their Apps.  The SaaSpose REST API enables you to quickly integrate the following into your Web: Document Assembly & Mail-Merge, Reporting, Document Conversion, Text and Image Extraction, Device Targeting, Metadata Removal, Barcode Recognition, Generation & Embedding, Email Templating & Tracking. The REST API can be called from any platform: .NET, Java, Ruby, Salesforce, Amazon etc.
More about Saaspose
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Tuesday, December 18, 2012

Text Extraction & Recognition from Remotely Stored Images in Cloud

What’s new in this release?
Saaspose development team is proud to announce the new release of Saaspose.OCR. This new release offers an interesting feature for text extraction from remote images. In document manipulation tasks, you may come across scenarios where you want to extract text from a remotely stored image. This eliminates the need of uploading the image to local server or external storage provider and performs text extraction. Saaspose.OCR allows you to extract remote text from remote image URL using this feature-rich API in your applications. Saaspose.OCR extracts text from remotely stored images and recognizes a collection of characters from the extracted text. It is a platform independent REST API that supports different programming languages for optical character recognition and text extraction from remote image URLs. You just need to have remote URLs of the images and let Saaspose.OCR perform the rest of tasks involved in optical character recognition. For more details, please refer to Saaspose.OCR documentation. Saaspose.OCR API not only allows you to text extraction from remote image URL but you can also combine multiple REST APIs to enhance your application productivity. To get started with Saaspose.OCR, you only need to sign up at Saaspose and get application information. You can opt for free development account that enables you to evaluate all of our APIs.
Newly added documentation pages and articles
Some new tips and articles have now been added into Saaspose.OCR documentation that may guide you briefly how to use Saaspose.OCR for performing different tasks like the followings.
Overview: Saaspose.OCR
Saaspose.OCR is a platform independent REST API used for optical character recognition and document scanning. It allows developers to scan documents, extract text and recognize characters from the documents in the cloud. It supports OCR feature for whole image, partial image or a specific rectangular area of an image file. It can be used with languages like .NET, Java, PHP, Ruby, Rails, Python, jQuery & many others. It can also be integrated with other cloud services to process documents.
More about Saaspose.OCR
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Sunday, December 16, 2012

Merges Multiple Presentations Uploaded at Amazon S3 & Dropbox Storage

What's New in this Release?
Saaspose development team is proud to announce merging of multiple presentations using Saaspose.Slides REST API using Saaspose.Slides REST API. Saaspose.Slides is a REST API which allows you to process presentations; create, modify, and convert presentations in the cloud. You can get formatting information of a slide, replace text, convert presentations to other file formats, or you may choose to manage your slides. You can merge multiple presentations into a single presentation using Saaspose.Slides REST API in your application. All you need to do is upload all the input files on Saaspose Storage and execute this feature. Once the files are merged, you can download the merged presentation file from Saaspose Storage. Saaspose provides the support for uploading presentations on other storage servers as well such as Amazon S3 and Dropbox and execute the “merge multiple presentations” feature on the uploaded files. You can directly merge the presentations on your local system using Saaspose.Slides REST API and SDKs without saving the file to Saaspose Storage. It is a single call process that uses merge presentations controller resource ; it uploads the files to server, merges multiple presentations into a single presentation, sends the merged file back as response stream and deletes the source files from the server.You can merge multiple presentations into a single presentation and share it across any platform.You can refer to our documentation that guides through the features and examples of Saaspose.Slides. To get started with Saaspose.Slides API, you only need to sign up at Saaspose and get application information. You can opt for free development account that enables you to evaluate all of our APIs.
Newly added documentation pages and articles
Some new tips and articles have now been added into Saaspose.Slides documentation that may guide you briefly how to use Saaspose.Slides for performing different tasks like the followings.
Overview: Saaspose.Slides
Saaspose.Slides is a REST based API that allows developers to read, write & modify a PowerPoint presentations in cloud. It is platform independent API & can be used by developers in web, desktop, mobile & cloud applications alike. It provides a rich set of features like creating presentation from scratch, modify various aspect of a presentation & converting a presentation to PDF, XPS, TIFF, SVG, HTML, PNG, JPEG, GIF & BMP formats. It helps you add, modify or extract text from the presentation.
More about Saaspose.Slides
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Thursday, December 13, 2012

Split Word Document into Multiple Docs within Different File Formats

What’s new in this release?
Saaspose development team is happy to announce the new release of Saaspose.Words. This new release allows splitting MS Word documents into separate documents using Saaspose.Words REST API. Saaspose.Words is a REST base API that helps to create, manipulate and convert documents to other file formats in the cloud. While working with your documents, you may come across scenarios where you want to split the large documents into smaller ones. You can split the documents into separate documents within the MS Word document or different file formats. Splitting one large document into smaller documents of different file formats is an important aspect in document manipulation tasks. It involves a series of steps that need to be performed for getting the desired results. Saaspose.Words eliminates the need of such complicated tasks and makes it hassle free. You can split your MS Word documents using Saaspose.Words REST API in your applications. Whether the size of your document is small or large, Saaspsose.Words splits hundreds of pages of a document into different documents. You may choose the file format while splitting the document such as PDF, image, MS Word documents, etc. Using this feature-rich API in your applications, you can split all pages of the document into new documents and maintain their file names as well. You can also choose to split specific pages to new documents from a single document. The formatting information and content of the document is maintained during the split process and the new files have the same formatting and style. You can directly split the documents on your local system using Saaspose.Words REST API and SDKs without saving the file to Saaspose Storage. It is a single call process that uses split document controller resource; it uploads the files to server, appends the files to the document, sends the converted file back as response stream and deletes the source files from the server. Saaspose.Words allows you to split apart MS Word documents into multiple documents with different file formats. You can divide and save pages of your MS Word documents into separate file uploaded at Amazon S3 storage. You need to upload the input document at Amazon S3 storage and execute the feature in your web or mobile applications. Saaspose.Words is a platform independent REST API and can be used with different programming languages such as .NET, Java, PHP and Ruby. You can utilize our SDK and REST examples to split MS Word documents in the cloud
Overview: Saaspose.Words
Saaspose.Words is a platform independent REST API used for cloud based document creation, manipulation & conversion. It allows converting document to DOC, DOCX, XPS, TIFF, PDF, HTML, SWF & many other formats. It can be used languages like .NET, Java, PHP, Ruby, Rails, Python, jQuery & many others. It can also be integrated with other cloud services to process documents. Other features include Create & modify watermark, content & formatting manipulation, mail merge abilities, reporting features.
More about Saaspose.Words
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Wednesday, December 12, 2012

Append or Merge Multiple Documents into a Single Document in Cloud

What’s new in this release?
Saaspose development team is thrill to announce the new release of Saaspose.Words. This new release allows appending a list of documents using Saaspose.Words REST API. Your application’s requirements can vary according to different scenarios in today’s web and mobile applications era. You may need to combine and merge many multiple documents into one single document. Saaspose.Words offers an important aspect of document manipulation; appending multiple documents in the cloud. Using Saaspose.Words in your applications, you can integrate cost effective and reliable features and get quality results as per your requirements. This REST API eliminates the need of putting in lots of manual work and efforts to append a list of documents. You can append a list of documents in a single document using Saaspose.Words REST API. You can upload all the input files on Saaspose storage and execute this feature. Once the files are appended in a single document, you can download the MS Word document from Saaspose storage or other supported file storages. You can also directly append multiple documents on your local system without using saving the files to the storage. It is a single call process that uses append document controller resource; it uploads the files to server, appends the files to the document, sends the converted file back as response stream and deletes the source files from the server. You can refer to our documentation that guides through the features and examples of Saaspose.Words. By using Saaspose.Words, you can append or merge multiple documents in a single document. Saaspose.Words offers various features for document creation and manipulation in the cloud. It is a platform independent API and you can integrate it with other file format APIs to use a variety of features for your applications in the cloud. We offer a free development account for evaluation of this feature to append a list of documents. You can sign up at Saaspose and get started with the feature rich APIs in no time.
Newly added documentation pages and articles
Some new tips and articles have now been added into Saaspose.Words documentation that may guide you briefly how to use Saaspose.Words for performing different tasks like the followings.
Overview: Saaspose.Words
Saaspose.Words is a platform independent REST API used for cloud based document creation, manipulation & conversion. It allows converting document to DOC, DOCX, XPS, TIFF, PDF, HTML, SWF & many other formats. It can be used languages like .NET, Java, PHP, Ruby, Rails, Python, jQuery & many others. It can also be integrated with other cloud services to process documents. Other features include Create & modify watermark, content & formatting manipulation, mail merge abilities, reporting features.
More about Saaspose.Words
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Sunday, December 9, 2012

PDF Files Conversion to HTML on Local System or Trough REST Interface

What's New in this Release?
Saaspose.Pdf is a REST API that allows creating, editing and manipulating PDF files in the cloud. Whether its text extraction, image extraction or conversion to other file formats, Saaspose.Pdf has it all in this REST API. You can integrate its feature into your application using any programming language of your choice. Saaspose.Pdf is a suite of exciting features that helps to enhance the productivity of your application. One of these powerful but simple features is conversion of PDF files to other file formats and images using Saaspose.Pdf REST API. Saaspose.Pdf allows you to convert PDF file to HTML in the cloud. You do not need to manually convert the PDF file to HTML; Saaspose.Pdf is there to perform the required tasks in your applications. The conversion of PDF file to HTML generates a unique and permanent link. This link would always be located at the same URL. One of the benefits of this conversion is that you can utilize the code generated by the conversion and place it as per your requirements. As it is a REST API, you only need to consume its REST interface in your application. You can either invoke these REST operations directly using your own code or you can use a REST client for your particular language. You can directly convert PDF files to HTML on your local system using Saaspose.Pdf direct REST interface and SDKs without saving the file to Saaspose storage or any other supported storage. You can use the file path or stream to convert the local PDF file to HTML using Saaspose.Pdf REST API. The file is sent through request stream to Saaspose servers, processed and the output is sent back as response stream. In this case, the file is not saved on Saaspose storage. It is a single call process that uses convert controller resource; it uploads the file to server, converts the file to the desired format, sends the converted file back as response stream and deletes the source file from the server.
Newly added documentation pages and articles
Some new tips and articles have now been added into Saaspose.Pdf documentation that may guide you briefly how to use Saaspose.Pdf  for performing different tasks like the followings.
Overview: Saaspose.Pdf 
Saaspose.Pdf is a REST API to create, edit & manipulate PDF files. It also convert PDF file to DOC, DOCX, HTML, XPS, TIFF etc. You can create a new PDF either from scratch or from HTML, XML, template, database, XPS or an image. A PDF file can also be rendered to JPEG, PNG, GIF, BMP, TIFF and many other image formats. It works with any language like .NET, Java, PHP, Ruby, Python and many others. It is platform independent REST API & working with web, desktop, mobile or cloud applications alike.
More about Saaspose.Pdf
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Thursday, December 6, 2012

Split Excel Worksheet to PDF File & Manage Annotation of PDF in Cloud

What’s new in this release?
Saaspose APIs have provided a platform for web and mobile developers to process the documents with a variety of features. The REST APIs can used to manipulate the documents in the cloud across any platform. We have provided SDK and REST examples for these REST APIs in different programming languages such as .NET, RUBY, Java and PHP that you can utilize in your application. There can be different scenarios while working with documents and their manipulation. You can split excel documents and save pages as PDF using Saaspose.Cells and manage annotations usingSaaspose.Pdf. Saaspose.Cells is a REST API that helps you create, manipulate and convert spreadsheets in the cloud. Saaspose.Pdf is a REST API for creating and editing PDF files and can also be used to convert PDF file to different file formats.
Using a combination of these two REST APIs, you can work with splitting workbooks and managing annotations. Using Saaspose.Cells REST API, you can split all or specific pages of an excel document and save each worksheet as PDF, image or any supported format .You can upload the workbook to Saaspose Storage using Saaspose REST API and split the uploaded workbook using Saaspose.Cells REST examples. You may choose to upload the document at Amazon S3 storage and split the worksheets into PDF files. You can also directly convert the presentations on your local system using Saaspose.Cells REST API and SDKs without saving the file to Saaspose Storage. Once you have performed the split document function, you can then manage the annotations of PDF file through Saaspose.Pdf. By integrating Saaspose.Pdf in your applications, you can get all annotations on a page in PDF file. You can also get the count of all annotations used in a PDF file. You may choose to get selected annotation from a PDF file. Once these annotations are extracted from the PDF file, you can use these annotations, share or print as required. For more information, please refer to Saaspose.Cells and Saaspose.Pdf documentation. Saaspose.Cells provides the best solutions to manipulate the worksheets in the cloud that lets you enjoy a variety of features designed to meet your requirements. Saaspose.Pdf is a feature-rich API that provides the solutions to work with PDF files using any programming language of your choice. Using a combination of these two REST APIs, you can easily achieve quality results of split excel documents and manage annotations of PDF files.
About Saaspose
SaaSpose is a cloud-based document generation, conversion and automation platform for developers. Using SaaSpose makes it easy for Web & Mobile Developers to work with Microsoft Word documents, Microsoft Excel spreadsheets, Microsoft PowerPoint presentations, Adobe PDFs, OpenDocument formats, and email formats and protocols in their Apps.  The SaaSpose REST API enables you to quickly integrate the following into your Web: Document Assembly & Mail-Merge, Reporting, Document Conversion, Text and Image Extraction, Device Targeting, Metadata Removal, Barcode Recognition, Generation & Embedding, Email Templating & Tracking. The REST API can be called from any platform: .NET, Java, Ruby, Salesforce, Amazon etc.
More about Saaspose.Cells
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Tuesday, December 4, 2012

Integrate Google Cloud Storage with Saaspose & Manage Files in Cloud

What’s new in this release?

Saaspose development team is very happy to announce the Google Cloud Storage Integration with Saaspose REST APIs. Saaspose APIs provide flexible and cost effective solutions to small or medium business enterprises. You may choose to combine different APIs and select custom features for your applications to take your cloud computing experience to another level. We have been continuously putting efforts to provide you the best services and based on your feedback and suggestions we add different features to the APIs. At Saaspose, the support for 3rd party platforms has been always an important aspect. We have provided support for several storage options such as Windows Azure, Google Drive, Amazon S3 and Dropbox storage. We are pleased to announce that Google Cloud Storage is now integrated with Saaspose File Format REST APIs. You can integrate your current Google Cloud account with Saaspose cloud API and enjoy quick and easy access to your data around the world. You can configure the Google Cloud storage with Saaspose through our web interface in no time. Firstly, you need to create a project at Google Cloud and get the “Cilent ID” and “Client secret”. Then sign in at Saaspose and open “My Storage”, select “Google Cloud Storage” from “Create New Storage” list on Saaspose. On “Create Google Cloud Storage” page, provide the required data in the fields. You need to provide “Cilent ID” and “Client Secret”, and then click “Generate Token” to fill in rest of the fields. Now save the form and enjoy using Google Cloud storage to store and manage your application data quickly and easily. You can easily access the files uploaded on Google Cloud storage and process the documents in the cloud. You can upload your document including images, spreadsheets, presentations, MS Word documents etc. You can extract text, extract images, manipulate document properties, get formatting information and perform various other functions using Saaspose file format APIs. With integration of 3rd party platforms with Saapose APIs, you can continue using services of external storage providers and keep your files with other storage provides. This adds more flexibility to access your files from these storages and help you process them with a wide range of REST API features. Stay tuned to our blog for more updates and announcements.

About Saaspose

SaaSpose is a cloud-based document generation, conversion and automation platform for developers. Using SaaSpose makes it easy for Web & Mobile Developers to work with Microsoft Word documents, Microsoft Excel spreadsheets, Microsoft PowerPoint presentations, Adobe PDFs, OpenDocument formats, and email formats and protocols in their Apps.  The SaaSpose REST API enables you to quickly integrate the following into your Web: Document Assembly & Mail-Merge, Reporting, Document Conversion, Text and Image Extraction, Device Targeting, Metadata Removal, Barcode Recognition, Generation & Embedding, Email Templating & Tracking. The REST API can be called from any platform: .NET, Java, Ruby, Salesforce, Amazon etc.

More about Saaspose

Contact Information

Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Sunday, December 2, 2012

December 2012 Edition of Saaspose.Newsletter is Out Now

Saaspose Newsletter for December 2012 has now been published that highlights all newly added information, exciting new features & informative blogs about Saaspose APIs & SDKs. This month Saaspose.Words, Saaspose.Slides & Saaspose.Cells have introduced new features for manipulating word documents, convert presentations to images, convert workbook elements to images and extract text from images, Saaspose SDK for Android introduction, Windows Azure Storage Integration with Saaspose & many more.
Tip of the Month: Tip of the Month: Integrate Windows Azure Storage with Saaspose API
Saaspose development team has been continuously putting efforts in providing you the best experience of document manipulation in the cloud. You can now store your files in the cloud through Windows Azure storage and process your documents with the help of Saaspose file format APIs. We have previously introduced 3rd party platforms such as Amazon S3, Dropbox and Google Drive for integration with Saaspose APIs and we are working on more storage providers as per your feedback. The configuration of Windows Azure storage is simple and quick, and you can integrate it with Saaspose through a set of simple steps. You can upload your documents on Windows Azure storage and choose from a variety of features to manipulate the documents. Enjoy the flexibility to process your files from external storage provider with the required features. Keep tuned in to our blog, and documentation. Click here to view more about windows Azure storage integration with Saaspose APIs.
Use Saaspose SDK for Android Applications
Looking for Android applications for your document processing tasks? There is great news for Android developers across the globe to integrate feature-rich APIs in the applications to manipulate the documents. We are currently working on Saaspose SDKs for Android to facilitate the Android developers use a variety of document manipulation features in the applications. You can enhance the performance of your android applications by using Saaspose REST APIs and integrate the required features to manipulate different file formats in the cloud. You can add these Saaspose APIs in your Android applications easily and utilize the SDKs as per your requirements. For instance, you can extract text from documents, calculate formula in worksheets, convert PDF to images, extract images and slides from presentations and perform many such operations on the documents in your Android applications. You can opt for the free development account to evaluate these APIs for your Android applications. Stay tuned to our blog and newsletter for latest updates on Android SDKs and the release announcements. Click here to view more about Saaspose SDK for Android Applications.
Best of Saaspose API Blogs
Stay tuned with the recent updates, features and announcements of Saaspose APIs through Saaspose Blog.
Latest From the Documentation
During the month of November 2012, we have added many examples for various features of Saaspose file format APIs in our documentation. These examples have been added in Saaspose.Words, Saapose.Cells and Saaspose.Barcode. You can utilize these examples in PHP and incorporate features in the applications such as execute mail merge, split excel document, recognize barcode with checksum option, convert document to different file formats etc. You may view a complete list of examples for each API in the following announcement posts
Saaspose API SDK Updates
 During the month of November 2012, we have introduced new features in our SDKs for different programming languages like .NET, Ruby, and PHP. There is a list of features available for each API on Github and you can download the required SDK. The new features are added in most of our APIs such as Saaspose.Words, Saaspose.Cells, Saaspose.Slides etc. These features include execute mail merge template, append a list of documents, convert presentations to other file formats, save barcode etc . For more details, you may refer to the following announcement about Saaspose REST API Features Implemented in SDKs During the Month of November 2012
Collect your copy of Saaspose Newsletter, August 2012 edition
Keep in Touch
There are several ways for you to keep in touch with us. The monthly newsletter is a way for us to keep in touch with you, but we are always interested in hearing from you.
- Ask question from Saaspose Development Team
- Connect with us on Post a question on our Facebook
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Thursday, November 29, 2012

Customize Barcode Size, Generate Barcode with Checksum Option in Cloud

What's New in this Release?
Saaspose.Barcode API allows you to generate barcode images in various formats and recognize barcode from those images as well. You can also set the image resolution of the barcodes. Using this REST API, you can generate barcodes with appropriate code text location. Saaspose.Barcode supports barcode generation with checksum option and it allows rotating the barcode image with suitable angle. You can customize barcode size and set x and y dimensions of barcode as per your requirements. You can provide custom values for width and height of barcode image to generate images with better quality and readability. Similarly, Saaspose.Barcode allows you to specify barcode image margins or you may choose to set the height of bars in the barcode image. Using Saaspose.Barcode REST API, you can specify the format while saving the barcode image. It also facilitates you to specify the codetext and symbology for barcode in your PHP applications. Barcode generation and processing the generated image with a variety of features is a simple task without involving any complicated tasks. From barcode generation to customizing the barcode image resolution, Saaspose.Barcode provides a variety of features that you can incorporate in your applications by utilizing the PHP examples. You can use any required feature or you may choose to use a set of examples offered by this feature-rich API to incorporate the required features in your applications and get quality results in no time.
Newly added documentation pages and articles
Some new tips and articles have now been added into Saaspose.Barcode documentation that may guide you briefly how to use Saaspose.Barcode for performing different tasks like the followings.
Overview: Saaspose.Barcode
Saaspose.Barcode is a cloud based REST API that helps developers to generate new barcode images from scratch, recognize barcodes from images, specify barcode text attributes, set barcode image characteristics like width, height, border style, output format etc. Developers can create barcode using more than 40 symbologies like (1D) EAN13, EAN8, UPCA, UPCE barcode, MSI & Code11 (2D) like PDF417, DataMatrix, Aztec, QR, Italian Post 25 & postal types like Postnet, Planet, USPS OneCode & many more.
More about Saaspose.Barcode
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Wednesday, November 28, 2012

Watermark Text Addition to Word Documents in .NET Applications

This technical tip allows developers to add watermark text to a Word document using Saaspose.Words REST API in your .NET applications. Some important steps for performing this task are to build URI to add watermark text and then serialize the JSON request content. After that, parse the json string to JObject. Developers can use the WatermarkText class and BaseResponse class for adding Watermark text.
Sample Code for Adding Watermark Text to a Word Document
//build URI to add watermark text
            string strURI = "http://api.saaspose.com/v1.0/words/input.docx/insertWatermarkText";
            string signedURI = Sign(strURI);
            //serialize the JSON request content
            WatermarkText watermark = new WatermarkText();
            watermark.Text = "Watermark Text Here";
            watermark.RotationAngle = 45.0;
            string strJSON = JsonConvert.SerializeObject(watermark);
            Stream responseStream = ProcessCommand(signedURI, "POST", strJSON);
            StreamReader reader = new StreamReader(responseStream);
            string strResponse = reader.ReadToEnd();
            //Parse the json string to JObject
            JObject pJSON = JObject.Parse(strResponse);
            BaseResponse baseResponse = JsonConvert.DeserializeObject<BaseResponse>(pJSON.ToString());
            if (baseResponse.Code == "200" && baseResponse.Status == "OK")
               Console.WriteLine("Watermark text has been added successfully");
            //Here is the WatermarkText class            
            public class WatermarkText
            {
                public string Text { get; set; }
                public double RotationAngle { get; set; }
            }
            //Here is the BaseResponse class            
            public class BaseResponse
            {
               public BaseResponse() { }
                public string Code { get; set; }
               public string Status { get; set; }
            }
Overview: Saaspose.Words
Saaspose.Words is a platform independent REST API used for cloud based document creation, manipulation & conversion. It allows converting document to DOC, DOCX, XPS, TIFF, PDF, HTML, SWF & many other formats. It can be used languages like .NET, Java, PHP, Ruby, Rails, Python, jQuery & many others. It can also be integrated with other cloud services to process documents. Other features include Create & modify watermark, content & formatting manipulation, mail merge abilities, reporting features.
More about Saaspose.Words
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Monday, November 26, 2012

Presentation Conversion to Image & Text Recognition from Image in Cloud

What’s new in this release?
Saaspose has been quite successful in getting popular among mobile and web developers due to its useful collection of features for document processing. These APIs support different kinds of document processing and management tasks for MS Word documents, presentations, worksheets and images through web or mobile applications in the cloud. While processing your presentations you may come across scenarios where you need to convert the presentations to images using Saaspose.Slides and recognize text from images using Saaspose.OCR. Saaspose.Slides is a REST API that allows you to create, modify and convert presentations in the cloud whereas Saaspose.OCR is a REST API for optical character recognition and document scanning. Using these two REST APIs you can work with conversion of presentations and text recognition from images. Using Saaspose.Slides, you can convert presentations to different file formats such as images, worksheets etc. You can save a particular slide as image with default size or you may choose to save the slide as image with specified size. You can upload the presentation to Saaspose Storage using Saaspose REST API and can convert the uploaded file to images using Saaspose.Slides REST examples. You can also directly convert the presentations on your local system using Saaspose.Slides REST API and SDKs without saving the file to Saaspose Storage. Using Saapose.OCR REST API, you can recognize text from these images and save to the database. You can also recognize the font attributes from extracted text such as font type, font style and font size through Saaspose.OCR. It supports to recognize a collection of characters from images in different languages like English, French, and Spanish. For more information, please refer to Saaspose.Slides and Saaspose.OCR documentation. Saaspose.Slides is a platform independent API and you can process your presentations in any language across any platform. Saaspose.OCR recognizes a collection of characters from the extracted text and supports different programming languages support for optical character recognition and text extraction from images files. Using a combination of these two REST APIs, you can easily achieve quality results of conversion of slides to images and character recognition.
About Saaspose
SaaSpose is a cloud-based document generation, conversion and automation platform for developers. Using SaaSpose makes it easy for Web & Mobile Developers to work with Microsoft Word documents, Microsoft Excel spreadsheets, Microsoft PowerPoint presentations, Adobe PDFs, OpenDocument formats, and email formats and protocols in their Apps.  The SaaSpose REST API enables you to quickly integrate the following into your Web: Document Assembly & Mail-Merge, Reporting, Document Conversion, Text and Image Extraction, Device Targeting, Metadata Removal, Barcode Recognition, Generation & Embedding, Email Templating & Tracking. The REST API can be called from any platform: .NET, Java, Ruby, Salesforce, Amazon etc.
More about Saaspose.Cells
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Friday, November 23, 2012

Convert Workbook Objects to Image, Extract & Recognize Text from Image

What’s new in this release?
These Saaspose file format APIs have been designed to manipulate and process the documents in cloud across any platform. Saaspose APIs offer to work with MS Word documents, presentations, worksheets, images, barcode, etc. There might be a scenario where developers want to convert workbook elements to images using Saaspose.Cells and extract text from the images using Saaspose.OCR. Saaspose.Cells is a REST API that helps you create, manipulate and convert spreadsheets in the cloud whereas Saaspose.OCR is a REST API for optical character recognition and document scanning. Let’s have a look at how you can use these two REST APIs together to work with spreadsheets and text recognition. A workbook may contain a variety of objects such as auto shapes, charts, ole objects, pictures, etc. You can convert auto shape to image using Saaspose.Cells in your applications. This feature-rich API allows you to convert different charts in a workbook to images. You may choose to convert a single chart or all charts to images. Similarly, you can convert ole object in a workbook to image and convert the pictures to images as well. An ole object may contain different types of external objects and Saaspose.Cells supports the conversion of such objects to images in no time. Also, you can convert a whole worksheet to image using Saaspose.Cells REST API. Once you have performed conversion of workbook elements to images, you can use Saaspose.OCR REST API to recognize text from images and save it to the database. Saaspose.OCR supports a variety of fonts in different styles, like regular, bold, and italic, and different image formats. Saaspose.Cells eliminates the need of any complex operations involved in manipulating the workbooks or working with various elements of a worksheet. Conversion of worksheet objects to images is a significant aspect of worksheets and formatting is not compromised during the conversion to image. Saaspose.OCR recognizes a collection of characters from the extracted text provides support for optical character recognition and text extraction from images files using different programming languages. So using a combination of these two REST APIs, you can easily achieve quality results of image extraction and character recognition.
About Saaspose
SaaSpose is a cloud-based document generation, conversion and automation platform for developers. Using SaaSpose makes it easy for Web & Mobile Developers to work with Microsoft Word documents, Microsoft Excel spreadsheets, Microsoft PowerPoint presentations, Adobe PDFs, OpenDocument formats, and email formats and protocols in their Apps.  The SaaSpose REST API enables you to quickly integrate the following into your Web: Document Assembly & Mail-Merge, Reporting, Document Conversion, Text and Image Extraction, Device Targeting, Metadata Removal, Barcode Recognition, Generation & Embedding, Email Templating & Tracking. The REST API can be called from any platform: .NET, Java, Ruby, Salesforce, Amazon etc.
More about Saaspose.Cells
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Wednesday, November 21, 2012

Saaspose SDK for Android Apps Development is Getting Ready for Release

What’s new in this release?
Saaspose development team is pleased to announce the Saaspose SDK for Android developers is getting ready for release. Android developers can quickly add file processing APIs in their Applications. Saaspose APIs have gained immense popularity across the globe in such a small span of time. Being language independent, these APIs can be utilized in the applications using programming language of your choice such as .NET, Java, Ruby and PHP. Saaspose makes it easy for web and mobile app developers to work with Microsoft Word documents, Microsoft Excel spreadsheets, Microsoft PowerPoint presentations, Adobe PDFs, OpenDocument formats, barcodes, OCR and email formats and protocols in their apps.
Saaspose development team is currently working on Saaspose SDKs for Android to facilitate the Android developers for the document manipulation tasks in the applications. This effort would be of great help for the Android developers to use a variety of document manipulation features in the applications. The Android developers can enhance their applications by using Saaspose REST APIs and integrate the required features to manipulate different file formats in the cloud. This adds great benefit for the Android developers as our SDKs would help them achieving the desired results through simple and efficient steps in no time. For instance, you can extract text from documents, calculate formula in worksheets, convert PDF to images, extract images and slides from presentations and perform many such operations on the documents in your Android applications. You can add these file processing APIs in your Android applications easily and utilize the SDKs as per your requirements. Please refer to our comprehensive documentation of these file format APIs for more information and details on the features and SDKs. If you are not a part of Saaspose family, sign up now and integrate the feature-rich APIs in your Android applications. Get started with Saaspose APIs right away and enjoy a whole new experience of document manipulation. You can opt for the free development account to evaluate these APIs for your Android applications. You may choose to upgrade to our monthly pricing plans that have been prepared to offer you the best value for your required package. Stay tuned to our blog and newsletter for latest updates on Android SDKs and the release announcements. Please feel free to contact us if you have any queries, confusions or suggestions regarding Saaspose SDKs for Android.
About Saaspose
SaaSpose is a cloud-based document generation, conversion and automation platform for developers. Using SaaSpose makes it easy for Web & Mobile Developers to work with Microsoft Word documents, Microsoft Excel spreadsheets, Microsoft PowerPoint presentations, Adobe PDFs, OpenDocument formats, and email formats and protocols in their Apps.  The SaaSpose REST API enables you to quickly integrate the following into your Web: Document Assembly & Mail-Merge, Reporting, Document Conversion, Text and Image Extraction, Device Targeting, Metadata Removal, Barcode Recognition, Generation & Embedding, Email Templating & Tracking. The REST API can be called from any platform: .NET, Java, Ruby, Salesforce, Amazon etc.
More about Saaspose
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Monday, November 19, 2012

Integrate Windows Azure Storage with Saaspose APIs & Manipulate Docs

What’s new in this release?
Saaspose development team is very happy to announce the Windows Azure storage Integration with Saaspose File Format REST API. Saaspose team has always been putting efforts to give you a remarkable experience of cloud computing on 3rd party platforms. As we have previously introduced support for Google Drive storage, Amazon S3 storage and Dropbox storage integration with Saaspose APIs, we are pleased to announce that Saaspose now supports Windows Azure storage. You can store your files in the cloud through Windows Azure storage and process your documents with the help of Saaspose file format APIs.
The configuration of Windows Azure storage is simple and quick, and you can integrate it with Saaspose through a set of simple steps. Firstly, you need to create an application at Windows Azure and get the “Account name” and “Account key”. Then sign in at Saaspose and open “My Storage”, select “Windows Azure Storage” from “Create New Storage” list on Saaspose. On “Create Windows Azure Storage” page, provide the required data in the fields. You need to provide “Storage Name”, “Account Name” and “Account Key” in the form fields. Click “Save” to confirm the provided information and enjoy using Windows Azure storage with Saaspose API. Saaspose file format APIs allow you to process your files and perform multiple operations on your documents. You can upload your documents on Windows Azure storage and choose from a variety of features to manipulate the documents. For example, you can upload your presentations on the storage and save single slide or multiple slides as images using Saaspose.Slides REST API. Similarly, you can also extract text,extract images, convert documents to other file formats, and calculate formula in a worksheet using Saaspose APIs for different file formats such as PDF files, presentations, documents and images uploaded on Windows Azure storage. Windows Azure storage integration with Saaspose APIs has added the flexibility to process your files from external storage providers helps you access your files and process them with a wide range of REST API features. Stay tuned to our newsletter and blog for the latest updates about storage integration. We look forward to your valuable feedback to improve our services, or you may write to us in case of any queries.
About Saaspose
SaaSpose is a cloud-based document generation, conversion and automation platform for developers. Using SaaSpose makes it easy for Web & Mobile Developers to work with Microsoft Word documents, Microsoft Excel spreadsheets, Microsoft PowerPoint presentations, Adobe PDFs, OpenDocument formats, and email formats and protocols in their Apps.  The SaaSpose REST API enables you to quickly integrate the following into your Web: Document Assembly & Mail-Merge, Reporting, Document Conversion, Text and Image Extraction, Device Targeting, Metadata Removal, Barcode Recognition, Generation & Embedding, Email Templating & Tracking. The REST API can be called from any platform: .NET, Java, Ruby, Salesforce, Amazon etc.
More about Saaspose
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465

Thursday, November 15, 2012

Read & Recognize Barcode from External Image URL Using REST API

This technical tip allows developers to read barcode from external image URL using Saaspose.BarCode REST API in your Java applications. Some important steps for performing this task is to build URI for reading barcode, sending the request to Saaspose server, parse and Deserializes the JSON to an object and display the value and type of all the recognized barcodes.
Sample Code for Reading Barcode from external image URL
//build URI to read barcode
            //type:  Codabar, Code11, Code128 and Code39Extended etc.
            String strURI = "http://api.saaspose.com/v1.0/barcode/recognize?type=QR&url=http://upload.wikimedia.org/wikipedia/commons/c/ce/WikiQRCode.png";
            // Send the request to Saaspose server
            InputStream responseStream = ProcessCommand(Sign(strURI), "POST");
            // Read the response
            String strJSON = StreamToString(responseStream);
            //Parse and Deserializes the JSON to a object.
            RecognitionResponse barcodeRecognitionResponse = gson.fromJson(strJSON,RecognitionResponse.class);
            List<RecognizedBarCode> barcodes = barcodeRecognitionResponse.getBarcodes();
       
            // Display the value and type of all the recognized barcodes
            for (RecognizedBarCode barcode : barcodes)
            {
                System.out.println("Codetext: " + barcode.BarcodeValue() + "\nType: " + barcode.getBarcodeType());
            }
            \\Here is the RecognitionResponse class
            public class RecognitionResponse extends BaseResponse
            {
                private List<RecognizedBarCode> Barcodes ;
                public List<RecognizedBarCode> getBarcodes(){return Barcodes;}
            }
            \\Here is the RecognizedBarCode class        
            public class RecognizedBarCode
            {
                private String BarcodeType ;
                private String BarcodeValue;
                public String getBarcodeType(){return BarcodeType;}
                public String BarcodeValue(){return BarcodeValue;}
            }
            \\Here is the BaseResponse class     
            public class BaseResponse
            {
                public BaseResponse() { }
                private String Code;
                private String Status;
                public String getCode(){return Code;}
                public String getStatus(){return Status;}
                public void  setCode(String temCode){ Code=temCode;}
                public void setStatus(String temStatus){ Status=temStatus;}
            }
Overview: Saaspose.Barcode  
Saaspose.Barcode is a cloud based REST API that helps developers to generate new barcode images from scratch, recognize barcodes from images, specify barcode text attributes, set barcode image characteristics like width, height, border style, output format etc. Developers can create barcode using more than 40 symbologies like (1D) EAN13, EAN8, UPCA, UPCE barcode, MSI & Code11 (2D) like PDF417, DataMatrix, Aztec, QR, Italian Post 25 & postal types like Postnet, Planet, USPS OneCode & many more.
More about Saaspose.BarCode
Contact Information
Aspose Pty Ltd, Suite 163,
79 Longueville Road
Lane Cove, NSW, 2066
Australia
Saaspose - Your File Format Experts 2.0
sales@aspose.com
Phone: 1.214.329.1520
Fax: 866.810.9465