-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescription.html
83 lines (66 loc) · 4.62 KB
/
description.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!doctype HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Description</title>
<meta name="description" content="Image to Audio converter - description">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" id = "dark_mode_link" href="dark_mode.css">
<link rel="icon" type="image/png" href="images/logo.png">
</head>
<body>
<header>
<nav class="navbar navbar-expand navbar-light">
<a class="logo" href="/"> I2A </a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a href = "index.html" id = "back" class = "ml-auto"> <span class="fa fa-chevron-left" aria-hidden="true"></span> </a>
</nav>
</header>
<div class = "container article">
<div class="row">
<div class="col-2">
</div>
<div class = "col-8">
<h1 style = "text-align:center;"> FAQ </h1>
<br>
<h2>   If you get an error saying "File is not an image." </h2>
<br>
<p>     You probably uploaded too many images at once or the images are too big. Try uploading smaller image files.</p>
<br><br>
<h2>   How to make sure you get the best possible results </h2>
<br>
<ol>
<li> Make sure that you use the best possible camera. </li>
<br> <p>   This may sound obvious, but it is imperative that you upload the highest resolution image that you can take. </p>
<li> When taking an image of text, try to not warp the text. </li>
<br> <p>   It is really important that the photo you upload for processing looks more like this <img class = "desc_img" src = "images/description/IMG_8404.jpg" alt="not warped example" height = "500"></p>
<br> <p>   Than like this: <img class = "desc_img rotate" src = "images/description/IMG_8403.jpg" alt="not warped example" width = "500"> </p>
<br> <p>   If for some reason you cannot do anything to avoid text warping, you can select the <span style = "color: #007bff;">"bad photo"</span> button
and the engine will try to fix your photo for you. But it would work best, if you take a photo without text warping in it.
<br>   Keep in mind that the second photo is too warped and no type of processing is going to help it.
</p>
<li> Crop the image so that there is only text you want to convert to audio. </li>
<br> <p>   Make sure your image looks more like this: </p> <img class = "desc_img" src = "images/description/IMG_8407.jpg" alt = "well-cropped image example" height = "500">
<br> <p>   Than like this: </p> <img class = "desc_img" src = "images/description/IMG_8404.jpg" alt = "not well-cropped image example" height = "500">
<li> If the text is warped, or there are dark spots in the photo (like in the example above), use the <span style = "color: #007bff;">"bad photo"</span> button. </li>
<br> <p>   If the text in your photo is warped even a little, like in the beginning of this example image: </p> <img class = "desc_img" src = "images/description/IMG_8521.jpg" alt = "image with warped text example" height = "500">
<li> Finally, this is an example of a photo that does not require the <span style = "color: #007bff;">"bad photo"</span> option: </li>
<br> <img class = "desc_img" src = "images/description/IMG_8523.jpg" alt = "not well-cropped image example" height = "500">
</ol>
</div>
<div class = "col-2">
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src = "script-main.js"></script>
<script src = "dark_mode.js"></script>
</body>
</html>