Questions tagged [kannada]

Kannada is a Brahmic alphabet script used primarily in India. Use this tag for when you are dealing with applications of the Kannada alphabet or script in a program or website.

The Kannada script is an alphabet used primarily in India.

19 questions
8
votes
2 answers

Split Kannada word into syllabic clusters

We are wondering if there is any method to split a Kannada word to get the syllabic clusters using JavaScript. For example, I want to split the word ಕನ್ನಡ into the syllabic clusters ["ಕ", "ನ್ನ", "ಡ"]. But when I split it with split, the actual array…
mpsbhat
  • 2,733
  • 12
  • 49
  • 105
7
votes
2 answers

Display Kannada Text in Android application

I have a requirement to display kannada text in GCM alerts sent to an android app. I followed these tutorials Install Read / Write Indian Language Fonts on Android and How to Write & Read in Indian Regional Language Fonts on Android. Just to brief,…
Ayaz Pasha
  • 1,045
  • 6
  • 13
  • 28
5
votes
1 answer

Kannada Font on Android ICS

I am supporting Tamil and Kannada fonts in my application. I use the following code to set the typeface of TextViews, Buttons, etc FONT_TAMIL = Typeface.createFromAsset(getAssets(), "fonts/tamil.ttf"); tvTitle.setTypeface(FONT_TAMIL); FONT_KANNADA…
Karthik Andhamil
  • 848
  • 1
  • 13
  • 22
2
votes
2 answers

Need to process the Kannada language(Regional) in Python 3.7 without Encoding Issues

There is a JSON file with Kannada letters in it. Info.json { "name":"", "url":"", "desc":"ಹಾಡುಗಳನ್ನು ಈಗ ಆನಂದಿಸಿ." } If i try to read this file without encoding like with open('info.json', 'r') I get Error: 'charmap' codec can't decode…
hondvryer
  • 442
  • 1
  • 3
  • 18
2
votes
0 answers

C# Kannada Language Support In Windows Forms

I have a Label in my Form and it's text was written in English using Segoe UI as font. Then I changed my font to Baraha Kan for Kannada translation and also changed my Form's Language from Default to Kannada(India). But this way only some characters…
Chuker
  • 125
  • 1
  • 3
  • 16
2
votes
2 answers

kannada text support on older Android devices

how to show kannada text on older devices. I have tried with font files but rendering is not correct. I have tried indic text renderer but I was stuck at SharedLibrary :…
Vamsea
  • 31
  • 5
1
vote
2 answers

Enabling kannada font on the buttons

I wanted to write kannada alphabet/word on top of the button instead of english. I have stored an kgp_kbd.ttf in my assets folder. I am getting an white boxes on top of buttons.
Rithesh M
  • 1,287
  • 1
  • 12
  • 23
1
vote
1 answer

How to install kannada font in Android emulator

How to install Kannada fonts to emulator in Android to get Kannada keyboard?
user878521
  • 13
  • 5
1
vote
0 answers

If TTS not supporting Kannada Language, how to play the text in Kannada?

I am trying to set Text to speech object language as Kannada. below is code where i am setting the language whose language code is kn as per the documentation. But somehow i m getting the error message as language not supported int result =…
Feroz Siddiqui
  • 3,840
  • 6
  • 34
  • 69
1
vote
0 answers

Unable to render text properly Kannada(Indian language) to Image using PHP

Here is my php code $text = 'ಕನ್ನಡ'; $txt_color1 = 'red'; imagettftext($handle, 30, 0, 25, 60, $txt_color1, 'fonts\akshar.ttf', $text); It results: enter image description here *I tried available fonts(kannada) but I'm getting same result.
Janardhan
  • 33
  • 1
  • 7
1
vote
1 answer

How to embed kannada font?

I want to make Kannada website in that I have lot of content so that till now I'm using google kannada translator to add but now the content is more so is their any way to do embed kannada font I tried this link…
user2610240
  • 25
  • 1
  • 9
0
votes
0 answers

can i use IndicBERT for question answering system

i want to build a question answering system in kannada language. the context is set for BMTC bus routes, the user asks a question "from kempegowda bus stand i want to go to Jallahalli cross, what are the buses i can take to get there?" answer "you…
0
votes
0 answers

Extra character while enconding and decoding UTF-8 java string

Whenever we are passing a message in language Kannada Language only a certain character gets added in the message, which is eventually send via SMS. we are using UTF-8 encoder and decoder. while testing raw string it is asserting same value…
0
votes
0 answers

Google Vision API does not detect Kannada text in images

I have been working on a POC with Vision API (REST) to extract text from images. I have been fairly successful and I am able to get good responses from the REST API for certain Indian languages (Tamil, Bengali). However, when I try using images with…
0
votes
0 answers

how to display Google Form in other languages

I want to create google form to display it in the Kannada language. I have tried it using how to display form in particular langauge but this is not helping me while I have an embed form link to my website. Need some help to fix this issue Here Is…
1
2