18 questions
0
votes
0
answers
72
views
Extract Bangla Text From Image
var ocr = new IronTesseract();
ocr.Language = OcrLanguage.Bengali;
// Optimization for high-density forms (18 boxes)
ocr.Configuration.ReadBarCodes = false;
ocr.Configuration.PageSegmentationMode = ...
0
votes
0
answers
197
views
Difficulty Rendering Bangla Text in Matplotlib
I'm encountering issues while attempting to print Bangla text in Matplotlib. Despite trying various methods, I've been unable to resolve the problem. Here's the code snippet I'm using, tried to print ...
0
votes
1
answer
185
views
"pdfMake" Bangla font breaking the word on "এ-কার"
Bangla words are breaking on 'এ-কার' after generating the PDF using pdfMake
I have tried so many different fonts to check but got the same issue
0
votes
0
answers
595
views
bangla font is not working in pdf-lib custom font
I have a problem with the Bangla font.
I've got a problem when I embed Bangla font in PDF-LIB. If any fonts are supported then the output didn't show correctly. It shows like a small rectangle.
Here ...
0
votes
0
answers
565
views
How am I able to write Bangla without using UTF-8?
My HTML code:
<!DOCTYPE html>
<html lang="en">
<head>
<!--<meta charset="UTF-8">-->
</head>
<body>
<h1>আমার নাম ফারহা...
0
votes
0
answers
436
views
Rdlc report missing few charecter of ansi font "sutonnyMj" after upgrading framework 3.5 to 4.61
I'm new in programming.
Few part(certain characters) of ansi font "SutonnyMJ" is Missing in report viewer. while exported TO "Word" or "Excel" the missing part is ...
0
votes
1
answer
689
views
Bangla words are broken while writing in a PDF file
I am generating a PDF file from CSV file. While I tried to write BANGLA language it just broke the words. Here is my code:
from fpdf import FPDF
pdf = FPDF(orientation='L', unit='mm', format='A5')
...
1
vote
1
answer
372
views
Bangla text word cloud
I wanted to take out the word cloud of Bengali text, But when it is being printed, the consonants of each word were being printed separately .
data = pd.read_csv('/content/gdrive/MyDrive/data.csv',...
0
votes
0
answers
284
views
I need to count bangla and english letters from a text-area [duplicate]
I'm counting character using something.length of java script function. For bangla character it counts wrongly. Like what online character counter counts 325 it counts 313.For example:
"#NAME#কে ...
1
vote
1
answer
3k
views
FPDF add_font python - Bangla Font file xxx.ttf cannot be embedded due to copyright restrictions
from fpdf import FPDF
pdf.add_font('SolaimanLipi','','filename.ttf', uni=True)
RuntimeError: ERROR - Font file /content/drive/SolaimanLipi.ttf cannot be embedded due to copyright restrictions.
I have ...
4
votes
0
answers
299
views
Bangla text gets broken on tkinter GUI
I am trying to create a GUI Application in Tkinter. I want to show Bangle ('বাংলা') text on a text label.
This is what the text looks like in a file.
But this is what it looks like on the GUI
As you ...
0
votes
1
answer
1k
views
How to use bangla font when Generating pdf using Mpdf (Laravel) [closed]
I am trying to write Bengoli in my pdf which i am generating by MPDF library.
$mpdf = new \Mpdf\Mpdf([
'margin_top'=>10,
'margin_buttom'=>10,
]);
...
1
vote
0
answers
1k
views
PDFBox unicode font issue - Bangla unicode font is broken in generated PDF using PDFbox in Java
I want to generate a PDF that contains Bangla text. After generating PDF, text in generated PDF is broken. I have gone through a lot of Q/A related to this problem in StackOverflow, but unfortunately, ...
2
votes
0
answers
724
views
How to solve Bangla font problem in python image show?
When i am creating bangla word cloud, I am facing bangla font problem. Problem details and code are show below. please help me out from this problem.
from os import path
import numpy as np
from PIL ...
0
votes
0
answers
3k
views
Bangla Font showing mismatch - Laravel Dompdf
I am using Laravel Dompdf to generate PDF. Use Kalpurush font for Bangla text. Everything working well but text showing mismatch into PDF view. Lets example:Text should be আমি comes out like আ ম ি .
...