Exemple #1
0
        // Other
        public static int cidConvertToPdfData(this L_Compressed_Data cid, string title, out IntPtr pdata, IntPtr pnbytes)
        {
            if (null == cid)
            {
                throw new ArgumentNullException("cid cannot be null.");
            }

            return(Native.DllImports.cidConvertToPdfData((HandleRef)cid, title, out pdata, pnbytes));
        }
Exemple #2
0
        public static void l_CIDataDestroy(this L_Compressed_Data pcid)
        {
            if (null == pcid)
            {
                throw new ArgumentNullException("pcid cannot be null");
            }

            var pointer = (IntPtr)pcid;

            Native.DllImports.l_CIDataDestroy(ref pointer);
        }
Exemple #3
0
 public static IntPtr generateG4PS(string filein, L_Compressed_Data cid, float xpt, float ypt, float wpt, float hpt, int maskflag, int pageno, int endpage)
 {
     throw new NotImplementedException();
 }