How to extract text from an image using PHP
-
Let's say I have an image which consists of white background and black text. How to extract text from the file and save it as png with transparent backgorund using PHP?
-
Answer:
If you already have an image using a color palette (gif or png) and assuming the top left pixel is white anyway, you could simply use: $im = imagecreatefrompng($filename); imagecolortransparent($im, imagecolorat($im, 0, 0)); Otherwise you'd have to iterate over pixels, find the whiteish ones (jpeg) and set them each. Some more examples are here: http://www.php.net/manual/en/function.imagecolortransparent.php
bijou at Stack Overflow Visit the source
Other answers
There are a few http://www.google.com.au/search?sourceid=chrome&ie=UTF-8&q=php+OCR#sclient=psy&hl=en&source=hp&q=php+OCR&aq=f&aqi=g5&aql=&oq=&pbx=1&fp=80b59552404ef977 out there, although I'm uncertain if PHP would be the best tool for the job.
Russell Dias
Rodrigo Hahn
It is actually not so straight forward to extract a text from an image. The process of extracting text from images is called Optical Character Recognition (OCR), is kind of the same systems scanners use to "read" documents and import them directly as text. For PHP there is a library that works with this kind of recognition, check it out: http://sourceforge.net/projects/phpocr/ .
Danilo
Related Q & A:
- How to extract text from web page?Best solution by Stack Overflow
- How to extract information from text file in Python?Best solution by Stack Overflow
- How to extract latest reply text from email and cut out previous messages?Best solution by Stack Overflow
- How do I cut out an image using Gimp?Best solution by Stack Overflow
- How to add text to jpeg image?Best solution by answers.microsoft.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.