Resizing images in InDesign

When I take a Vector image from Illustrator and drop it into InDesign, and then go to shrink the image down, I get this message: Requested value is not a legal dimension.

I just got this error (and found this post by searching google), when creating a little, simple (fewer than 20 points) vector shape directly within InDesign (CS5.5, Mac) using the Pen tool.
I created the shape, and then tried to shrink it down ~50% to fit into the space I'm needing it to fit inside. At first, it did something I've never seen before: I clicked the corner, held down Shift to lock the aspect, and then started to drag. The preview outline box shows me what I expect (an outline getting smaller), but when I let go, the shape returns back to the previous size and location.
Feeling confused and frustrated by this, I then tried to use the actual "size" dialogs within the quick toolbar or whatever that contextual thing on top is called. That's when I get the "Requested value is not a legal dimension" error. I looked at my shape very closely, and there is nothing special about it at all. The shape itself is over 2 inches wide, composed of two separate lines. I need it to be just over 1 inch wide. Strangely, when I turn it into a compound path, the error goes away. It doesn't look like the excuse given for this behavior in this thread really holds up under testing.

Similar Messages

  • Resizing Images in InDesign CS5

    Hi,
    I jumped from CS3 to CS5. In CS5, when I resize images they enlarge or decrease from the center and no longer resize from where my curser pulls from.  Is there a setting that I can change for the image to resize from my curser and not the middle of the image?
    Lindsey

    I'm goint to presume you mean you are grabbing a sizing handle and dragging. Behavior has not changed. The point opposite the one you grab should remain fixed and all others should be moving in or out (if you're holding the shift key) depending on which direction you drag. In this case the proxy doesn't affect things. Are you seeing something different, or doing something different?

  • Does anyone resize images to fit InDesign Rectangle Frame tool?

    My question is based on some booklets that we have created in the past. We have some very large images all 300 ppi, but when shrunk down they tend to have an effective ppi of 500 or greater. Part of me feels that when the effective dpi is large, that I should go back into photoshop and resize those images, hopefully saving the size of the PDF file after exporting. So, my questions are one, does anyone even resize images anymore to fit the rectangle frame to keep ppi around 300 or two, do they not do this anymore and let InDesign handle this process when exporting to PDF?
    Thanks Everyone,
    Mike

    Better quality is to resize in Photoshop and sharpen there, because InDesign has no choice of the method of sharpening. But to be honest, in the majority o cases I do resampling in InDesign when exporting to PDF.

  • Holding SHIFT to resize image in PROPORTION not working - InDesign CC

    Hello,
    I am putting a portfolio together containing a ton of images.
    I constantly use the SHIFT to resize images in proportion constantly, but it is not work.  It resizes randomly wherever my curser goes.
    It works in Photoshop CC and Illustrator CC
    I have uninstalled InDesign (uninstalled preferences too), then re-installed with no result.
    Using the Scale tool (by pressing S) still does not work
    I have been using the manual SCALE with percentages or using the "fit content proportionally" buttons on the toolbar, which is killing my workflow, as I need fine grain control
    I may have typed something out while thinking I was in a text box, when I was not.  This may have turned on or turned off the feature.  I'm not sure how to bring it back now.
    Any help would be appreciated
    Casey

    Which tool are you using, and which platform?
    I use the selection tool, myself, and for that you need to press BOTH Ctrl (PC)/Cmd (Mac) and Shift before dragging to scale proportionally. On windows you must press the keys before clicking the mouse.
    How did you replace the preferences? Directions to do it properly are at Replace Your Preferences

  • Trouble with re-sizing images/textboxes InDesign CS6

    Has anyone had any problems re-sizing images or text boxes in InDesign CS6?
    I have been doing it for months by selecting the corners and dragging them in or out but suddenly it's stopped working. The arrow no longer changes to a double arrow when I hover over the corner and all I can see is an hourglass when I hover over any type of frame.
    I can resize images only be changing their percentage in the transform objects -> scale options.
    I tried re-setting my preferences and it didn't help.
    Please advise me if there is something else I can do. 

    Tried that and it didn't help.
    The only thing I can think of is that there is something wrong or slow with my remote desktop connection which is affecting functionality. No one else seems to have had this problem.
    Thanks for your effort though.

  • A way to resize images so that all are the same size??

    I've got a minor complaint about InDesign going all the way back to version 1.0. I have a bunch of square images that I want to drop into a layout and then resize so that they're all the same size, e.g 2 inches wide (constrained height) or something. However, all the tools I've tried to make this work only resize all the images by percent, so the ones that started out larger are still too large. Its frankly a huge source of stress, since there's no easy "Actions" palette as in Photoshop and I don't want to resort to real scripting. Can anyone tell me if there's a way to resize images absolutely in the layout?
    Thanks in advance!

    Change your first frame using the control panel's H and W fields. Then
    select the rest of the frames and use the object>transform
    again>transform sequence again individually command.
    But you'd really be better off creating one and then using step and
    repeat to get them all correct. Use the frame fitting options before
    placing any graphics and you'll be good to go.
    Bob

  • Resize Images script

    Dear all,
    Here is my new Resize Images script for everybody who wants it:
    http://www.kasyan.ho.com.ua/resize.html
    Any feedback is welcome.
    Kasyan

    I really don't know anythign about scripting but I remember that it is important to put the script in the following folder structure:
    Scripts-Scripts Panel-Version 4.0 Scripts
    I hope that will do it.
    From: [email protected]
    To: [email protected]
    Subject: Re: InDesign CS3 resize images 100% script
    Date: Fri, 11 Apr 2008 02:27:58 -0700
    A new message was posted by Chadi SAROUFIM in
    InDesign Scripting --
      InDesign CS3 resize images 100% script
    I have copied the above script and I am receiving the below error message. I would really appreciate if someone send the final working script since it is very usefull
    Error 25
    Error in line 2
    View/reply at
    InDesign CS3 resize images 100% script
    Replies by email are OK.
    Use the
    unsubscribe form to cancel your email subscription.
    More immediate than e-mail?
    Get instant access with Windows Live Messenger.

  • Which approach to use for resizing image

    There are two ways of resizing images as I know:
    1. image.getScaledInstance(width,height,hint);
    Using hint like Image.SCALE_AREA_AVERAGING gives somehwat satisfactory resizing.
    2. static BufferedImage resize(GraphicsConfiguration gc, BufferedImage source, int w, int h, Object hintValue) {
    BufferedImage result = gc.createCompatibleImage(w, h, source.getTransparency());
    Graphics2D g2 = result.createGraphics();
    g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION, hintValue);
    double sx = (double) w / source.getWidth(), sy = (double) h / source.getHeight();
    g2.drawRenderedImage(source, AffineTransform.getScaleInstance(sx, sy));
    g2.dispose();
    return result;
    where the hint passed is RenderingHints.VALUE_INTERPOLATION_BILINEAR ;
    Now which of the two method method should I use-using image.getScaledInstance() or using AffineTranform ? opr is there any other way which is faster but provides good result?
    i am creating an image editor, so the GUI dialog will have oprtion to choose the algorithm. I want the method which provides better result yet faster.
    Tanveer

    http://forum.java.sun.com/thread.jsp?forum=20&thread=522483

  • How do I save image and text as a single image in InDesign CS5.0?

    How do I save an image and text as one image in InDesign CS5.0? NOT 5.5.
    I need to save the image as a 72-dpi, jpg file for ePub purposes. I designed a book and am handing it off to someone for ePub.
    This is what I've tried:
    1) Copied from InDesign, pasted into a PhotoShop doc as a Smart Object. Saved it as 72 dpi jpg, then imported back into ID.
    2) Took a screenshot of ID page, placed it in PS, saved as 72 dpi, imported into ID
    3) Saved page as a PDF from InDesign, then saved PDF as 72 dpi jpg, then imported into ID.
    4) Save page as a PDF from InDesign, placed into Photoshop and saved
    as 72 dpi, then imported into ID.
    5) Saved as an EPS from InDesign, placed in PS, then imported back to ID.
    In all cases, the type looks terrible. It doesn't seem to matter whether I copy or place into Photoshop, though placing is slightly better.
    HELP!!!

    In all cases, the type looks terrible. It doesn't seem to matter whether I copy or place into Photoshop, though placing is slightly better.
    Naturally what you did will result in rasterized text. Did you preview with high quality settings?
    Are you sure the people who will handle that downstream need pixel images and do you have the exact pixel dimensions needed?
    Why did you place the image back in Indesign, by the way? 

  • Need help on quality of resized image!!

    I am required to resize images to max 1240pixel (longest dimension) as a submission of work, though when work is viewed it will be at 30"x40".  Can not figure out a way to do this where images don't become quite pixelated when viewed at larger size.   Appreciate any suggestions. 

    Is there some software to verify if my graphics card is shotty?
    Techtool Pro has some testing, the AHT tests VRAM, but game benchmarks and stressing will tell you the most.
    Is re-seating the graphics card or memory worth trying?
    Absolutely. Just don't reinstall the graphics card until you clean it thoroughly.
    Cleaning the dust out of my machine?
    YES. A dust filled graphics card heatsink will cause the GPU to cook, and cause problems thet you describe.
    If I need a new graphics card, what are my options? Do I have to purchase it via Apple store? I would like to stick with an Nvidia card so am I stuck buying the same card I currently have or can I upgrade?
    You don't have to buy from Apple, but using with OS X limits your choices to Mac compatible or flashable PC versions.
    There is an awful lot of user input into this topic here:
    http://blog.macsales.com/602-testing-those-new-graphics-cards
    Card reviews can also help:
    http://www.anandtech.com/video/showdoc.aspx?i=3140&p=9
    http://www.tomshardware.com/reviews/radeon-hd-4870,1964.html

  • I need some help resizing my images on PS6. I am using a mac and have been trying to resize with same resolution and constaining proportions but for some reaseon the smaller resized image appears pizelated.

    I need some help resizing my images on PS6. I am using a mac and have been trying to resize with same resolution and constaining proportions but for some reaseon the smaller resized image appears pizelated. Heres an image of before and after. The first image I use is a JPG 72dpi 1500px x1500px and I want to downsize it to 600x600px same res, but it keeps pixelating, this has never happened before. Any suggestions, thoughts?
    thanks!

    I wouldn't say pixelated; more like blurry.
    Like ConnectedCreative said, what steps are you using? Are you using "bicubic sharper" when resizing down?

  • Upload and Resize Image not inserting filename in database

    I have a form that I created using the insert record form wizard. One of the fields is a file field and my form enctype is set to multipart/form-data. I then used the upload and resize image behavior and set the parameters. When testing the form the file uploads to the correct directory but no entry is made into the database for that particular field. The other fields are entered into the database just fine. If it helps, here is the code generated before the  tag:
    <br />
    <br /><?php require_once('../../Connections/test.php'); ?>
    <br /><?php<br />// Load the common classes<br />require_once('../../includes/common/KT_common.php');<br /><br />// Load the tNG classes<br />require_once('../../includes/tng/tNG.inc.php');<br /><br />// Make a transaction dispatcher instance<br />$tNGs = new tNG_dispatcher("../../");<br /><br />// Make unified connection variable<br />$conn_test = new KT_connection($test, $database_test);<br /><br />// Start trigger<br />$formValidation = new tNG_FormValidation();<br />$tNGs->prepareValidation($formValidation);<br />// End trigger<br /><br />//start Trigger_ImageUpload trigger<br />//remove this line if you want to edit the code by hand <br />function Trigger_ImageUpload(&$tNG) {<br />  $uploadObj = new tNG_ImageUpload($tNG);<br />  $uploadObj->setFormFieldName("picture");<br />  $uploadObj->setDbFieldName("picture");<br />  $uploadObj->setFolder("../images/");<br />  $uploadObj->setResize("true", 120, 0);<br />  $uploadObj->setMaxSize(1500);<br />  $uploadObj->setAllowedExtensions("gif, jpg, jpe, jpeg, png, bmp");<br />  $uploadObj->setRename("auto");<br />  return $uploadObj->Execute();<br />}<br />//end Trigger_ImageUpload trigger<br /><br />// Make an insert transaction instance<br />$ins_team = new tNG_insert($conn_test);<br />$tNGs->addTransaction($ins_team);<br />// Register triggers<br />$ins_team->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Insert1");<br />$ins_team->registerTrigger("BEFORE", "Trigger_Default_FormValidation", 10, $formValidation);<br />$ins_team->registerTrigger("END", "Trigger_Default_Redirect", 99, "../team.php");<br />$ins_team->registerTrigger("AFTER", "Trigger_ImageUpload", 97);<br />// Add columns<br />$ins_team->setTable("team");<br />$ins_team->addColumn("id", "NUMERIC_TYPE", "POST", "id");<br />$ins_team->addColumn("sort", "NUMERIC_TYPE", "POST", "sort");<br />$ins_team->addColumn("name", "STRING_TYPE", "POST", "name");<br />$ins_team->addColumn("title", "STRING_TYPE", "POST", "title");<br />$ins_team->addColumn("description", "STRING_TYPE", "POST", "description");<br />$ins_team->addColumn("picture", "FILE_TYPE", "FILES", "picture");<br />$ins_team->setPrimaryKey("id", "NUMERIC_TYPE");<br /><br />// Execute all the registered transactions<br />$tNGs->executeTransactions();<br /><br />// Get the transaction recordset<br />$rsteam = $tNGs->getRecordset("team");<br />$row_rsteam = mysql_fetch_assoc($rsteam);<br />$totalRows_rsteam = mysql_num_rows($rsteam);<br />?>

    If the reason is about memory, warning message should be happened when upload the image, because "show thumbnail" means resize at second time, how come you failed to resize the picture that system let it upload succeed at the first time by the same resize process?
    upload procedure
    a.jpg: 2722x1814, 1.2mb
    upload condition: fixed width 330px, 1.5mb
    "upload and resize" a.jpg -> file upload -> "resize engine" -> passed (but not work and no warning message)
    "show thumbnail" a.jpg -> "resize engine" -> failed (not enough memory)
    it doesn't make sense.
    and you miss an important key point, I upload the same picture myself, and resize work, so I said it happened at random, and that's why I am so worried.

  • Resize image in pdf file

    I need to resize image in pdf ,
    I get this [http://www.java2s.com/Tutorial/Java/0419__PDF/Positionandresizeanimage.htm]
    I try to put the code in my servlet
    but I get error on not static method on PdfContentByte cb = writer.getDirectContent(); how to deal this problem
    Thank You

    PdfContentByte cb = writer.getDirectContent();There is no such method in the JDK or the Servlet API.
    Ask whoever provides it.

  • How to place the images in Indesign xml file by Javascript?

    How to place the images in Indesign xml file by Javascript?
    We got the Indesign xml file, how to give the image placement link by Indesign javascript? Please help me its urgent.

    Hi,
    You can pass the image url as a href attribute=> file:///Users/me/Documents/my_pic.jpg directly within your xml. It just needs that you pass a local, static and valid url.
    If you want to add image later once the xml is flowed and so target specific nodes and inject images, it's a bit more complex. If the node is not part of the layout, you may try to reach the XMLElement objet and such an attribute, then layout the element.
    var x = some XMLElement
    x.xmlAttributes.add("href","file:///Users/m/Documents/my_pic.jpg" );
    If already placed, then you have to get the associated pageItem, then place your file into it.
    pagItm.place ( File ( "/Users/m/Documents/my_pic.jpg" ) );
    Hope that helps,
    Loic
    http://www.loicaigon.com

  • How to get all images in indesign CS5 with javascript?

    Hi,everybody,
    How to get all images in indesign CS5 with javascript?I want to delete them.
    Anyone can give me some example codes?
    Thanks,
    Bridge

    Hey!
    This will remove all images from your InDesign document:
    var myLinks = app.activeDocument.links.everyItem().parent;
    for(var i = 0; i < myLinks.length; i++)
        myLinks[i].remove();
    Hope that helps.
    tomaxxi
    http://indisnip.wordpress.com/
    http://inditip.wordpress.com/

Maybe you are looking for

  • Why have my playlists on my iPhone disappeared?

    Why have my iTunes playlists on my iPhone disappeared even though they appear when I connect the phone to iTunes on my laptop? I do not seem to be able to retrieve or reinstall them. I normally manage my music manually.  Even recent CDs I imported wh

  • Why is there no output from the "IMAQ Co-occurre​nce Matrix" VI?

    When using the "IMAQ Co-occurrence Matrix" VI there is no Co-occurrence matrix output. There Haralick features are produced but the co-occurrence matrix remains empty (It should produce a 8x8 matrix). I am inputting a U8 grayscale image with a displ

  • Windows Support Software and Mountain Lion.

    To anybody having difficulty downloading the Windows Support Software through the Bootcamp Assistant, it does infact work, but is incredibly slow. I have successfully installed Windows 7 today, but it took four hours to download the support software.

  • Sorting photos manually

    Does anybody know how I can have my photos sorted by date, and then move them around manually after wards to fine tune the order? I know how to go into view, then have them sort by date, but the 'sort manually' option is faded out and unselectable (f

  • Pictures imbedded in email

    I received a email with several picture's embedded. I want to show it to someone with no computer so I downloaded the mail to my phone (Lumia 1520) but when opening the email the picture's are not there,  just a square blank box. Before opening the m