如何使文本框大小适合文本?


19

我想使画板适合选定的艺术品(两个文本框)-文本框大于其中的文本-如何调整(缩小)它们以紧紧包裹我的文本?

Illustrator版本-CS5

Answers:


9

Illustrator(从5.1版开始)没有像InDesign这样方便的“适合内容的框架”功能。只需选择文本框架,然后向内拖动手柄,直到该框架紧贴文本即可。


15

自2014年起,这是Adobe Illustrator CC中的内置功能。您可以在“类型”>“区域类型选项”>“自动尺寸”下找到它。


在CC19中,我看不到此选项。它移动了吗?@Matt M.
FabricioG

9

有一个脚本。(这可能是Joonas的注释所暗示的脚本-在CS6中可以正常工作)。

(要在安装文本框后再安装艺术板,请使用艺术板工具,然后单击文本框)

Kelso制图提供,该脚本包含许多出色的脚本(也强烈建议使用其脚本来切换点和区域文本),您可以在此处下载“将文本适合内容”脚本。它的功能与在锡纸上所说的完全相同-缩放(放大或缩小)文本区域的文本框架以适合文本行的高度。

这是此脚本的“之前”和“之后”,以及其表亲(同样来自Kelso制图),“使文本适合内容宽度”,调整文本框架的大小以删除未使用的空间(图片由vectips提供):

在此处输入图片说明

如果链接断开,这里是编码解码器。全部归功于原始作者。只需将其另存为.js文件到您的illustrator/presets/[some language code]/scripts文件夹中,然后重新启动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();   
                }
            }
        }
    }
}

在Mac OS X上的哪里安装?
亚历克·雅各布森
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.