Having problems scaling down image

Hi there, I was hoping somebody here may be able to answer a query I have.
I'm currently creating the following icon in Illustrator:
The Image was created within illustrator using the shape and pathfinder tools, the problem I'm having is that when I come to scaling it down, this happens:
The strange thing is that when I scale the icon upwards it does it perfectly as it should, but the problems are coming from scaling it down.
I think it may have something to do with the size of the image already, it's quite small, approximately 50px accross. I'm looking to get it down to about 25-30 px accross, but when i take it down to about 40px the distortion occurs and gets worse as I make it smaller.. I thought it may have something to do with the handles on the anchor points overlapping? But I'm not so sure as I've never had an issue like this before, although I've never worked at this small scale before either.
Any help on this is much appreciated.
Thanks in advance,
Lionel.

In your transform palette turn OFF align to pixel grid, prior to scaling. Adobe since CS5 has made that to be on by default when you create an RGB document.

Similar Messages

  • It's about attaching scaled down image

    hi...
    i'm attaching an image that has been scaled down from 3040 x 2016 to 1200 x 796 (using photoshop) to a jpanel via drawImage...
    it works fine, but then a message occur on the console when the program terminated :
    'Corrupt JPEG data: 3304 extraneous bytes before marker 0xed'
    i've tested attaching the real image (3040 x 2016)... there's no problem, but it's way too big,
    slowing down the program initialization...
    so is it a problem attaching a scaled down image ?
    thanx !

    Does the image open properly in photoshop? What type of image is it?

  • Having problems copying an image

    I'm having problems copying an image. The Image comes from my jar file and I'm trying to copy it to my hard drive. The problem is that it seems to add extra characters at the beggining and maybe at the end as well. I used a Hex Editor to compare the contents.
    Anyway I was wondering if anyone could offer suggestions.
    My code is listed below in case that helps.
    "in" is an InputStream, "content" is a byte array, and "out" is an OutputStream
    try {
       in = getClass().getResourceAsStream("LoveGameSm.gif");
       content = new byte[in.available()];
       out = new ObjectOutputStream(new FileOutputStream("Tmp.gif"));
       in.read(content);
       out.write(content);
       out.flush();
       in.close();
       out.close();
    catch(Exception e)  {
       e.printStackTrace();
       return null;
    }

    The problem is in the use of ObjectOutputStream... this does not work the way you think it does. It is used to serialize an object to an output stream. A serialized object is just the on-disk representation of a Java object. So, you are getting a serialized copy of a byte array, which is why there are extra characters.
    Instead, just leave off the ObjectOutputStream stuff, and write to the FileOutputStream. Better yet, wrap it in a BufferedOutputStream to increase performance.

  • Since installing LION having problems getting photo images to upload?

    since installing LION having problems getting photo images to upload? anyone else havie this problem? I did finally get a message that the format was wrong, but I have changed nothing on my camera. Only change was the installing of LION.

    This is from the Kodak site which says there is no Lion compatible driver/software yet, but it is coming in late August:
    http://support.en.kodak.com/app/answers/detail/a_id/41646/kw/os%20x%20lion/selec ted/true
    If you don't want to wait there is always this kind of device for less than $10 (I don't own or endorse it):
    http://www.walmart.com/ip/Moultrie-USB-2.0-SD-Card-Reader/14972138

  • I am having problems saving certain images

    I am having problems saving certain images. For example, on Ebay while viewing an auction item, when you click on the image to view the larger picture it opens in a new window. With Internet Explorer, you can "right-click" and "save picture as". With Firefox 3.6.9 the "save picture as" option is not availabale. Other options such as save "save page as" are available, but not "save as," or "save picture as." Any ideas? Thanks

    I have found a solution to the problem. Apparently there is an addon to fix this. Had no idea a specific google search for "trouble saving images on ebay" would turn up anything.
    https://addons.mozilla.org/en-US/firefox/addon/13802/

  • I am having problems shutting down my MacBook Pro.  I go to the apple and click shutdown or restart, it appears the shutdown process starts, the screen goes blue and the little circle keeps going round and round, but nothing happens even after 30 minutes.

    I am having problems shutting down my MacBook Pro.  I go to the apple and click shutdown or restart, it appears the shutdown process starts, the screen goes blue and the little circle keeps going round and round, but nothing happens even after 30 minutes.

    Make sure you quit all your applications before shutting down.
    And try resetting the SMC.
    Intel-based Macs: Resetting the System Management Controller (SMC)

  • I am having problem to down load adobe 10.1 what should i do

    i am having problem to down load adobe 10.1 what shold i do?

    You can start by telling us a lot more detail about where and how you are trying to download Reader and exactly what happens.

  • Imovie: i am having problems sizing my image

    imovie: i am having problems sizing my image when i convert the cells into a 'project'.
    I can see all the image in full, - until i drag it into project area, then in the view window the image is too large and is cut in half.
    i have adjusted the PAL size . large full view etc..
    I tired exporting and even when exported to quicktime, the image is cut in half.
    does anybody have any idea what the problem is?
    thanks

    Hello lucglobal68,
    The following article contains information regarding the options you have with cropping (or not cropping, if you'd like the entire image to show) images in iMovie.
    iMovie '11: Crop video clips or still images
    http://support.apple.com/kb/PH2232
    Cheers,
    Allen

  • Scaled down images look poor

    when placing .png files into CS5, they look fine, though as I  scale them smaller, once I reach a certain size, they begin to  look pixelated and the edges are jagged. Why is this? Why would they look worse at smaller sizes and how can I scale them down without them doing this?
    Thanks.

    I agree with the last poster,  .png is a newer format.
    You problem may be with bitmapped graphics previews in Illustrator. The best accuracy of a bitmapped graphic preview is in photoshop at 100% (1 pixel file to 1 pixel monitor). As you zoom in on a scaled down illustrator the preview will get better, as Illustrator uses the bitmapped preview part of the file to display the image, but the interpolation may make thin lines look bolder or thinner when not in a 1 to 1 pixel preview.
    Please post an example screenshot if you still need help, and we can answer your question much better.

  • Scaling down images to thumbnails with bilinear/bicubic filtering in Flex?

    Hi!
    I develop a Flex based AIR Application, which needs to create
    thumbnails of big images. My Thumbnailer class does what I want to,
    but the results look not so well. The problem is, that even with
    "smoothing" turned on, when drawing the bitmap smoothing only
    effects up-scaling.
    The thumbnails look very jagged and crisp. Photoshop uses
    bilinear or bicubic filtering when scaling down an image, which
    looks much better. I have searched the web with google and I have
    looked for other Flex projects using thumbnails but I could not
    find anything producing better thumbnail images.
    Performance is not very important because I save the
    thumbnails to image files and use these. So scaling does not to be
    real time.
    Is there a way to create better thumbnail images in
    Flex?

    I don't think it should be necessary to do things this way.
    I tried following the approach outlined here:
    http://blog.739saintlouis.com/2007/02/05/scaling-an-image-with-smoothing/
    in both an AIR app and a normal web app, and it looked
    noticeably different (worse) in AIR. Have you done the same
    experiment?
    Anyway, someone will look into it. (It's still possible you
    may be able to get better results following your method,
    though...not sure about that).
    Mike Schiff
    Flex SDK team.

  • Scaling Down images in Illustrator

    I scaled down original images into a file in an illustrator file but the pictures are still the original HUGE picture size. When I scale it down or save the file as a pdf is there anyway to get the size down proportional to the scaled down version? This is going to press so I can't reduce the quality.

    Look at the preferences for pdf export, I believe it is under the edit menu. You can set the image reduction there. If necessary, create a new preset with the options you prefer, but one of the pdf-x options should work. (I never tired the pdf-x presets, so I am assuming it would be right).

  • Having problem with importing images to a java applet in web broswer

    I'm creating a mini 2d game just for fun and I am running it as a applet with the JApplet class.
    This is my html file.
    <html>
    <body>
    <applet code=ambiDexApplet.class name=ambiDexApplett archive=ambiDexApplet.jar
         width=640 height=480>
         <param name="Player" value="Player.class">
         <param name="Actor" value="Actor.class">
         <param name="Tail_Bead" value="Tail_Bead.class">
         <param name="Block" value="Block.class">
         <param name="Morphable" value="Morphable.class">
         <param name="Item" value="Item.class">
         <param name="GameObject" value="GameObject.class">
         <param name="leftImg" value="Player_Left3.gif">
         <param name="rightImg" value="Player_Right3.gif">
         <param name="img1" value="bgImgFinal.jpg">
         <param name="img2" value="Block_Tower2.gif">
    </applet>
    </body>
    </html>However every time i try to run the program i get the following error when i open the java console.
    java.security.AccessControlException: access denied (java.io.FilePermission Images\Player_Left3.gif read)
    at java.security.AccessControlContext.checkPermission(Unknown Source)
    at java.security.AccessController.checkPermission(Unknown Source)
    Obviously, the applet is not letting me read the image files. By the way, the .class files and the image files are all in same directory. So can anyone help me please?

    Unfortunately, yes--I've tried it that way over and over, and every other way I could think of.  The files are all in one folder, and I've converted the raw files to both tiffs and jpegs.  I even tried converting them to jpegs at the final pixel dimensions.  Each folder that I have used only contains one type of file, and they are all part of the same sequence and sequentially numbered.  I have even tried renumbering the files with numbers first, numbers last, numbers only, moving underscores.  I moved the files from my external hard-drive to the desktop ... I have a lot less hair than I had only a few days ago!
    I've looked at a few other tutorials that outline the same sequence of steps, and tried them over and over, and then changing one step at a time to make sure that it was not a single step that caused the problem.
    The thing that is really bugging me is that it works fine if I use the different approach of using the place command instead. 
    Anyway, thanks for all of your time.  It's going to be a lot simpler to just stick with 'place' command and I will likely do that, but I tend take things like this as a challenge.  I like to know WHY it won't work for me.  Sometimes it seems that there is just no logical explanation!
    Stuart

  • I am having problems with the image quality when image placing in indesign

    Hi
    I am finding that many illustrations are pixilating when I place them in indesign from illustrator or photoshop.  Some times I can rectify the issue by increasing the size or dpi of the image prior to placement, but I'm sure there must be another way.  How can I improve on the quality and definition of placed images in Indesign?

    This forum is actually about the Cloud, not about using individual programs
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll
    http://forums.adobe.com/community/indesign
    http://forums.adobe.com/community/illustrator
    http://forums.adobe.com/community/photoshop

  • OS X 10.10.2 Server. Having problems with Netboot Image

    Hey there guys, it's the first time i'm having to deal with an OS X server.
    I've made a Mac Mini into a server, and would like to use it as an Imaging Server for our Company's laptops, which are MB pro's.
    I've checked that i've updated the OS on the Mac Mini and the MacBook Pro that i took the image from to the latestth
    soo... I made the image from the laptop, got it on the Server and it's in the Library/Netboot/NetbootSP0 folder.
    The Server app picks it up, and it's set so that you can install the image on other laptops via Ethernet.
    I'm using an apple Ethernet to thunderbolt adapter for the MacBooks
    At first i thought i've messed up something with the NetBoot image, so I had to Create another one.
    First one got Recognised by the laptops when i try to Boot while pressing [Alt+N], but when it booted that way, nothing happened - it just went to the "Select language screen" that you get when turning it on for the first time.
    The second image wouldn't be recognised at all and same thing happens.
    I can give you any additional info if required, just ask me.
    Thanks

    Without any more detail it looks like you've misconfigured something somewhere? Either the workstation you've used to build the image has somehow not 'taken' properly (don't ask me to explain as it can happen sometimes for no discernible reason) or deploy studio and/or your server (amounts to the same thing) have not been configured properly and/or the network in terms of what the clients use for DNS has not been thought through properly?
    It may be none of the above but they are good places to start the debug process.
    What we need is what you're basing your private network around in terms of DNS; e.g.: server's fully qualified domain name, does it resolve on both pointers, can your clients resolve it on both pointers, have you configured deply studio's depository correctly and so-on.
    You don't need to use alt N. Either use the N key or just use the alt key to select the Boot Disk Manager. If you've valid nbis they'll show up there. DeployStudio's netboot set is just a simple, minimal, network-based bootloader. It's typically not very large. Anywhere from 2-5GB. If your nbis are larger then you've not created what you think you've created.
    Hopefully some of the questions I'm asking will start you looking in the right places?

  • I am having problems with down loading itunes. It wont download fully and gives me an error message

    plz help problem occured with new comuter, windows 7, and old comuter, windows xp
    I've been without itunes for 5 months plz help

    What does the error message say? (Precise text, please.)

Maybe you are looking for

  • :   Simple  Problem  of

    I have a servlet named SearchEngine.class in the path C:\Tomcat\webapps\amiya-servlet\WEB-INF\classes\SearchExample Also another class named SearchSpec.class is there in the same path . Actully SearchEngines.class and SearchSpec.class belong to the p

  • Is it possible to change the title of a webpart using client object model/c#/sharepoint online

    Hi folks! I have been busted my butt trying to Write a program changing the title of an existing webpart on on of our subsites on SharePoint online. But I keep getting an error in the very last context.executequery. Tried a bunch of different approac

  • Copy and paste is stuck

    My copy and paste is stuck on an old copy. I can't clear it. I have tried rebooting but every time I copy or cut something new the old image still shows up and pastes. How do I clear like the clipboard?

  • Trex Upgrade: importHost_61_70.py does not work !!

    Hello, I am upgrading TREX server from 6.1 to 7.0 following SAP Upgrade Guide "Upgrade from TREX 6.1 to SAP NetWeaver 2004s TREX (TREX 7.0)". Old TREX system (6.1) is installed on machine called sapportaldes, and new TREX system (7.0) is installed on

  • Pantech UML290, 2107 error code on Windows XP

    I have a Pantech UML290 modem and I cannot connect to the Internet. Every time I try to connect I get an error popup indicating that there was an error connecting (error code 2107). I've uninstalled and reinstalled the VZAccess software several times