टेक्स्ट बॉक्स के आकार को टेक्स्ट में कैसे फिट करें?


19

मैं चयनित कला (दो पाठ बॉक्स) के लिए आर्टबोर्ड को फिट करना चाहता हूं - पाठ बक्से उनके अंदर के पाठ से बड़े हैं - मैं उन्हें अपने पाठ के चारों ओर कसकर लपेटने के लिए कैसे फिट (सिकोड़) कर सकता हूं?

इलस्ट्रेटर संस्करण - CS5

जवाबों:


9

इलस्ट्रेटर की तरह इलस्ट्रेटर (5.1 के रूप में) में एक आसान "फिट फ्रेम टू कंटेंट" फीचर है। बस टेक्स्ट फ्रेम का चयन करें और हैंडल को अंदर की ओर तब तक खींचें, जब तक कि फ्रेम टेक्स्ट के पास न आ जाए।


15

यह अब एडोब इलस्ट्रेटर CC के रूप में एक अंतर्निहित सुविधा है। आप इसे टाइप> एरिया टाइप ऑप्शन> ऑटो साइज के तहत पाएंगे।


CC19 में मुझे यह विकल्प दिखाई नहीं देता है। क्या यह स्थानांतरित हो गया है? @ मट एम।
फैब्रिकियो

9

उसके लिए एक स्क्रिप्ट है। (यह शायद स्क्रिप्ट जूनो की टिप्पणी है - CS6 में ठीक काम करता है)।

(फिर टेक्स्ट बॉक्स फिट करने के बाद आर्ट बोर्ड फिट करें, आर्ट बोर्ड टूल का उपयोग करें और टेक्स्ट बॉक्स पर क्लिक करें)

केल्सो कार्टोग्राफी के सौजन्य से जिनके पास महान लिपियों का भार है (उनकी स्क्रिप्ट्स को स्विच पॉइंट और एरिया टेक्स्ट भी अत्यधिक अनुशंसित हैं), आप यहां फिट टेक्स्ट टू कंटेंट स्क्रिप्ट डाउनलोड कर सकते हैं । यह वही करता है जो यह टिन पर कहता है - तराजू (ऊपर या नीचे) पाठ की रेखाओं की ऊंचाई को फिट करने के लिए एक पाठ क्षेत्र का पाठ फ़्रेम।

यहाँ इस लिपि का 'पहले' और 'बाद' है, साथ ही इसका चचेरा भाई भी केलो कार्टोग्राफी से, फिट टेक्स्ट टू कंटेंट विदथ, अप्रयुक्त स्थान को हटाने के लिए एक टेक्स्ट फ्रेम का आकार देता है ( vectips का पिक सौजन्य )

यहाँ छवि विवरण दर्ज करें

यहाँ मामला है कि लिंक नीचे चला जाता है में तेह कोड्ज़ हैं। मूल लेखक को सभी श्रेय। बस इसे अपने illustrator/presets/[some language code]/scriptsफ़ोल्डर में एक .js फ़ाइल के रूप में सहेजें फिर इलस्ट्रेटर को रिबूट करें:

// 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();   
                }
            }
        }
    }
}

मैं मैक ओएस एक्स पर इसे कहां स्थापित करूं?
एलेक जैकबसन
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.