Illustrator :: Resize Canvas Size In CS6 - Not Artboard
Jun 26, 2013Is there a plug in to resize the canvas size in Illustrator CS6? Not the artboard, the canvas size
View 5 RepliesIs there a plug in to resize the canvas size in Illustrator CS6? Not the artboard, the canvas size
View 5 RepliesHow to re size the canvas ? (i am not asking about the art board, but the canvas).
View 1 Replies View Relatedi have around 500 eps formats images with different artboard size.
i need to resize the artboard to A4 size and the images to be placed in the centre of the artboard.
I am making a website on Illustrator 1,200 px 1,200 px. When i export it to .PSD i open it as a much larger file in pixels than this and with a whole Canvas/ Artbord white area which i don't need.
Is there any way to keep the page size like the final ouput without the white canvas area in the export?
I'm trying to resize my artboard to an exact mm size via a script so then I can add this to a batch i'm trying to achieve.
I've been trying to use the following, but i cant work out how to add the size I want in mm?
#target illustrator
var doc = app.activeDocument;
var docVB = doc.visibleBounds;
var myVisibleBounds = doc.visibleBounds; //Rect, which is an array;
myVisibleBounds[0] -= 20; //left coordinate (use negative values to add artboard)
myVisibleBounds[1] += 20; //ltop coordinate
myVisibleBounds[2] += 20; //right coordinate
myVisibleBounds[3] -= 20; //bottom coordinate (use negative values to add artboard)
doc.artboards[0].artboardRect = myVisibleBounds;
I have to use the Image > Canvas Size option to resize the size of my canvas to a wanted size. However this means a lot of trial and error to get the canvas size the same size of my current selection. Is there a quick function that would resize the canvas size to my current selection?
View 2 Replies View RelatedIn CS5, if you hold the ALT key (on windows, not mac) while resizing the artboard, it will scale from the center... creating an even width reduction/ increase on either side of the page. Why was this behavior removed in CS6?
View 4 Replies View RelatedI have over 400 AI files to process and I need to change the artboard size to the following specifications exactly on all files:
X: 108 px
Y: -108 px
W: 216 px
H: 216 px
Any script for this? I did some digging and came up empty.
We currently use CS3 in our Art Dept at the sign company I work for. Sometimes designing/layout for some projects can be a pain when they go beyond the max artboard size constraint in CS3. This is especially true in my dept which does all the large format digital printing. I find myself having to switch back and forth between some of my sign software, which has almost limitless area for design and layout. Not that we can't work in scales but life would be so much easier if we could do things in full scale. Now to the point, does CS4 have larger artboard size than CS3?
View 7 Replies View RelatedSaving as SVG (w/out AI editability) changes artboard size ...why? ai saves the artboard dimensions as the frame, unless it decides to expand the frame to accommodate extraneous material. what is weird and disappointing is that ai does not read these frame values back in to recreate the artboard; you have to use preserve ai capability which attaches huge code. How to get it to retain the chosen artboard size?
View 2 Replies View RelatedI just opened a template but this one got the artboard dimensions set to "pt"..I went into preferences settings and It was already set into "inches"..Even when I want to resize the artboard (shift+O) it's still the same..
View 3 Replies View RelatedIllustrator CC: how do I save my svg with artboard size?
It looks right when I open it in Illustrator, but in finder is still letter size.
I all, I'm working on a file that I have setup as 1045 px by 154 px. When I export this file to jpeg, png or bmp the file become over 4000 px wide. This is likely an easy thing I'm missing.
View 8 Replies View RelatedI'm in CS6 and have an .ai file that I need to first crop to 1200 x 600. I do not know the size / dimensions of the .ai , where can I find?
Inside the artboard I select the Artboard tool and I first need to crop the image to the same size the black dashes are within the red solid line.
I would normally just go to save for web and set the new size there but I need to save this cropped file as a layered pdf. I know hwo to do that but I need to know how to find the current size of the .ai file, then crop it down.
When I create a new file in AI CS 6, the artboard is larger than requested size, which shows up as a box within the too-big artboard. For example, when I create a new file, I set the artboard size menu to 1200 pixels wide by 750 pixels high, but the artboard created is about 6,000 pixels high and wide, with a black outline of the 1200 x 750 artboard that I tried to create.The actual artboard is much larger than the white area; I just cropped most of it in my photo software to show it here. What setting in the preferences or other menus fixes this problem? I didn't have it until today, so something got set incorrectly somewhere. I usually just see the 1200 x 750 white artboard against the dark background. It also seems to be happening now when I simply open an existing file. The artboard has suddenly increased to an enormous size.
View 9 Replies View RelatedI was using a custom size of artboard in illustrator, but I now I want to change it to A4 size for printing. However, when I change it to a A4 size artboard, the size of objects on that artboard remain unchange. As a result these objects do not fit the new size of artboard. Are there any way that I can change both the size of artboard and objects at once?
View 6 Replies View RelatedSometimes when I drag a new symbol instance to my artboard and resize it, the instance looses it alignement with the pixel grid.
This happens despite the fact that...
I checked the box for pixel grid alignement when I created the documentthe symbol option is set for align to pixel gridthe original shape in the symbol is aligned to pixel grindthe original shape has the align to pixel grid check box in the transform panel checked
So why when I resize the symbol instance does it break the pixel grid alignmnet and result in a blurred 1px stroke?
I'm working in CS6.
As I recall, you used to be able to change the artboard size when you first hit shift + O. There was a window for it at the top of the screen. Now,..for some reason that option is not there. It only gives me the ability to change the x and y coordinates. I have to double click the artboard tool to change the size of the artboard(s). How do I get back that ability?
trying to make an object the exact size of the artboard. This is something I do on a daily basis for several different reasons and it would be very useful if this can happen automatically for whatever size the artboard may be. As I understand it the only way is with a script but I have no experience with making illustrator scripts, im definately no programmer. I have set up quickkeys in the past to copy from the artboard inputs when you are on the artboard tool but these round to the nearest .01 and this is not accurate enough for what I am working with. Also if I do this with multiple pages open illustrator is very slow to respond to the artboard tool.
Below is a script that I saw on here that I believe may contain what I need but now knowing programming. Where to start on editing. All I need is the part where an object is placed on the artboard that is the exact same size as the artboard.
#target illustrator function main() { if (app.documents.length == 0) { alert('Open a document before running this script'); return; // Stop script here no doc open… } else { var docRef = app.activeDocument; with (docRef) { if (selection.length == 0)
[Code].....
In previous versions I have been able to resize the canvas and then resize the image. For example resize the canvas to 250px x 250 px. Then resize the image to the same.
Here is the process I am using:
Duplicate the layer and then hide it. Resize the canvas (Image > Canvas Size) to 250px x 250 px. Un-hide the layer and then resize the image (Image > Image Size). When I go into Image>Image Size it says that the image is already 250px x 250px. However if I try to transform the scale the image is the original size and not 250px x 250px
The reason for needing this is I resize image size (in bulk) and the canvas size using the batch process (file>automate>batch) and actions. I loaded the actions file I used in previous versions, but that did not work correctly. I then went in to do this manually and got the same results.
I create the designs on an art board that matches the screen size of whatever device I'm designing for, for instance 320x480px. The problem comes when I want to read the font sizes used in the design in order to apply them in the actual mobile app. Illustrator seems to use a strict 1px = 1pt rule. That means a 12pt font in Illustrator is always 12 pixels. This is however not true on the mobile device, which uses some other ratio. This means I have to "guess" the font sizes, trial-and-error style, which is ridiculous.
I've tried downsizing the art board, to something like 240x360 px, and then the font sizes do better represent those on the mobile device, but then all the graphics does not. So that's a no go.
Is there any way I can define in Illustrator the ratio between pixels and points? It seems Illustrator only supports a default 1 pixel = 1 point setting? (In Photoshop, for instance, this is not a problem as you can set the intended physical size of the document independently from the pixel grid. Any way to do this in Illustrator? Does Illustrator simply assume pixels is a physical unit, like inches and points?
I recently upgraded to Illustrator CS6, and suddenly clients have been remarking that the file sizes are wrong or there's "a ton of white space around the logo." I checked it out, and sure enough, it appears that whenever I export a file, it does not crop it to the image boundary like it used to, even if I had manually adjusted the artboard to fit closely around it. After a bit of trial and error, I discovered that I have to click "Use Artboards" on the Export dialog each time. The super annoying part is that it doesn't STAY checked, AND it adds a number to the end of the file name. So I often forget to check it (not used to the extra step in workflow), and if I make a modification to the file, I can't just export over the previous version. It requires me to export it, go find it in finder, and manually delete the extra number off the file name. The extra steps are adding way too much time when I'm saving out many files. I'm about ready to go back to my previous version just from this alone.
Is there an easier way to do this? It seems like the addition of this feature would only cause extra problems...
coming from CS3 to CS6 I would like to input artboard size and add crop marks to the board. Is this gone?
View 6 Replies View RelatedI increased my document from 8.5"x11" to 22"x34" and a black line of the original document remains. It is not selectable - the word "x page" appears when my cursor hovers on it. I'm working in C6.
View 4 Replies View RelatedIm not even sure if Illustrator is the program or if i should use Indesign but im trying to create a single folded wedding invitation and be able to print on both sides. i want the invitation to be 14cm x 14cm and like i mentioned open up like a card and print on the front and on in the inside. Can you pleasssseeee direct me to some instructions or tell me which program would be best to do this. Im guessing that since its smaller than an A4 page size then i will need to cut it down after printing. To be able to do this do i need to make the canvas the size of a A4 page and then put my size of the invitation on this??
View 2 Replies View RelatedI'm working on a flyer on a 8x11 canvas, but I want all of the elements I'm working to be transferred to a NTSC video film format. I understand how to a open a NTSC (Video Film Canvas), but I do not understand how to convert a canvas that I'm working to that.
View 1 Replies View RelatedI am trying to create a document size 6040mm x 350mm (for a sticker to run along the front of an eatery counter) but Illustrator keeps saying that it exceeds the canvas size. is there a way to increase the maximum canvas size or will I just need to design the document in two halves?
View 3 Replies View RelatedI just got CS5.1 at my job. This must be a preference, but when I adjust the Canvas size, it will constrain the image, rather than cropping the canvas. The Anchor in the Canvas Size menu appears outlined (highlighted?) which indicates that this is something in preferences that I can adjust.
View 2 Replies View RelatedWhen I go to create a File/New Canvas, sometimes the canvas area shrinks a lot.
Is it possible to keep the original canvas size ?
1.) I dragged out vertical and horizontal guides from the rulers and then created a new art board. The new art board now has the horizontal guides carried over from the first art board. How can I have separate guides on each of my art boards? I am using art board rulers.
2.) Is there a way to layout vertical and horizontal guides on an art board and copy them over to a new blank art board?
I have the following image. This is for schools as a fundraiser product/promo product.
What i have in green is the text box. I want it to adjust the text height and width itself depending on how much text is in the box while keeping a universal textbox size. Is there a way to do that?