es.davy.ai

Preguntas y respuestas de programación confiables

¿Tienes una pregunta?

Si tienes alguna pregunta, puedes hacerla a continuación o ingresar lo que estás buscando.

Tag: ANDROID-FONTS

El tamaño de letra no cambia en los enlaces de redes sociales.

He agregado enlaces a las redes sociales a mi sitio web, pero cuando intento cambiar la fuente, no pasa nada, lo cual es molesto. Realmente no estoy seguro por qué no cambia la fuente. Código HTML: <!DOCTYPE html> <html> <head> <title>Mi sitio web</title> <meta name=”viewport” content=”width=device-width, initial-scale=1″> <link rel=”stylesheet” href=”https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css”> . . . Read more

Cómo aplicar .ttc a una fuente en Java awt:

Estaba intentando leer un archivo .ttc usando java.io.InputStream en IntelliJ IDEA, pero falló. Aquí está mi código: java InputStream inputStream = getClass().getResourceAsStream(“Dependencies\\msjh.ttc”); Font font; try { if (inputStream == null) throw new IOException(); font = Font.createFont(Font.TRUETYPE_FONT, inputStream).deriveFont(Font.PLAIN); } catch (IOException | FontFormatException exception) { font = new Font(“Microsoft JhengHei UI”, . . . Read more