Example #1
0
 public static object GenerarImpresion(Sesion sesion, CotizacionItem item)
 {
     object resultado = new { };
     try
     {
         object[] datos = GenerarImpresion(item);
         resultado = new { correcto = true, imgBase64 = datos[0], valPZSI = datos[1] };
     }
     catch (Exception)
     {
         resultado = new { correcto = false };
     }
     return resultado;
 }
Example #2
0
        private static List<object[]> OptimizarPrecorte(CotizacionItem item)
        {
            List<object[]> opciones = new List<object[]>();

            var xMAT = Convert.ToInt32(item.material.alto * 10);
            var yMAT = Convert.ToInt32(item.material.largo * 10);

            var xPZ = Convert.ToInt32(item.valXFI * 10);
            var yPZ = Convert.ToInt32(item.valYFI * 10);

            var xPZG = yPZ;
            var yPZG = xPZ;

            int cantidad_columnas = Math.Max(yMAT, xMAT) / Math.Min(yPZ, xPZ);

            List<bool[]> columnas = new List<bool[]>();

            for (int i = 0; i < cantidad_columnas; i++)
            {
                bool[] obj = new bool[cantidad_columnas];
                for (int j = 0; j < cantidad_columnas; j++)
                {
                    if (j <= i)
                    {
                        obj[j] = true;
                    }
                    else
                    {
                        obj[j] = false;
                    }
                }
                columnas.Add(obj);
            }

            foreach (bool[] array in columnas)
            {
                Bitmap b;
                b = new Bitmap(xMAT, yMAT);
                Graphics g = Graphics.FromImage(b);
                g.Clear(Color.White);

                Pen MyPen = new Pen(System.Drawing.Color.Black, 1);
                //Pen MyPen2 = new Pen(System.Drawing.Color.Red, 1);
                g.DrawRectangle(MyPen, new Rectangle(0, 0, xMAT - 1, yMAT - 1));

                int incremento_x = 0;
                int incremento_y = 0;

                int cantidad_piezas = 0;
                int numero_columna = 0;

                int sum_x = 0;
                int sum_y = 0;

                while (sum_x + incremento_x <= xMAT)
                {
                    incremento_x = array[numero_columna] ? xPZG : xPZ;
                    incremento_y = array[numero_columna] ? yPZG : yPZ;
                    while (sum_y + incremento_y <= yMAT)
                    {
                        g.DrawRectangle(MyPen, new Rectangle(sum_x, sum_y, incremento_x, incremento_y));
                        sum_y += incremento_y;
                        cantidad_piezas++;
                    }
                    sum_x += incremento_x;
                    numero_columna++;
                    sum_y = 0;
                    if (numero_columna < array.Length)
                    {
                        incremento_x = array[numero_columna] ? xPZG : xPZ;
                    }
                }

                if (cantidad_piezas > item.valPZSP)
                {
                    System.IO.MemoryStream ms = new System.IO.MemoryStream();
                    b.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);

                    byte[] byteImage = ms.ToArray();
                    string imgBase64 = Convert.ToBase64String(byteImage);

                    opciones.Add(new object[] { cantidad_piezas, imgBase64 });
                }
            }

            //var opciones1 = opciones.Distinct().ToList();

            return opciones;
        }
Example #3
0
        private static object[] GenerarImpresion(CotizacionItem item)
        {
            var xFI = Convert.ToInt32((Math.Max(item.valXFI, item.valYFI) * 10)) / item.metodoImpresion.fcX;
            var yFI = Convert.ToInt32((Math.Min(item.valXFI, item.valYFI) * 10)) / item.metodoImpresion.fcY;

            var valSEPX = Convert.ToInt32(item.valSEPX * 10);
            var valSEPY = Convert.ToInt32(item.valSEPY * 10);

            var xPZ = 0;
            var yPZ = 0;

            if (item.flagGIR)
            {
                xPZ = Convert.ToInt32(item.valYMA * 10);
                yPZ = Convert.ToInt32(item.valXMA * 10);
            }
            else
            {
                xPZ = Convert.ToInt32(item.valXMA * 10);
                yPZ = Convert.ToInt32(item.valYMA * 10);
            }

            Bitmap b_;
            b_ = new Bitmap(xFI, yFI);

            Graphics g_ = Graphics.FromImage(b_);
            g_.Clear(Color.White);

            Pen p_ = new Pen(System.Drawing.Color.Black, 1);

            g_.DrawRectangle(p_, new Rectangle(0, 0, xFI - 1, yFI - 1));

            int valPZSI = 0;

            for (int x = xPZ; x <= xFI; x += xPZ)
            {
                for (int y = yPZ; y <= yFI; y += yPZ)
                {
                    g_.DrawRectangle(p_, new Rectangle(x - xPZ, y - yPZ, xPZ, yPZ));
                    valPZSI++;
                    y += valSEPY;
                }
                x += valSEPX;
            }

            Bitmap b;

            if (item.metodoImpresion.fcX > 1 || item.metodoImpresion.fcY > 1)
            {
                xFI = Convert.ToInt32(Math.Max(item.valXFI, item.valYFI) * 10);
                yFI = Convert.ToInt32(Math.Min(item.valXFI, item.valYFI) * 10);

                b = new Bitmap(xFI, yFI);
                Graphics g = Graphics.FromImage(b);

                Font font = new System.Drawing.Font("Arial", 40, FontStyle.Regular);
                Brush brush = new SolidBrush(System.Drawing.Color.Red);

                if (item.metodoImpresion.fcX > 1)
                {
                    string[] letras = item.metodoImpresion.letras.Split(',');
                    for (int i = 0; i < item.metodoImpresion.fcX; i++)
                    {
                        g.DrawImage(b_, i * b_.Width, 0);
                        g.DrawString(letras[i], font, brush, (i * b_.Width), 0);
                    }
                    valPZSI = valPZSI * item.metodoImpresion.fcX;
                }

                if (item.metodoImpresion.fcY > 1)
                {
                    string[] letras = item.metodoImpresion.letras.Split(',');
                    for (int i = 0; i < item.metodoImpresion.fcY; i++)
                    {
                        g.DrawImage(b_, 0, i * b_.Height);
                        g.DrawString(letras[i], font, brush, (b_.Width / 2) - 20, (i * b_.Height));
                    }
                    valPZSI = valPZSI * item.metodoImpresion.fcY;
                }
            }
            else { b = b_; }

            System.IO.MemoryStream ms = new System.IO.MemoryStream();
            b.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);

            byte[] byteImage = ms.ToArray();
            string imgBase64 = Convert.ToBase64String(byteImage);

            return new object[] { imgBase64, valPZSI };
        }
Example #4
0
        private static object[] GenerarPrecorte(CotizacionItem item)
        {
            var xMAT = Convert.ToInt32(item.material.alto * 10);
            var yMAT = Convert.ToInt32(item.material.largo * 10);

            var xPZ = 0;
            var yPZ = 0;

            if (item.flagGPR)
            {
                xPZ = Convert.ToInt32(item.valYFI * 10);
                yPZ = Convert.ToInt32(item.valXFI * 10);
            }
            else
            {
                xPZ = Convert.ToInt32(item.valXFI * 10);
                yPZ = Convert.ToInt32(item.valYFI * 10);
            }

            Bitmap b;
            b = new Bitmap(xMAT, yMAT);

            Graphics g = Graphics.FromImage(b);
            g.Clear(Color.White);

            Pen p = new Pen(System.Drawing.Color.Black, 1);

            g.DrawRectangle(p, new Rectangle(0, 0, xMAT - 1, yMAT - 1));

            int valPZSP = 0;

            for (int x = xPZ; x <= xMAT; x += xPZ)
            {
                for (int y = yPZ; y <= yMAT; y += yPZ)
                {
                    g.DrawRectangle(p, new Rectangle(x - xPZ, y - yPZ, xPZ, yPZ));
                    valPZSP++;
                }
            }

            System.IO.MemoryStream ms = new System.IO.MemoryStream();
            b.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);

            byte[] byteImage = ms.ToArray();
            string imgBase64 = Convert.ToBase64String(byteImage);

            return new object[] { imgBase64, valPZSP };
        }
Example #5
0
 public static object OptimizarPrecorte(Sesion sesion, CotizacionItem item)
 {
     object resultado = new { };
     try
     {
         List<object[]> opciones = OptimizarPrecorte(item);
         resultado = new { correcto = true, opciones = opciones };
     }
     catch (Exception)
     {
         resultado = new { correcto = false };
     }
     return resultado;
 }