Beispiel #1
0
        private void button3_Click(object sender, EventArgs e)
        {
            PdfTron tron = new PdfTron();

            tron.example1_basic    = false;
            tron.example2_xml      = true;
            tron.example3_wordlist = false;
            tron.example4_advanced = false;
            tron.ReadAdvanced(textBox1.Text);
            richTextBox1.Text = tron.ConsoleLog;
        }
Beispiel #2
0
        private void button1_Click(object sender, EventArgs e)
        {
            PdfTron tron = new PdfTron();

            //tron.RunPdfTron(textBox1.Text);
            //richTextBox1.Text = tron.ConsoleLog;



            tron.ReadTextFromCoordinates(textBox1.Text, 1, int.Parse(textBoxURX.Text), int.Parse(textBoxURY.Text), int.Parse(textBoxLLX.Text), int.Parse(textBoxLLY.Text));
            richTextBox1.Text = tron.ConsoleLog;
        }