Posts

Showing posts from October, 2013

Tif To txt Convert

Hi,  I am using following code that is working for mostly images but i have some special kinds of images which have italic text and tiff extension. in that case code is not working. Code::  using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsFormsApplication4 { public partial class Form1 : Form { string extractedText = string.Empty; string getFileName; public Form1() { InitializeComponent(); } private void button2_Click(object sender, EventArgs e) { if (openFileDialog1.ShowDialog() == DialogResult.OK) { getFileName = openFileDialog1.FileName; Image targetImage = Image.FromFile(getFileName); targetImage = fitInPBox(targetImage); pBox.Image = targetImage; } } //This function fit the browsed image in picture box private Image fitInPBox(Image img) { Bitmap image = new Bitmap(img, new Size(pBox.Size.Width, pBox.Size.Height)); return (...