This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Para reconquistarte | |
Construiré la primavera | |
Para regalarte flores | |
Y perdones mis torpezas | |
Para que no me olvides | |
Bailaré con las estrellas | |
Para entrar en tus sueños | |
Liberado de promesas | |
Y cada paso, cada gesto | |
Lo haré con el corazón |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="unknown" lang="unknown"> | |
<head> | |
<title>HOCR File</title> | |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> | |
<meta name='ocr-system' content='gcv2hocr.py' /> | |
<meta name='ocr-langs' content='unknown' /> | |
<meta name='ocr-number-of-pages' content='1' /> | |
<meta name='ocr-capabilities' content='ocr_page ocr_carea ocr_par ocr_line ocrx_word ocrp_lang'/> |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"responses": [ | |
{ | |
"textAnnotations": [ | |
{ | |
"locale": "ar", | |
"description": "وأما ثانيا : فلأنه يخرج منه من زنی مثلا ثم جب ذكزه فإنه\nلا يتأتی مثه غير الندم على ما مضی ، وأما العزم على عدم.\nالعود فلا يتصون منه ، قال : وبهذا اغتر من قال : إن الندم\nيكفي في خد النوبة ، وليس كما قال ؛ لأنه لو ندم ولم يقلع\nوعزم على العود لم يكن تائبا اتفاقا، قال : وقال بعض المحق قين :\nاختیار ترك ذنب سبق حقيقة أو تقديرا لأجل ال له قال :\nوهذا أد العبارأت وأجمعها لأن التائب لا يكون تار کا\nلذنب الذي فرغ لأنه غير فتمكن من عينه لا تركا ولا فعلا ،\nوإتما هو متمكن من مثله حقيقة ، وكذا من لم يقع منة ذتب\nإنما يصح منه اتقاع ما يمكن أن يقع لا ترك يمثل ما وقع فيكون\nهي\nمتقيا لا تائبا ، قال والباعث على هذا تنبيه إلهئ لمن أراد\nسم مهلك يفوث على\n: لأنه\nسعادته لقبح الذنب وضر ره 4.\nالإنسان سعادة الدنيا والآخرة ويحجبه عن معرفة ال له تعالى في\nالدنيا ، وعن تقريبه في الآخرة .\nقال : ومن تفقد نفسنه وجدها مشحونة بهذا السم فإذا وفق\nانبعث منه خوف هجوم الهلاك عليه ، فيبادز بطلب ما يدفع\n", | |
"boundin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this script is updated in order to support for multi-threaded applications. | |
# $3 is a random md5 hash or a uuid.uuid4() object that enables gcvocr.sh to be used without having two overlapping files named temp.json | |
#!/bin/bash | |
#cd ~ | |
echo '{"requests":[{"image":{"content":"' > ./$3.json | |
openssl base64 -in $1 | cat >> ./$3.json | |
echo '"}, | |
"features":{"type":"TEXT_DETECTION","maxResults":2048}}]}' >> ./$3.json | |
curl -k -s -H "Content-Type: application/json" https://vision.googleapis.com/v1/images:annotate?key=$2 --data-binary @./$3.json > "$1.json" |