Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

188
Visualizações
Calculate the font size of a string to make it fit on a box

In After Effects, I have a string, I have a TypeFace, I have the width and height of a composition. How do I get the right font size to fit the string on the comp, without overflowing?

Noobie programmer here.

about 4 years ago · Santiago Gelvez
1 Respostas
Responde à pergunta

0

You could calculate the pixel size however (again) Adobe restricts the size to 1296 Px. So you need to go by scale of your text layer.

In scale parameter of the text add following expression:

var myTextSize = sourceRectAtTime();
var ratio = myTextSize.width / myTextSize.height;
var compRatio = thisComp.width/thisComp.height;
if(ratio >= compRatio) {
    var factor = thisComp.width / myTextSize.width;
    [scale[0] * factor, scale[1] * factor]
}
else{
    var factor = thisComp.height / myTextSize.height;
    [scale[0] * factor, scale[1] * factor]
}

This expression scales the text depending on width and height of your comp.

However it is still not centered. If you want that, you need to add another expression. This time on your anchorpoint:

var boundingbox = sourceRectAtTime();
 
[boundingbox.left + boundingbox.width/2, boundingbox.top + boundingbox.height/2 ];

This should do the trick.

about 4 years ago · Santiago Gelvez Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda