Пример #1
0
 public static int pixacompGetBoxGeometry(this PixaComp pixac, int index, out int px, out int py, out int pw, out int ph)
 {
     throw new NotImplementedException();
 }
Пример #2
0
 // Pixacomp addition/replacement
 public static int pixacompAddPix(this PixaComp pixac, Pix pix, int comptype)
 {
     throw new NotImplementedException();
 }
Пример #3
0
 public static int pixacompReplacePix(this PixaComp pixac, int index, Pix pix, int comptype)
 {
     throw new NotImplementedException();
 }
Пример #4
0
 // Conversion to pdf
 public static int pixacompConvertToPdf(this PixaComp pixac, int res, float scalefactor, PdfFormattedEncodingTypes type, int quality, string title, string fileout)
 {
     return(Native.DllImports.pixacompConvertToPdf((HandleRef)pixac, res, scalefactor, (int)type, quality, title, fileout));
 }
Пример #5
0
 // Output for debugging
 public static int pixacompWriteStreamInfo(IntPtr fp, PixaComp pixac, string text)
 {
     throw new NotImplementedException();
 }
Пример #6
0
        public static PixaComp pixacompInterleave(this PixaComp pixac1, PixaComp pixac2)
        {
            var pointer = Native.DllImports.pixacompInterleave((HandleRef)pixac1, (HandleRef)pixac2);

            return(new PixaComp(pointer));
        }
Пример #7
0
 public static int pixacompWriteStream(IntPtr fp, PixaComp pixac)
 {
     throw new NotImplementedException();
 }
Пример #8
0
 // Conversion to pdf
 public static int pixacompConvertToPdf(this PixaComp pixac, int res, float scalefactor, int type, int quality, string title, string fileout)
 {
     throw new NotImplementedException();
 }
Пример #9
0
 public static int pixacompAddBox(this PixaComp pixac, HandleRef box, int copyflag)
 {
     throw new NotImplementedException();
 }
Пример #10
0
 public static PixaComp pixacompInterleave(this PixaComp pixac1, PixaComp pixac2)
 {
     throw new NotImplementedException();
 }
Пример #11
0
 public static int pixacompWrite(string filename, PixaComp pixac)
 {
     throw new NotImplementedException();
 }
Пример #12
0
 // Combining pixacomp
 public static int pixacompJoin(this PixaComp pixacd, PixaComp pixacs, int istart, int iend)
 {
     throw new NotImplementedException();
 }
Пример #13
0
 // Pixacomp conversion to Pixa
 public static Pixa pixaCreateFromPixacomp(this PixaComp pixac, int accesstype)
 {
     throw new NotImplementedException();
 }
Пример #14
0
 public static int pixacompSetOffset(this PixaComp pixac, int offset)
 {
     throw new NotImplementedException();
 }
Пример #15
0
        // Pixacomp conversion to Pixa
        public static Pixa pixaCreateFromPixacomp(this PixaComp pixac, AccessAndStorageFlags accesstype)
        {
            var pointer = Native.DllImports.pixaCreateFromPixacomp((HandleRef)pixac, (int)accesstype);

            return(new Pixa(pointer));
        }
Пример #16
0
        public static PixComp pixacompGetPixcomp(this PixaComp pixac, int index, AccessAndStorageFlags copyflag)
        {
            var pointer = Native.DllImports.pixacompGetPixcomp((HandleRef)pixac, index, (int)copyflag);

            return(new PixComp(pointer));
        }
Пример #17
0
 // Combining pixacomp
 public static int pixacompJoin(this PixaComp pixacd, PixaComp pixacs, int istart, int iend)
 {
     return(Native.DllImports.pixacompJoin((HandleRef)pixacd, (HandleRef)pixacs, istart, iend));
 }
Пример #18
0
        public static Pix pixacompGetPix(this PixaComp pixac, int index)
        {
            var pointer = Native.DllImports.pixacompGetPix((HandleRef)pixac, index);

            return(new Pix(pointer));
        }
Пример #19
0
 public static int pixacompWrite(string filename, PixaComp pixac)
 {
     return(Native.DllImports.pixacompWrite(filename, (HandleRef)pixac));
 }
Пример #20
0
 public static int pixacompGetPixDimensions(this PixaComp pixac, int index, out int pw, out int ph, out int pd)
 {
     return(Native.DllImports.pixacompGetPixDimensions((HandleRef)pixac, index, out pw, out ph, out pd));
 }
Пример #21
0
 public static int pixacompWriteMem(out IntPtr pdata, IntPtr psize, PixaComp pixac)
 {
     throw new NotImplementedException();
 }
Пример #22
0
 public static int pixacompGetBoxaCount(this PixaComp pixac)
 {
     return(Native.DllImports.pixacompGetBoxaCount((HandleRef)pixac));
 }
Пример #23
0
 public static int pixacompConvertToPdfData(this PixaComp pixac, int res, float scalefactor, int type, int quality, string title, out IntPtr pdata, IntPtr pnbytes)
 {
     throw new NotImplementedException();
 }
Пример #24
0
        public static Box pixacompGetBox(this PixaComp pixac, int index, AccessAndStorageFlags accesstype)
        {
            var pointer = Native.DllImports.pixacompGetBox((HandleRef)pixac, index, (int)accesstype);

            return(new Box(pointer));
        }
Пример #25
0
 public static Pix pixacompDisplayTiledAndScaled(this PixaComp pixac, int outdepth, int tilewidth, int ncols, int background, int spacing, int border)
 {
     throw new NotImplementedException();
 }
Пример #26
0
 public static int pixacompGetBoxGeometry(this PixaComp pixac, int index, out int px, out int py, out int pw, out int ph)
 {
     return(Native.DllImports.pixacompGetBoxGeometry((HandleRef)pixac, index, out px, out py, out pw, out ph));
 }
Пример #27
0
 public static int pixacompAddPixcomp(this PixaComp pixac, PixComp pixc, int copyflag)
 {
     throw new NotImplementedException();
 }
Пример #28
0
 public static int pixacompSetOffset(this PixaComp pixac, int offset)
 {
     return(Native.DllImports.pixacompSetOffset((HandleRef)pixac, offset));
 }
Пример #29
0
 public static int pixacompReplacePixcomp(this PixaComp pixac, int index, PixComp pixc)
 {
     throw new NotImplementedException();
 }
Пример #30
0
 public static Box pixacompGetBox(this PixaComp pixac, int index, int accesstype)
 {
     throw new NotImplementedException();
 }