Click here to Skip to main content
15,881,600 members

Comments by Asif 7969814 (Top 31 by date)

Asif 7969814 31-Aug-21 5:58am View    
Hi here is the link for basic HTML, CSS, Js, Projects

https://hackr.io/blog/html-projects

https://skillcrush.com/blog/projects-you-can-do-with-javascript/

https://www.w3schools.com/default.asp
Asif 7969814 31-Aug-21 5:22am View    
Yes, you are Right But Can We Use The way Of OCR Computer Vision API And C#.

They have the support of Language
ar (Arabic)
tr (Turkish)
ro (Romanian)
you can read the Full Article here
https://www.c-sharpcorner.com/article/cognitive-services-optical-character-recognition-ocr-from-an-image-using-com/

and this is the Github link

https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/dotnet/ComputerVision/REST/CSharp-print-text.md

Microsoft Computer vision API link

https://westus.dev.cognitive.microsoft.com/docs/services/56f91f2d778daf23d8ec6739/operations/56f91f2e778daf14a499e1fc
Asif 7969814 30-Aug-21 11:00am View    
use Links to explore more
https://stackoverflow.com/questions/40596320/extracting-arabic-text-in-c-sharp-by-using-itextsharp

https://www.codeproject.com/Questions/1067285/How-to-print-arabic-characters-to-a-pdf-file-using

https://stackoverflow.com/questions/34528259/arabic-in-pdf-using-itextsharp-in-c-sharp
Asif 7969814 28-Aug-21 9:52am View    
This Code will help you to do the same

https://codepen.io/pedrobenoit91/pen/aJGzYg

<script type="text/javascript" src="https://code.jquery.com/jquery-1.8.2.js"></script>
<style type="text/css">
#overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000;
filter:alpha(opacity=70);
-moz-opacity:0.7;
-khtml-opacity: 0.7;
opacity: 0.7;
z-index: 100;
display: none;
}
.cnt223 a{
text-decoration: none;
}
.popup{
width: 100%;
margin: 0 auto;
display: none;
position: fixed;
z-index: 101;
}
.cnt223{
min-width: 600px;
width: 600px;
min-height: 150px;
margin: 100px auto;
background: #f3f3f3;
position: relative;
z-index: 103;
padding: 15px 35px;
border-radius: 5px;
box-shadow: 0 2px 5px #000;
}
.cnt223 p{
clear: both;
    color: #555555;
    /* text-align: justify; */
    font-size: 20px;
    font-family: sans-serif;
}
.cnt223 p a{
color: #d91900;
font-weight: bold;
}
.cnt223 .x{
float: right;
height: 35px;
left: 22px;
position: relative;
top: -25px;
width: 34px;
}
.cnt223 .x:hover{
cursor: pointer;
}
</style>
<script type='text/javascript'>
$(function(){
var overlay = $('<div id="overlay"></div>');
overlay.show();
overlay.appendTo(document.body);
$('.popup').show();
$('.close').click(function(){
$('.popup').hide();
overlay.appendTo(document.body).remove();
return false;
});


 

$('.x').click(function(){
$('.popup').hide();
overlay.appendTo(document.body).remove();
return false;
});
});
</script>
<div class='popup'>
<div class='cnt223'>
<h1>Important Notice</h1>
<p>
We were affected by the fire next door and will remain closed until further notice.
<br/>
<br/>
<a href='' class='close'>Close</a>
</p>
</div>
</div>
Asif 7969814 18-Aug-21 8:38am View    
Thanks, A lot Richard