コード例 #1
0
        public DpofJobSection(int printId, string relativeFilePath, int count, DpofImageFormat format)
        {
            var parameters = new List <DpofParameter>
            {
                new PrtPid(printId),
                new PrtTypStd(),
                new PrtQty(count),
                new ImgFmt(format),
                new ImgSrc(relativeFilePath)
            };

            _parameters = parameters;
        }
コード例 #2
0
ファイル: ImgFmt.cs プロジェクト: aurigma/PhotoKiosk
 public ImgFmt(DpofImageFormat format)
 {
     _format = format;
 }
コード例 #3
0
        public DpofNoritsuJobSection(int printId, string relativeFilePath, int count, DpofImageFormat format) : base(printId, relativeFilePath, count, format)
        {
            var parameters = new List <DpofParameter>
            {
                new PrtPid(printId),
                new PrtTypStd(),
                new PrtQty(count),
                new ImgFmt(format),
                new ImgSrc(relativeFilePath),
                new VuqRgn(VuqRgn.VuqRgnType.Begin),
                new VuqVnm("NORITSU KOKI", "QSSPrint"),
                new VuqVer(1, 0),
                new VuqRgn(VuqRgn.VuqRgnType.End)
            };

            _parameters = parameters;
        }