Come adattare le dimensioni della casella di testo al testo?


19

Voglio adattare la tavola da disegno all'arte selezionata (due caselle di testo) - le caselle di testo sono più grandi del testo al loro interno - come posso adattarle (restringerle) per avvolgerle strettamente nel mio testo?

Versione Illustrator - CS5

Risposte:


9

Illustrator non dispone (a partire dalla versione 5.1) di una pratica funzione "adatta cornice al contenuto" come InDesign. Basta selezionare la cornice di testo e trascinare le maniglie verso l'interno fino a quando la cornice è aderente al testo.


15

Questa è ora una funzionalità integrata a partire dal 2014 in Adobe Illustrator CC. Lo troverai in Tipo> Opzioni tipo area> Dimensione automatica.


In CC19 non vedo questa opzione. Si è mosso? @Matt M.
FabricioG

9

C'è una sceneggiatura per quello. (questo è probabilmente il commento di Joonas della sceneggiatura a cui allude - funziona benissimo in CS6).

(per poi adattare la tavola da disegno dopo aver inserito la casella di testo, usa lo strumento tavola da disegno e fai clic sulla casella di testo)

Per gentile concessione di Kelso Cartography che ha un sacco di ottimi script (i loro script per cambiare il punto e il testo dell'area sono anche altamente raccomandati), puoi scaricare lo script Adatta testo al contenuto qui . Fa esattamente ciò che dice sullo stagno: ridimensiona (su o giù) la cornice di testo di un'area di testo per adattarla all'altezza delle righe di testo.

Ecco un 'prima' e un 'dopo' di questo script, oltre a suo cugino anche dalla cartografia Kelso, Adatta la larghezza del testo al contenuto , ridimensionando una cornice di testo per rimuovere lo spazio inutilizzato (foto per gentile concessione di vectips ):

inserisci qui la descrizione dell'immagine

Qui ci sono i codez nel caso in cui il link non funzioni. Tutto il merito all'autore originale. Basta salvarlo come file .js nella illustrator/presets/[some language code]/scriptscartella e riavviare Illustrator:

// FitToTextContent_Depth
// Nathaniel Vaughn KELSO
// Last modified: 2008.March.29
// Created: 2007.July.8 
// at Hyattsville, MD
// Version 2
// (c) nvkelso2008@gmail.com (but remove the 2008 bit)
// DESC: Fits the text frame (rectangular path shapes only!) to fit the text content. 
// DESC: Will either shrink or expand the depth of the text box as appropriate. 
// TODO: Extend to work with text on a line (PATHTEXT)
// TODO: watch for 4 point paths that are not rectangular
// TODO: watch for 4 point paths that are rotated

var includeExtraLines = 0.5;

if(documents.length > 0) {
    doc = activeDocument;
    mySelection = activeDocument.selection;

    // If there are enough to process
    if (mySelection instanceof Array)
    {
        // For each of the selected items
        for(i=0; i<mySelection.length; i++) {
            // That are textFrames
            if (mySelection[i].typename == "TextFrame" && mySelection[i].kind == TextType.AREATEXT ) {
                obj = mySelection[i];

                // We only want to do this on rectangular text areas
                // TODO: Take care of rotation issues from MakePointType script
                if( obj.textPath.pathPoints.length == 4 ) {
                    objTop = obj.top;
                    objLeft = obj.left;

                    // Make the new point type object and locate it
                    // Make sure the new object is in the same Z stacking order as the original
                    copy1 = obj.duplicate(obj, ElementPlacement.PLACEBEFORE);
                    //copy1.move(obj, ElementPlacement.PLACEBEFORE);

                    // now make the text box much bigger, but not absurdly big
                    // TODO: This could be better approximated by itterating thru all the WORDS in the textFrame and 
                    // comparing it to all the WORDS in each of the visible text LINES. Then apply the difference / total words to the scaling
                    if( copy1.height * 10 < 2000 ) {
                        copy1.textPath.height = copy1.height * 10;
                    } else {
                        copy1.textPath.height = 2000;
                    }

                    howManyLines = copy1.lines.length;

                    outlineObject = copy1.duplicate();
                    outlineObject = outlineObject.createOutline();

                    targetHeight = outlineObject.height + includeExtraLines * (outlineObject.height / howManyLines );

                    // Now assign y-axis depth of the point text to the area text box
                    rect = obj.parent.pathItems.rectangle(copy1.textPath.top, copy1.textPath.left, obj.width, targetHeight);
                    copy2 = obj.parent.textFrames.areaText(rect);
                    copy2.selected = true;
                    rect.selected = true;

                    // Always delete these intermediate objects
                    outlineObject.remove();
                    copy1.remove();

                    // Now take care of the end and original objects
                    obj.textRange.duplicate(copy2); 
                    obj.remove();   
                }
            }
        }
    }
}

Dove lo installo su Mac OS X?
Alec Jacobson,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.