Search found 8 matches

by rlee1985
2016-04-03T12:14:50-07:00
Forum: Magick.NET
Topic: Image to Text C#
Replies: 13
Views: 27599

Re: Image to Text C#

Well I am lucky and it appears to be fixed!


I uninstalled both 64 core and native and used the anycpu and it works now.


THANKS FOR THE HELP!

Have a good one
by rlee1985
2016-04-03T12:05:05-07:00
Forum: Magick.NET
Topic: Image to Text C#
Replies: 13
Views: 27599

Re: Image to Text C#

Dlemstra, Would you have any idea as to why my program would crash as soon as I try to execute MagickImage code. This is the process I followed: Using visual studio 2013. .Nets are installed up to 4.5.1. Installed Magick.NET-Q16-x64. In project set using ImageMagick; Put this code in a button. using...
by rlee1985
2016-04-03T10:16:28-07:00
Forum: Magick.NET
Topic: Image to Text C#
Replies: 13
Views: 27599

Re: Image to Text C#

Awesome guys thanks for the help.
by rlee1985
2016-04-02T16:21:38-07:00
Forum: Magick.NET
Topic: Image to Text C#
Replies: 13
Views: 27599

Re: Image to Text C#

What do you use?
by rlee1985
2016-04-02T15:19:23-07:00
Forum: Magick.NET
Topic: Image to Text C#
Replies: 13
Views: 27599

Re: Image to Text C#

private void btnDecode_Click(object sender, EventArgs e) { using (MagickImage image = new MagickImage("image.png")) { image.Format = MagickFormat.Txt; image.Write("NewText.txt"); } } just doing it on a button click.
by rlee1985
2016-04-02T15:18:37-07:00
Forum: Magick.NET
Topic: Image to Text C#
Replies: 13
Views: 27599

Re: Image to Text C#

Still does not work. That to me looks like it just renames the file and puts txt: on the front of it. I also added this:

image.Format = MagickFormat.Txt;


and it did not make any difference.
by rlee1985
2016-04-02T14:53:27-07:00
Forum: Magick.NET
Topic: Image to Text C#
Replies: 13
Views: 27599

Re: Image to Text C#

Just read the file using read?

using (MagickImage image = new MagickImage("Image.jpg"))
{

image.Write("NewText.txt");
}


I am getting an error message.
by rlee1985
2016-04-02T14:09:44-07:00
Forum: Magick.NET
Topic: Image to Text C#
Replies: 13
Views: 27599

Image to Text C#

Is it possible to convert an image to a text document with magick.net? I can convert an image to text by using imagemagick IMDisplay and it outputs the image into a text file and looks like this: # ImageMagick pixel enumeration: 1057,314,65535,srgb 0,0: (33410,1799,6939) #82071B srgb(130,7,27) 1,0: ...