Large Canvas Sizes

I recently purchased a product called Roots Magic for an upcoming family re-union (Sep 13th). This program produces a Family Tree Wall Chart with a canvas size of 10.6" x 396.9" (1' x 33'), and growing. I have pictures within the chart so you can put a face to the name. I am trying to get some format that a local printer can produce a reasonably readable chart. The Roots Magic generated chart is great in format, quality and size of lettering.
I can only export it as a .EMF file as the other options cause RootsMagic to crash.
I can't use Adobe Illustrator, Design, or PDF (which are the preferred formats of the local printers) because their largest canvas size is 227". I tried importing partial EMF files, however, their print size was too small and I couldn't scale the objects without blowing the canvas limit again. Besides, genrating the tree and printing it in pieces, seems to alter the flow of the generations.
Adobe Photoshop has a larger canvas size, I think, however, it does not import EMF files.
I have most of the Adobe products, but I can't seem to find a way to produce something for local commercial printing. Muliple PDF pages, scaled to the same size, appears to be an alternative but I can't seem to find a way to produce this. RootsMagic does not have a lot of alternatives.
My options seem to be:
a) find some way to breadown the resulting object intio mutiple canvas sizes
b) buy my own printer/plotter.
To make matters worse, the chart is growing daily as I receive added updates.
Does anyone have any suggestions?

Ian,
Realistically, the folks who come to mind who can output anything 33-feet long are the folks who would make large banner or perhaps some billboard and vehicle graphics stuff, and resolution is probably not going to be satisfactory. Also note, that a Dead Seas Scroll is awkward to handle unless you have a wall to unroll and tack it to. Also note that the graphic file size could exceed 1 GB.
>buy my own printer/plotter.
Forget about purchasing a printer that can handle this unless multiple pieces are acceptable. For example, an Epson 13" printer (figure spending several hundred dollars) can handle roll-cut printouts, but only up to 44" wide. But if you have to print out more than one or two sets, you're going to be spending a lot of time with this; and a lot of money on ink (and paper if you choose something better than the rather miserable, non-stable 28 lb or 32 lb inkjet bond). But then again, if you have a production house or printer output this for you, you may be spending $10-$12 or more per square foot.
>I can only export it as a .EMF file as the other options cause RootsMagic to crash.
Get tech support to figure it out, so that if multiple pages is a reasonable option, you can chop the art down and place each segment on a page of a page layout document, such as InDesign or QuarkXPress, if you can save to a compatible format, such as .pdf, .eps .tif or .jpg.
Neil

Similar Messages

  • How can I use the print module to print different size images on one large "canvas"?

    How can I use the print module to print different size images on one large "canvas"? An example would be in Photoshop, go to file>new, and create the size paper I want, and move images of different sizes onto it.
    I was thinking the print module would do this automatically for me.

    You can't, at present. It's been a requested feature, so we'll see if it shows up in a future version, but it's not there at present.

  • 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.

  • How to display graphics larger than canvas size?

    How do I display graphics larger than canvas size in Java AWT?
    I tried setting the canvas size() to a value larger than my monitor size, and then adding scroll bars to the canvas, but the scroll bars and the canvas won't go beyond the monitor size in pixels, which is only 800, so the large graphic I try to display gets cut off at the bottom.
    How can I overcome this problem? Has anybody encounter a similar dilemma before?

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    public class AWTSizing
        public static void main(String[] args)
            LargeCanvas canvas = new LargeCanvas();
            ScrollPane scrollPane = new ScrollPane();
            scrollPane.add(canvas);
            Frame f = new Frame();
            f.addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    System.exit(0);
            f.add(scrollPane);
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    class LargeCanvas extends Canvas
        int w, h;
        final int PAD = 10;
        Rectangle r1, r2, r3;
        Rectangle[] rects;
        boolean firstTime;
        public LargeCanvas()
            w = 360;
            h = 360;
            firstTime = true;
        public void paint(Graphics g)
            super.paint(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            if(firstTime)
                initShapes();
            g2.setPaint(Color.red);
            g2.draw(r1);
            g2.draw(r2);
            g2.draw(r3);
        private void initShapes()
            r1 = new Rectangle(w/4, h/4, w/2, h*3/4);
            r2 = new Rectangle(w/2, h/2, w/2, h/2);
            r3 = new Rectangle(w*5/8, h/6, w*3/5, h*2/3);
            rects = new Rectangle[] { r1, r2, r3 };
            firstTime = false;
            invalidate();
            getScrollPane().validate();
        private ScrollPane getScrollPane()
            ScrollPane scrollPane = null;
            Component c = this;
            while((c = c.getParent()) != null)
                if(c instanceof ScrollPane)
                    scrollPane = (ScrollPane)c;
                    break;
            return scrollPane;
        public Dimension getPreferredSize()
            Dimension d = new Dimension(w, h);
            if(rects == null)                   // before calling initShapes
                return d;
            Rectangle r;
            for(int j = 0; j < rects.length; j++)
                r = rects[j];
                if(r.x + r.width + PAD > w)
                    d.width += r.x + r.width + PAD - w;
                if(r.y + r.height + PAD > h)
                    d.height += r.y + r.height + PAD - h;
            return d;
    }

  • When dragging an image onto a fresh canvas, the resizing feature presnaps the image into the canvas size. I can confirm that this has not happened to me in previous projects. I've also tested this problem by making a new larger document size and dragging

    Contexts: I am very competent with GFX and have worked on many projects.
    When dragging an image onto a fresh canvas, the resizing feature presnaps the image into the canvas size. I can confirm that this has not happened to me in previous projects. I've also tested this problem by making a new larger document size and dragging in the same render. It snaps again. I don't want to re-size from the canvas dimensions, I want to resize from the render's original dimensions.

    Ap_Compsci_student_13 wrote:
    ok sorry but doesn't sscce say to post the whole code?the first S is Short, and yes, it needs to be all the code needed to illustrate the problem and let use reproduce it. If you were developing a new Web framework, your example might be short, but for a student game it's very long.

  • When using crop tool based on canvas size dimensions, the file size becomes very large

    Can someone explain how to best figure out crop tool settings to maintain relative file size?  I tried to use the image / canvas size information to set the crop tools dimensions, but the file saved is 10 times larger than the original.
    Thanks!

    What exact version of Photoshop?  There were changes to the crop tool as of CS6, althoughy there's an option to use Classic (the old crop tool behaviour).
    It wouldn't hurt to specify your platform (Mac or Win)…
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you better and faster.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Changing Canvas size to be smaller, is actually making it larger?

    Hello,
    OK, I have changed Canvas size a thousand times in my life and this has never happened before.
    I have an image that is 1600 px wide and I want to trim the sides to 1260. When I start to even type in the smaller size, the file size indicated is larger (that was my first suspicion that something was not right). And sure enough, it is making the image larger?
    Has this ever happened to anyone else?
    thanks
    babs

    OMG ...I do!!!!!
    I must be half asleep this morning!!!
    Thank you!
    babs

  • Setting resolution, deciding file type, for very LARGE Canvas prints. 36MP camera.

    Okay, so I noticed my lightroom was on 240 PPI resolution. I changed it to 300 because I read 300 was for standard prints. What would I need to set the export to in the resolution box for a very large Canvas?
    Is it better to choose Tiff instead of Jpeg for prints of this quality, if not then what should I choose?
    I am using a Sony A7R full frame 36.4MP and with some of the sharp Zeiss lens there is really no pixelation that noticeable when I zoom in 100 percent. Of course the A7R is being said to be one of the best Sensors on the market today. It's supposed to be like the Nikon D800E, but apparently it has some advantages.
    In other words, I want to export in as high of quality as possible for the Canvas. File size is not an issue.

    Changing the resolution setting does absolutely nothing to the digital image. This is a common misconception. The only thing that counts in the digital image is the pixel dimensions. Regardless of what the PPI setting is (240, 300, 600, whatever) the image still has the same number of pixels. To determine what you need for a print of any size it is necessary to multiply the inches by the desired pixels per inch. Suppose you want a 16 x 20" print at 300 pixels per inch. The math would be something like this:
    300x16 = 4800 pixels
    300x20 = 6000 pixels
    So to print a 16 x 20" print you would need an image that is 4800 x 6000 pixels. And the PPI setting can be anything you want it to be because it has no effect on the image.

  • Adobe Photoshop cs4-What Does Canvas Size Really Mean?

    What are we actually looking at when we place a picture on a canvas?
    For example, if I have a canvas of a width of 800 and a height of 1500 it appears on the screen to my eyes to be about 3 inches by 7 inches.
    Then let's say I add the headline: Risk takers of all kinds think the same.
    This headline will possibly take three rows to complete itself.
    But then I can make the same canvas fit the screen.
    Now the entire headline will fit on one row.
    What confuses me is which image of the canvas is a "what-you-see-is-what-you-get" in terms of how it will actually look on my webpage?
    In other words I guess my real question is how do I start with a canvas size that actually reflects my webpage or a defineable portion of it.
    Thank You,
    Jerry

    You'll have to forgive me but at times I'm not really sure what I'm talking about or doing.
    But an image or other content is built on layer canvas' I think?
    It gets all confusing because you may or may not fill a canvas with an image?
    Assuming you do fill a canvas with an image then I think the pixel dimensions and resolution will be directly tied to the canvas size?
    But I don't think any of that is my real point.
    I'll try to speak to my confusion using words other than those I first used.
    For example let's say you are making a squeeze page for your website.
    So you start with a headline that reads as follows: INTERNET MARKETER STICKS TO HIS GUM!
    Let's say those words are in large print.
    On my computer and I am using a small screen, if I create a canvas of a width =800 and height=1500 it occupies a space of
    of about 3" by 7". 
    Now (and this part is now becoming like what I wrote above) those six words in large letters will occupy three to four rows on my computer.
    So in my mind I am thinking that when I eventually publish that page that the headline should occupy four lines. Make sense?
    But if I click the "fit to screen" Photoshop button, the canvas becomes larger on my screen and the entire headline will now fit on a "single" line.
    So now in my mind I am thinking that when I eventually publish that page that the headline should occupy one line.  See my problem?
    I guess my point is am I looking at WYSIWYG in the first, second or neither case?
    In other words what is the meaning of what I see when I look at a canvas?
    Thank you for your help.
    Here's one more attempt.
    Let's say you spend 12 hours designing a canvas in Photoshop that you thought would properly fill your webpage, and then you discover to your dismay that instead of your headline fitting properly only 37% of it does.  This would make you very unhappy and perhaps others.
    So what I'm trying to understand as a beginner is how does what I see on a canvas in Photoshop cs4 relate to a webpage.

  • Smart Objects...changing canvas size problem

    When changing the canvas size of a smart object, the layer on the original document will distort visually since it doesn't update the size of the smart object.
    Is there a solution to this, or an easy way to quickly update every instance of the smart object on the original doc?
    To clarify: I know that you can change the dimensions of the smart object on the original doc and it'll fix it, my question is if there's a way to automatically have that happen and have the original doc smart objects respect your canvas size changes on the smart object doc.
    Reproduce:
    1) Draw a circle
    2) Turn it into a smart object
    3) Go into the smart object, change the canvas size by increasing the height of the canvas. The smart object should now have a circle with blank space above/below it.
    4) Save the smart object
    5) The circle on the original document will now be squished.
    I'm using Photoshop CS5

    xg3 wrote:
    When changing the canvas size of a smart object, the layer on the original document will distort visually since it doesn't update the size of the smart object.
    When you change the canvas size of a document the only layer that will change is a backgroung layer for it does not support transparency so its pixels will be changed.  However a background layer should not distort it may be cropped  and have canvas added in which case the color of the empty canvas can be set in the canvas size dialog.  All other layer including Smart Object layer should not chang at all.  Layer positioning in relationship to the canvas  and the new canvas size is set during the canvas size change.  Layers can be any size and have any aspect ratio. Their sizes can be smaller, the same or larger then the canvas size. Even layer that can fit  within a documents canvas size may be positioned so that all, some or none of the layer is over the documents canvas.
    I do not know what you mean when you write the original document chages. A smart object layer has an embedded copy of an object. The original document is not touched. You can open the smart object layer embedded object in  Photoshop by double clicking on the smart object icon in the layers palette smart object layer and change it size. And distort it f you wish. When you use Photoshop save. Photoshop will change the enbedded object in the smart object layer. You can also leave the embedded smaro object as is and change the smart object layer size and distort it using transform on the smart object layer itsself.
    I think what you did was to open the smart object in photoshop change its canvas saze then save it. The updated smart object is realy round but you dont see that it is becaue it is being transformec ti fit the original documents canvas. If you do a Canvas size on the codument you will see the original docyment canvas size is not change and thet your now squaching a now changed taller object into a shorter canvas.  With each Smart Obkect layer there is as associated transform.
    No I was wrong I just tried that and it looks like the transform was not the problem as yo can see I dir a Ctrl+T so you can see the size of the smart object layer is now biger then the original document and is positioned centered canvas is still 300x300 white area in image

  • Adobe Generator: yes! but do not crop my canvas size (option)

    Adobe Generator= Is not there an option where I can maintain original canvas size position? ?
    I mean: I love that the generator slices and exports each individual layer element into a single file .. thats good BUT..
    but I do not want that the auto-cropping feature of export each single image into its exact dimensions >> I do want an option where you can maintain the original canvas size and element's position within the canvas space..    is that possible? 
    GRAPHICALLY it is instead of this:  ///  I want an OPTION that automatically do this:
    and we'll love that feature in Fireworks CC please !!!!

    Silkrooster wrote:
    I am not really seeing the need for it. If that was the case, it would make more sense to save the entire document.
    There is plenty need for it. For one, not every project is a web site where CSS is even relevant. But if you have a large stack of icons, it is often incredibly inefficient to position them all individually with CSS instead of just exporting them as PNGs with matching dimensions. It also gives you better control over the scaling; for example, if you have 2px strokes that are going to be scaled to 50% on export, you want to align them to a 2px grid so they don't go fuzzy.
    In my case I often need to export large batches (hundreds) of logos, which all need to be exported at canvas size and not trimmed to endless random sizes. The layer mask hack sounds like a lifesaver, but has plenty of shortcomings. It should be easy enough to add it as a simple parameter, and it would save a lot of time and hassle for a lot of users.

  • Cropping + Changing Canvas Size

    Hello,
    I have a problem (because I'm a beginner in Photoshop), and it's that when I crop and image and try to change the canvas size - I change the size because I'm using another type of paper - (and anchor the image to the top left), the image looks like the way it was before the crop. Is there another way to do this? Am I doing it wrong?
    Thanks

    Ok, so, what I did:
    New File 4x6 (in Custom)
    Drag & Drop the picture to Photoshop (making a new layer in top of layer 0 or background)
    Select the crop tool and arrange the picture like you want it to be seen after cropping it
    After I have the picture cropped, I want to print it in a 4x6 paper, but when I click File>Print, the paper says 8.5x11 (which is the standard format)
    Because I want it to be printed in 4x6 paper (so it can be correctly printed) I go to Image>Canvas Size and set the width and height of the canvas (in this case 4x6)
    When I do this, the canvas becomes large again, but the picture looks like the way it was before the crop.
    My question is if I'm doing this wrong, or if there's another way. Hope you understand. I added the pictures in order, just in case.

  • Problems with canvas size in Photoshop.

    I just upgraded to CS Cloud. When I open images in Photoshop the canvas appears to be very large. So I tried cropping the image. When I go to the Image Size or Canvas Size the right size appears. However, on screen there is all of this white space that shows up. It's driving me crazy. Has anyone had this problem and know how to correct it?

    Or you have color for the document window area outside the document bounds set to white.
    Right click just outside the picture and see if selecting one the grays like light gray, makes a difference.

  • Graph canvas size problem - missing rows

    Hi all,
    we have a simple horizontal bar graph based on a view, with just one total value pr. company showing.
    Problem is, if we set the canvas size too a small value, e.g. 400x400, then instead of resizing bars down so that all rows are shown, the graph starts to omit rows at the end!
    Even when enabling "Zoom and Scroll", we're still missing those rows.
    Only way to make sure all rows are displayed is to increase canvas size to a large enough value. Problem is, the number of rows is dynamic - so "big enough" might change over time....
    Is this a bug in the OBIEE graph component, or are we missing something here?
    Regards,
    -Haakon-

    hi,
    can anybody give me a hand.i'm in urgent!
    my request is how to display line graph according to the table rows.
    for example:in the table,i have 100 records(values),then the table range size is 10,so,each time when i scroll down the table,then graph will oso change to the another 10 records(values).
    while,i m adding the graph using jheadstart(10g).
    thank you very much.

  • Fireworks Canvas Size Limitation

    Anyone know if it's possible to remove firework's canvas size
    limit? I have a friend who loves to use fireworks for graphics
    design and he says that it has a canvas size limit of around 8ft,
    but he likes to design really large images and doesn't want to
    switch to another product. He contacted me because I do some
    development, but I think this may be out of my league. He is
    willing to pay for any help to this problem. Thanks.

    jeremyhein wrote:
    > Thanks again for all your responses. Yes, I do have a
    stubborn
    > friend, but I understand because I'm also very stubborn
    which is why
    > I write a lot of my own software.
    I'm actually a very stubborn guy myself so I get that... but
    I'm mostly
    a pragmatist. One of the things I hate the most is wasting my
    time, and
    trying to use the wrong tool for a job like this is exactly
    that... a
    waste of time and ultimately, money. His stubbornness in this
    matter is
    probably hurting his bottom line as well as his client's.
    I'd be curious to know what exactly he finds in Fireworks
    that is so
    compelling that he wants to use it above much more
    appropriate tools.
    Illustrator, InDesign or even FreeHand all have features that
    would make
    his job a lot easier than trying to do it in Fireworks.
    Furthermore, the
    assets he'd create in any of those apps would be much more
    easily
    re-usable in other mediums. Also, why isn't he posting in
    this forum
    himself?
    Stéphane Bergeron
    reach : connect : communicate
    http://www.webfocusdesign.com
    blog : tutorials : articles : gallery
    http://www.pixelyzed.com

Maybe you are looking for

  • HP Envy touch screen no longer working

    Not certain when but my touch screen is no longer working on my HP Envy?  Think it might have occurred during the Windows 8.1 upgrade.   Please provide a simple way to restore.  Pen and touch is no longer installed?  

  • Need sample code in webdynpro for java

    Hi all actually i have one webdynpro form which is having multiple input elements. for example name,address,phoneno,price quantity and amount. and there is update button for that form. when i click the update button the multiplication of quantity and

  • Are any "planned" enterprises/economies running SAP?

    If so, I'd be curious to know (not sure if social security/health care systems count in this category.) When the US defense sector first started considering SAP ten years ago, one question on everybody's mind was whether an ERP system could work if i

  • Accessing AppModuleImpl methods from Groovy expressions?

    From a VO View Criteria bind variable I'm attempting to call an accessor (aka. getValue) in it's parent AppModuleImpl, via a Groovy expression. I thought I could do something like: ((model.AppModuleImpl)object.getApplicationModule()).getValue() ...bu

  • How do I reclaim the unused space after a huge data delete- very urgent

    Hello all, How do I reclaim the unused space after a huge data delete? alter table "ODB"."BLOB_TABLE" shrink space; This couldn't execute with ora 10662 error. Could you please help