Example #1
0
        public void render_operators()
        {
            for (int i = 0; i < m_page_count; i++)
            {
                int page_idx = i;

                if (page_idx != 0)
                {
                    m_document.NewPage();
                }

                m_direct_op.BT();
                m_direct_op.Tf("times", 100);
                m_direct_op.Td(4950, m_show_page_num ? 200 : -200);
                string page_num = (page_idx + 1).ToString();
                m_direct_op.Tj(page_num);
                m_direct_op.ET();

                if (m_op_page_map.ContainsKey(page_idx))
                {
                    foreach (var opr_name in m_op_page_map[page_idx])
                    {
                        Int64 x      = 0;
                        Int64 y      = 0;
                        Int64 width  = m_page_property.RESOLUTION;
                        Int64 height = m_page_property.RESOLUTION;

                        Int64 rows    = 1;
                        Int64 columns = 1;

                        if (m_style_root[opr_name] != null)
                        {
                            if (m_style_root[opr_name]["x"] != null)
                            {
                                x = (Int64)m_style_root[opr_name]["x"];
                            }

                            if (m_style_root[opr_name]["y"] != null)
                            {
                                y = (Int64)m_style_root[opr_name]["y"];
                            }

                            if (m_style_root[opr_name]["width"] != null)
                            {
                                width = (Int64)m_style_root[opr_name]["width"];
                            }

                            if (m_style_root[opr_name]["height"] != null)
                            {
                                height = (Int64)m_style_root[opr_name]["height"];
                            }

                            if (m_style_root[opr_name]["rows"] != null)
                            {
                                rows = (Int64)m_style_root[opr_name]["rows"];
                            }

                            if (m_style_root[opr_name]["columns"] != null)
                            {
                                columns = (Int64)m_style_root[opr_name]["columns"];
                            }
                        }

                        for (Int64 r = 0; r < rows; r++)
                        {
                            for (Int64 c = 0; c < columns; c++)
                            {
                                Int64 cell_x = x + c * width / columns;
                                Int64 cell_y = y + (rows - r - 1) * height / rows;

                                Int64 cell_width  = width / columns;
                                Int64 cell_height = height / rows;

                                DKOperators draw_imp = new DKOperators(m_direct_content, m_page_property, m_font_factory, m_direct_op);

                                draw_imp.SetMetrics(cell_x, cell_y, cell_width, cell_height);
                                draw_imp.Render(m_custom_oprs, opr_name, r * columns + c, rows * columns);
                            }
                        }
                    }
                }
            }
        }
Example #2
0
        public void Render(Dictionary <string, List <string> > custom_oprs, string opr_name, Int64 idx, Int64 cells)
        {
            //int operator_count = operators.Count;
            //for (int j = 0; j < operator_count; j++)
            foreach (var item in custom_oprs)
            {
                //int op_content_count = ((JArray)operators[j]["contents"]).Count;

                //for (int oc = 0; oc < op_content_count; oc++)
                //foreach (string op_content in op_contents)
                if (item.Key == opr_name)
                {
                    //string op_content = (string)operators[j]["contents"][oc];
                    List <string> op_contents = item.Value;

                    string content = string.Join("", op_contents.ToArray());
                    if (cells == 1)
                    {
                        op_contents.Clear();
                        op_contents.Add(content);
                    }

                    for (int i = 0; i < op_contents.Count; i++)
                    {
                        if ((i % cells) == idx)
                        {
                            //custom_oprs.Remove("main");
                            string[] opstrs = op_contents[i].Split(';');

                            string op_pattern = @"(\w*)\((.*)\)";
                            foreach (var opstr in opstrs)
                            {
                                string opstr1 = opstr.Trim();
                                Match  result = Regex.Match(opstr1, op_pattern);
                                if (result != Match.Empty)
                                {
                                    string opr        = result.Groups[1].Value;
                                    string oprnds_str = result.Groups[2].Value;

                                    string[] oprnds = oprnds_str.Split(',');
                                    if (opr == "Tj")
                                    {
                                        oprnds_str = oprnds_str.Trim('\"');
                                    }


                                    for (int l = 0; l < oprnds.Length; l++)
                                    {
                                        oprnds[l] = oprnds[l].Trim();
                                    }

                                    if (opr == "frame" && oprnds.Length == 4)
                                    {
                                        SetMetrics(
                                            Int64.Parse(oprnds[0]),
                                            Int64.Parse(oprnds[1]),
                                            Int64.Parse(oprnds[2]),
                                            Int64.Parse(oprnds[3]));
                                    }
                                    else if (custom_oprs.ContainsKey(opr))
                                    {
                                        Dictionary <string, List <string> > sub_custom_oprs = new Dictionary <string, List <string> >(custom_oprs);
                                        //sub_custom_oprs["main"] = custom_oprs[opr];
                                        Render(sub_custom_oprs, opr, 0, 1);
                                    }
                                    else if (opr == "Bg" && oprnds.Length == 3)
                                    {
                                        m_direct_op.Bg(int.Parse(oprnds[0]), int.Parse(oprnds[1]), int.Parse(oprnds[2]));
                                    }
                                    else if (opr == "fill")
                                    {
                                        if (oprnds.Length == 1 && oprnds[0] == "")
                                        {
                                            m_direct_op.fill();
                                        }
                                        else if (oprnds.Length == 3)
                                        {
                                            m_direct_op.fill(int.Parse(oprnds[0]), int.Parse(oprnds[1]), int.Parse(oprnds[2]));
                                        }
                                    }
                                    else if (opr == "stroke")
                                    {
                                        if (oprnds.Length == 1 && oprnds[0] == "")
                                        {
                                            m_direct_op.stroke();
                                        }
                                        else if (oprnds.Length == 3)
                                        {
                                            m_direct_op.stroke(int.Parse(oprnds[0]), int.Parse(oprnds[1]), int.Parse(oprnds[2]));
                                        }
                                    }
                                    else if (opr == "fs")
                                    {
                                        if (oprnds.Length == 1 && oprnds[0] == "")
                                        {
                                            m_direct_op.fillStroke();
                                        }
                                    }
                                    else if (opr == "BT")
                                    {
                                        m_direct_op.BT();
                                    }
                                    else if (opr == "ET")
                                    {
                                        m_direct_op.ET();
                                    }
                                    else if (opr == "closePath")
                                    {
                                        m_direct_op.closePath();
                                    }
                                    else if (opr == "saveState")
                                    {
                                        m_direct_op.saveState();
                                    }
                                    else if (opr == "Tr" && oprnds.Length == 1)
                                    {
                                        m_direct_op.Tr(int.Parse(oprnds[0]));
                                    }
                                    else if (opr == "Td" && oprnds.Length == 2)
                                    {
                                        m_direct_op.Td(dkw(Int64.Parse(oprnds[0])), dkh(Int64.Parse(oprnds[1])));
                                    }
                                    else if (opr == "w" && oprnds.Length == 1)
                                    {
                                        m_direct_op.w(dkrh(Int64.Parse(oprnds[0])));
                                    }
                                    else if (opr == "Tc" && oprnds.Length == 1)
                                    {
                                        m_direct_op.Tc(dkrh(Int64.Parse(oprnds[0])));
                                    }
                                    else if (opr == "Tw" && oprnds.Length == 1)
                                    {
                                        m_direct_op.Tw(dkrh(Int64.Parse(oprnds[0])));
                                    }
                                    else if (opr == "TL" && oprnds.Length == 1)
                                    {
                                        m_direct_op.TL(dkrh(Int64.Parse(oprnds[0])));
                                    }
                                    else if (opr == "Tz" && oprnds.Length == 1)
                                    {
                                        m_direct_op.Tz(dkrh(Int64.Parse(oprnds[0])));
                                    }
                                    else if (opr == "Ts" && oprnds.Length == 1)
                                    {
                                        m_direct_op.Ts(dkrh(Int64.Parse(oprnds[0])));
                                    }
                                    else if (opr == "Tf" && oprnds.Length == 2)
                                    {
                                        m_direct_op.Tf(oprnds[0], dkrh(Int64.Parse(oprnds[1])));
                                    }
                                    else if (opr == "Tj")
                                    {
                                        m_direct_op.Tj(oprnds_str);
                                    }
                                    else if (opr == "J" && oprnds.Length == 1)
                                    {
                                        m_direct_op.J(int.Parse(oprnds[0]));
                                    }
                                    else if (opr == "j" && oprnds.Length == 1)
                                    {
                                        m_direct_op.j(int.Parse(oprnds[0]));
                                    }
                                    else if (opr == "M" && oprnds.Length == 1)
                                    {
                                        m_direct_op.M(int.Parse(oprnds[0]));
                                    }
                                    else if (opr == "moveTo" && oprnds.Length == 2)
                                    {
                                        m_direct_op.moveTo(dkw(Convert.ToInt64(Double.Parse(oprnds[0]))), dkh(Convert.ToInt64(Int64.Parse(oprnds[1]))));
                                    }
                                    else if (opr == "lineTo" && oprnds.Length == 2)
                                    {
                                        m_direct_op.lineTo(dkw(Convert.ToInt64(Double.Parse(oprnds[0]))), dkh(Convert.ToInt64(Double.Parse(oprnds[1]))));
                                    }
                                    else if (opr == "line" && oprnds.Length == 4)
                                    {
                                        m_direct_op.line(
                                            dkw(Int64.Parse(oprnds[0])),
                                            dkh(Int64.Parse(oprnds[1])),
                                            dkw(Int64.Parse(oprnds[2])),
                                            dkh(Int64.Parse(oprnds[3])));
                                    }
                                    else if (opr == "curveTo" && oprnds.Length == 6)
                                    {
                                        m_direct_op.curveTo(
                                            dkw(Convert.ToInt64(Double.Parse(oprnds[0]))), dkh(Convert.ToInt64(Double.Parse(oprnds[1]))),
                                            dkw(Convert.ToInt64(Double.Parse(oprnds[2]))), dkh(Convert.ToInt64(Double.Parse(oprnds[3]))),
                                            dkw(Convert.ToInt64(Double.Parse(oprnds[4]))), dkh(Convert.ToInt64(Double.Parse(oprnds[5]))));
                                    }
                                    else if (opr == "rect" && oprnds.Length == 4)
                                    {
                                        m_direct_op.rect(
                                            dkw(Int64.Parse(oprnds[0])), dkh(Int64.Parse(oprnds[1])),
                                            dkrw(Int64.Parse(oprnds[2])), dkrh(Int64.Parse(oprnds[3])));
                                    }
                                    else if (opr == "grid" && oprnds.Length == 6)
                                    {
                                        m_direct_op.grid(
                                            dkw(Int64.Parse(oprnds[0])), dkh(Int64.Parse(oprnds[1])),
                                            dkrw(Int64.Parse(oprnds[2])), dkrh(Int64.Parse(oprnds[3])),
                                            Int64.Parse(oprnds[4]), Int64.Parse(oprnds[5]));
                                    }
                                    else if (opr == "dash" && oprnds.Length == 1)
                                    {
                                        m_direct_op.dash(Int64.Parse(oprnds[0]));
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }