Illustrator Canvas Size (not Art Boards)

Hey, I was wondering if anybody knew of a way to increase the size of the canvas in Illustrator cs4 or cs5. The default seems to be about 228 inches but I need a bigger canvas size for a project I'm involved with.
I've been looking around and it doesn't seem like this is even an option but I figured I'd at least ask!
Thanks!

Conor,
In addition to the previous answers:
Working with vector artwork with the help of Illy, you may work at any scale and scale up in another application for print and still have everything fully smooth; PDF can be scaled to any size (with the same proportions).
Working with raster artwork with the help of Illy, you may also work at any scale and scale up similarly, if you have a sufficiently high resolution to result in a sufficiently smooth appearance at the final size; you may start with lower resolution copies and replace them when the rest of the work is finished, to avoid unnecessary waiting time. It should be noted that the needed smoothness/final resolution depends entirely (and inversely proportionally) on the distance of the viewer; generally, you can use the same total image size at different sizes to be viewed at (proportionally) corresponding distances (which will give the same appearance (and vieweing angle)).
Depending on the units and sizes, different scales may be easy to work with; that could be:
1:10, 1:100, etc, especially in mm and cm (using mm for cm is 1:10 in itself),
1:6 using picas for inches,
1:12 using points for picas,
1:72 using points for inches,
1:2, 1:4, 1:8, 1:16, 1:32, etc, especially in inches.

Similar Messages

  • HOW DO I CHANGE THE CANVASS SIZE (not art board) IN ILLUSTRATOR CS6?

    Have been looking on the internet as well as spending 3 hours on the phone to Adobe call centre in India!
    No luck.
    any help will be greatly appreciated!

    i'm intrigued because to everyday illustrator users this is a very straightforward question to answer.
    But Adobe can't be bothered with such things. It's too busy making sure everyone has paid their monthly rental fees. ;-)
    New customers who are so outdated as to insist on using a phone (how churlish) are encouraged to call support outsources in India whose job it is to make sure everyone has paid for their phone call.
    If you want to make a comment, criticism, or suggestion about products, you do that in the online manuals so that your comment, criticism, or suggestion can be redirected here to uncompensated users and presented as if it were a question.
    If you actually want to ask a question and actually receive an answer (??!), you are supposed to ask them here where uncompensated  users of unknown proficiency may or may not try to answer them and may or may not actually know what they're talking about.
    Or, you can read the manual, which is difficult to access as a straightforward manual, because at Adobe, 'help is not a document; it's a community.'
    JET

  • Illustrator CC, 2014, default art board name

    In Illustrator CC, 2014, How do you remove a custom art board name, and reset the default to start back at one? It used to be you would just remove the name, but that no longer works. When I create a new art board in a document that has been used as a template, it starts at "Artboard 239." How do I get that back to 1 without starting a new document?

    Davey,
    You could try to reinstall using the full three step way:
    Uninstall, run the Cleaner Tool, and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html
    Or you could have a look at items 1) and 11) in Other options (follow the link with that name).

  • Illustrator canvas size question

    Hi,
    In Illustrator, I am trying to create a new canvas that is 11.182x 8.65
    but it won't allow me. Instead it rounds the number down and I end up with: 11.18x8.65
    Is there a setting or preference or another way for me to keep the 11.182? (I realize that this is such a very small fraction of an inch but it would be best if I had the exact size).
    The same occurs when I try to uses the dartboard tool while inside an already made canvas. When I use the tool to readjust the size it won't allow me to go to 11.182. It only rounds down to 11.18
    Thanks!

    Hey Jacob,
    When I try that it rounds it down for me in the same manner.
    I enter 805.104 and it automatically rounds it to 805.1pt when I click on the height field.
    Maybe there is a preference setting I have somewhere that I need to change?

  • Adobe Illustrator 'Actual Size' Not Right

    I have a MacBook Pro (OSX 10.5.4)with the display preference set to 1680 x 1050. When I use Adobe Illustrator or Photoshop CS and click the icon in the view menu to 'Actual Size' what I see in my screen is smaller than the actual size. Does anyone know what I can do to to be able to have things appear on my screen in the true actual size?

    You might try posting in the Adobe forum area at their web site:
    http://www.adobeforums.com/webx/.ee6b324/

  • A script to increase the minimum canvas size? (Like Fit Image, but with just my canvas)

    For starters to be clear, I'm looking to manipulate canvas size. Not image size.
    I want to create a script to automatically increase the width and height of my canvas in Photoshop to a specific size when necessary. I only want this to happen if my canvas is less than that specified size. For example: Let's say my canvas size is 300x250. I want the canvas to be at LEAST 600x600. If I run my action it will increase the canvas size to 600x600 for me. If I run this same script on an image where the canvas size is already 700x700, it won't do anything at all to it because both the width and height are equal to or greater than my target size.
    It would also need to work with the height and width on an individual basis. If my image is 400x800, the action would increase my width from 400 to 600, but it would leave the height of 800 alone. So the final canvas size will end up being 600x800.
    It's kind of like the "Fit Image" option in Photoshop, but I only want to manipulate my canvas size, NOT my image size.

    It is possible.
    But if you hope that the dialog remembers the last settings that would require storing those values (which could be done with a txt-file at some pre-defined location), but it would make the Script a bit more complicated.
    // resize canvas in either direction if it is below a defined minimum;
    // 2011; use it at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
    // dialog;
    var dlg = new Window("dialog", "increase width and height if under", [500,300,750,380]);
    // filter for checking if entry is numeric, thanks to xbytor;
    numberKeystrokeFilter = function() {
              if (this.text.match(/[^\-\.\d]/)) {
                        this.text = this.text.replace(/[^\d]/g, "")
              if (Number(this.text <= 0)) {this.text = 5};
              this.text = Math.round(Number(this.text));
    // fields for entry;
    dlg.hor = dlg.add("edittext", [14,15,88,35], "600", {multiline:false});
    dlg.hor.onChange = numberKeystrokeFilter;
    dlg.horText = dlg.add("statictext", [93,15,118,35], "px", {multiline:false});
    dlg.ver = dlg.add("edittext", [129,15,210,35], "600", {multiline:false});
    dlg.ver.onChange = numberKeystrokeFilter;
    dlg.verText = dlg.add("statictext", [215,15,240,35], "px", {multiline:false});
    dlg.hor.active = true;
    // ok- and cancel-button;
    dlg.buildBtn = dlg.add("button", [13,45,118,68], "OK", {name:"ok"});
    dlg.cancelBtn = dlg.add("button", [128,45,240,68], "Cancel", {name:"cancel"});
    // show dialog;
    dlg.center();
    // show dialog;
    var myReturn = dlg.show ();
    // proceed if ok-ed;
    if (myReturn == 1) {
    var myDocument = app.activeDocument;
    // set to pixels;
    var originalRulerUnits = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    // set the minimum values;
    var minWidth = Number(dlg.hor.text);
    var minHeight = Number(dlg.ver.text);
    // get current ones;
    var theWidth = myDocument.width;
    var theHeight = myDocument.height;
    // resize canvas;
    myDocument.resizeCanvas(Math.max(minWidth, theWidth), Math.max(minHeight, theHeight), AnchorPosition.MIDDLECENTER);
    // reset;
    app.preferences.rulerUnits = originalRulerUnits;

  • Is there a plug in to resize the canvas size in Illustrator CS6?  Not the artboard, the canvas size

    Is there a plug in to resize the canvas size in Illustrator CS6?  Not the artboard, the canvas size

    Reckon that’s what he must mean
    Are you sure, Steve?
    Kurt may agree.

  • Maximum Artboard Size (Not Canvas Size)

    Hi,
    I read that maximum canvas size is 227in but Illustrator CC on both mac and windows and several different computer does not allow me to exceed 120in x 120 in. I can change my artboard size manually (shift+o) and drag the corners to 227inches but the number on the right upper corner is stuck on 120 inches. So what is the maximum size that I can work in Illustrator? If it is 227in why can't I make an Artboard bigger than 120 inches? And to avoid more confusion what is the canvas and what is the art board?
    Thank you

    mus,
    When things become seriously weird, as in your case, it may be worth trying the list (you have been through 1) and 2) already, and I would suggest your skipping 3) and 5), which leaves 4) and 6).
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media, see below. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible), for CS3 - CC you may find the folder here:
    https://helpx.adobe.com/illustrator/kb/preference-file-location-illustrator.html
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall (ticking the box to delete the preferences), run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Exporting Illustrator Symbols to a New Art Board

    Anyone know of any scripts that will:
    Take Adobe Illustrator Symbols in your current document's symbol library and...
    Place them on an art board in either the same document or a new one?
    The symbols should retain their original sizes, with an option to resize if needed
    The symbols should be placed with adequate spacing on the new art board
    The symbols should be put in their own layers when placed on the new art board
    Would be great if the symbol names could be placed beneath each symbol for reference
    I've seen something very, very close here, which already does 1, 3, and 4: http://forums.adobe.com/message/3613498. If you can modify it to do some of the following above, that would be splendid.
    But the script requires the user to place in a value for sizing the symbols before exporting them to the artboard. I like this as an option, but would be better if it would allow you to retain orginal sizes.
    Basically, this is something that could help to create a starter UI Kit from symbols.
    Thanks - Jux

    Jux, did you find a solution to your question, I'm trying to achieve the same result
    I have a graphic moch-up of an app design I have working on in illustrator. All the graphic elements I have created have been captured as symbols. I would like to export all those symbols out to PNG format if posable, without resizing.
    Just like you I also found the script http://forums.adobe.com/message/3613498  but i find this option is not completely suitable as the script is asking me to nominate a size.
    After extracting all the symbols to layers, then i would use another script  Export Illustrator Layers and/or Artboards as PNGs and PDFs | Matthew Ericson - ericson.net output layer or art board to PNG.
    Im also looking around for a script that would export all symbols to layers retaining the names of the symbols to layers or art board.
    Thanks, Pete

  • Saving art boards to a PDF - huge file size

    I have a file with multiple art boards with a lot of high res imagery on each one.  I need to save these files to PDF individually (or two, three at a time) for my purposes, but when I do, the PDF size seems to encompass the entire file, rather than just the art boards I've chosen to export.  For instance, I have 10 Art Boards, but I only export Artboard 1 and 5 to a PDF - my resulting PDF is huge.  But, if I were to create a new, separate file with just the two art boards and saved as a PDF from there, my PDF size is about 20% the size. Obviously, I don't want to have to recreate these files every time I want to save as a PDF, which is why I wanted them all in one file to begin with.
    Any ideas on how to manage this?

    Just export those pages as PDF and make sure you don't check "Preserve Illustrator editing capabilities" in PDF options

  • Feature Request - Illustrator - Multi-select and rearrange a set of art boards at once.

    I've been hoping for align and multiple select ability for art boards for several years. The issue is that when you're using a large number of art boards arranged in a grid for a large app design project or similar, rearranging art boards is a huge time waster. Repositioning is difficult as there is no way to multi-select or drag several at a time. Art boards also get mis-aligned easily, so being able to use existing align tools for art boards themselves would be an expected, easy to grasp, evolution. (and much faster than doing them one at a time) I often have large illustrator files with a spread of assets ready for export. Being able to make these files orderly and easily viewed by others is crucial.
    Also, numbering...
    Usually what happens is that we'll drag-duplicate a screen to alter, but they end up with an art board numbers that are out of sequence in the design, making the export out of order as well. It would be awesome to directly click to alter an art board's assigned number.

    I have a related FR, so I decided to integrate it with the above, which I also like. The FR  is for: Smarter Finds with and/or logic and Smarter Smart collections with And/Or logic. For example, I want to find (or to make a smart collection of) all the photos that are in a folder which meet these criteria:
    Their file name contains the word "Cuba" AND they have modifications (in the develop module)
    OR
    Their file name contains the word "Cuba" AND the file extension is .psd
    This is because most photos in this folder are NEF, some of those have been developed in LR, and some have been exported to Photoshop to be worked on. It's frustrating not being able to make this preselection to find ALL the photos I've worked on. Anyone agree we need and/or/not/but logic and to be able to combine criteria in a find request?

  • How can I create accurate decimal dimensions when creating a new document or using the art board in Illustrator CS6? When I type in a number with a decimal, it automatically rounds the number up.

    How can I create accurate decimal dimensions when creating a new document or using the art board in Illustrator CS6? When I type in a number with a decimal, it automatically rounds the number up.

    For my part you are welcome, sdowers.
    Unfortunately, the uncertainty arising from the rounding has been up several times here in this forum.
    I just came to remember a warning that needs to be given:
    The rounding of the representation of a numerical value may be harmless in itself, but if you use it for any operation that changes the value, such as multiplication or whatever, things will go wrong because the operation will be made on the basis of the rounded value instead of the true value. So, as in your first case in post #2, 39.625 rounded to 39.63 will become 79.26 instead of 79.25.

  • How to rotate a art board in a illustrator using adobe extended javascript

    How to rotate a art board in a illustrator using adobe extended javascript
    how to create mirror image of each textframe content of artboard

    1. there's no "Rotate" function, you have to rotate all your objects and then "resize" your artboard to simulate rotation.
    2. there's no "Reflect" function either, to make "mirror" images, use the ScaleMatrix function, see this post
    Reflect whole objects

  • PDF Page Size does not match Canvas Size

    Hello,
    I'm using Xcelsius 2008 Engage SP1 on Vista 64bit with Office 2007 installed. When I'm exporting a Xcelsius file to PDF, the resulting Page Size of the PDF file is 8.5in x 11in. However, the Canvas size in Xcelsius is 800x600 (pixels). The resulting PDF file has quite a bit of whitespace in the top and bottom sections of the file.
    Is there anyway that I can export to PDF but with a file size that is in the same aspect ratio than the Canvas Size?
    Thanks for any input.
    Regards,
    Jon

    We regularly export to PDF and face this issue.  I believe that the adjustments need to be made in Acrobat as there is, from my understanding, no way to change the default export in Xcelsius.  You are probably already be doing this, but if not ... our solution has been, once you have exported your model into Acrobat, to simply rotate the page before saving the file.  At 800 x 600 you may still have some white space at the top and bottom of your model.  We typically use an Xcelsius canvas size of 1100 x 850.  When exported (and rotated in Acrobat) this gives a nice crisp image that also fills the page.  I hope this helps you.

  • Can you change the canvas size in AI CC . If so how? Not the artboard but the canvas behind it. I have a large cad drawing.

    Can you change the canvas size in AI CC . If so how? Not the artboard but the canvas behind it. I have a large cad drawing.

    Vandushia,
    The Workspace size is fixed, 16,384 points.
    I am afraid you will have to work in a suitable scale, which could be 1:2, 1:4, 1:10, or whatever is most convenient.

Maybe you are looking for

  • Converting 110v - 220v

    Hello, I am moving to Italy and need to know if I need to use my converter for my laptop or just a plug adaptor. I was told that newer laptops automatically convert the voltage for you so it does not burn out, but I am not sure if mine does, or if th

  • PO receipt due date / transhipment/ regular / express order

    Dear Experts, Can anyone please let me know where i can find or which field, for the following in a Purchase order? 1. receipt due date 2. whether PO is a transhipment order or regular order or express order. Regards

  • Assign default namespace to XML fragment using XQuery

    Hi everybody! I need to add a default namespace declaration to a XML fragment using XQuery. I wrote following statement to assign fragment to $body: <soap-env:Body>{ fn-bea:inlinedXML($content/text())} </soap-env:Body> The problem is "$content/text()

  • Need details about messageName

    I am using the following code to display a confirm message, once a new record inserted. This a program from the Tool Box tutorial. MessageToken[] tokens = { new MessageToken("EMP_NAME", employeeName), new MessageToken("EMP_NUMBER", employeeNum) }; OA

  • Front row on my macbook

    it said its not installed but i already have version 10.4.8 and if i put in the disc its gonna start for 10.4.6 any suggestions? is there a website where i can download it?