This has nothing to do with tesseract, but with your knowledge of windows...
So you are running: tesseract sample.tiff sample*.tiff *-l nld+eng "C:\Users\..\Desktop\test tess\config.txt" and you should run ;-) : tesseract sample.tiff sample -l nld+eng "C:\Users\..\Desktop\test tess\config.txt" So try to use this: for /R .\ %%g in (*.png) do ( tesseract "%%~nxg" "%%~ng" -l nld+eng "C:\Users\..\Desktop\test tess\config.txt" ) Zdenko On Thu, Apr 25, 2013 at 4:53 PM, Benito2313 <[email protected]> wrote: > Hello Zdenko, > > My command is: > for /R .\ %%g in (*.tiff) do ( > tesseract "%%~nxg" "%%~nxg" -l nld+eng "C:\Users\..\Desktop\test > tess\config.txt" > ) > > Thank you for your response. > > Benito2313 > > Op donderdag 25 april 2013 16:39:48 UTC+2 schreef zdenop het volgende: > >> send a command that you used... >> >> Zdenko >> >> >> On Thu, Apr 25, 2013 at 11:26 AM, Benito2313 <[email protected]>wrote: >> >>> Hello, >>> >>> I got a problem with the extensions the following: >>> >>> Input: sample.tiff >>> Output: sample.tiff.html >>> Needs to be: sample.html >>> >>> How can i do this? >>> How can i chop the extions part of ? >>> >>> Thank you for your response. >>> >>> Regards, >>> >>> Benito2313 >>> >>> -- >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "tesseract-ocr" group. >>> To post to this group, send email to [email protected] >>> >>> To unsubscribe from this group, send email to >>> tesseract-oc...@**googlegroups.com >>> >>> For more options, visit this group at >>> http://groups.google.com/**group/tesseract-ocr?hl=en<http://groups.google.com/group/tesseract-ocr?hl=en> >>> >>> --- >>> You received this message because you are subscribed to the Google >>> Groups "tesseract-ocr" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to tesseract-oc...@**googlegroups.com. >>> >>> For more options, visit >>> https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/opt_out> >>> . >>> >>> >>> >> >> -- > -- > You received this message because you are subscribed to the Google > Groups "tesseract-ocr" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/tesseract-ocr?hl=en > > --- > You received this message because you are subscribed to the Google Groups > "tesseract-ocr" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- -- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/tesseract-ocr?hl=en --- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

