Giter Club home page Giter Club logo

dxemflib's Introduction

DxEmfLib

Dll project that wraps Emf2Pdf and libharu in a simple API to convert EMF files into PDF files. The purpose is to be used from C# code.

The libharu library was cloned from https://github.com/libharu/libharu, commit d84867e on Jun 28, 2015 and compiled for Win32/x64 and Debug/Release. The binaries of libharu are checked in for convenience, not the source code. The files Emf2Pdf.[h/cpp] were copied directly from https://github.com/APerricone/emf2pdf, commit 35fc130 on Nov 4, 2019.

API

// Resets the converter to an empty state.
void DxEmfLibReset()
// Appends an EMF file to the converter.
void DxEmfLibAddFile(const char* filename);
// Produces a PDF file from the current state.
void DxEmfLibPersist(const char* filename);

Sample C# code

using System;
using System.Runtime.InteropServices;

namespace DxEmfLibTest
{
    class Program
    {
        [DllImport("DxEmfLib.dll")]
        static public extern IntPtr DxEmfLibReset();

        [DllImport("DxEmfLib.dll")]
        static public extern void DxEmfLibAddFile(String filename);

        [DllImport("DxEmfLib.dll")]
        static public extern void DxEmfLibPersist(String filename);

        static void Main(string[] args)
        {
            DxEmfLibReset();

            DxEmfLibAddFile("emfFile1.emf");
            DxEmfLibAddFile("emfFile2.emf");

            DxEmfLibPersist("pdfFile1.pdf");


            DxEmfLibReset();

            DxEmfLibAddFile("emfFile3.emf");
            DxEmfLibAddFile("emfFile4.emf");

            DxEmfLibPersist("pdfFile2.pdf");
        }
    }
}

dxemflib's People

Contributors

thierryseegers avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.