Select-modify-expand makes rounded corners

Hello!
In CS2&CS3 when expanding current selection the final one has rounded corners - with more pixels the expansion is, the more rounded effect is visible. Could you please tell me how to correct this?
Thank you in advance.
BR / Ilya.

Ed:
Any compound shape will not expand properly using transform selection, unless I misunderstand you. Neither will any shape with (more than 1??) concave angles... Obviously with a rectangle we could probably all come up with three or four simple ways to expand without truncating the corners.
J

Similar Messages

  • Select Modify Expand is rounding my corners out of nowhere.

    I was working on something the other day that may or may not have something to do with this where I was going to Select>Modify>Feather.
    Whenever I try to make any type of selection, be it Ctrl+clicking the thumbnail, rectangular marquee tool, or pen tool, It has rounded edges for no reason. I have no feathering on, I have no anti-aliasing on. I tried going to Select>Modify>Feather and changing it to 0 but, it won't let me go below 0.1 and even still, that shouldn't be affecting my selections unless I choose it for each individual selection right? It's just frivolously rounding my edges. I tried deleting my preferences file and that didn't help either. I'm on Photoshop CC btw. The corners seem to be fine until I Select>Modify>Expand. I can't tell if the feather's just so low that you can't tell before the expand or if it's the expand causing the edges to round off. I have been using this method for months now and Expand has never rounded my edges until today.

    I know that there's alternatives but, what I want to know is why I have never gotten rounded corners from expand until today when everyone is telling me that getting rounded corners from expand is actually how it's supposed to work. I know for sure that all the feathering options are at 0 but, it's not feathering, it's just rounding and, I know for sure that I was using Select>Modify>Expand to increase the size of specific shapes, most recently for layer masks. I can't think of anything I could have hit that would have caused it to just change out of the blue like this.

  • How you make rounded corners

    Hello
    How you make round corners to the form when i use a div in dreamweaver cc i have try this but only the div change
    Thankes

    Sorry you can't change the style of the FormsCentral HTML form. The form is put in an iFrame inside you div and since the content of the iFrame is not coming from your server you can't modify it.
    I found this thread online that you might want to look at :
    http://stackoverflow.com/questions/583753/using-css-to-affect-div-style-inside-iframe
    Gen

  • How to make rounded corners of the image?

    Hi,
    I have arbitrary images which i need to change in the following way.
    1. Make the corners of the images a little bit rounded
    2. Pixels must be transparent such that the background can be seen.
    Thanks.

    import java.awt.*;
    import java.awt.geom.RoundRectangle2D;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class RoundingImages extends JPanel {
        BufferedImage image;
        RoundingImages(BufferedImage src) {
            image = roundCorners(src, 50);
        private BufferedImage roundCorners(BufferedImage src, int r) {
            int w = src.getWidth();
            int h = src.getHeight();
            int type = BufferedImage.TYPE_INT_ARGB;
            BufferedImage dst = new BufferedImage(w, h, type);
            Graphics2D g2 = dst.createGraphics();
            RoundRectangle2D r2 = new RoundRectangle2D.Double(0,0,w,h,r,r);
            g2.setClip(r2);
            g2.drawImage(src, 0, 0, this);
            g2.dispose();
            return dst;
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            int x = (getWidth() - image.getWidth())/2;
            int y = (getHeight() - image.getHeight())/2;
            g.drawImage(image, x, y, this);
        public static void main(String[] args) throws IOException {
            String path = "images/cougar.jpg";
            BufferedImage image = ImageIO.read(new File(path));
            RoundingImages test = new RoundingImages(image);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(test);
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    }

  • How to make rounded corners on webpages

    Hi, I am using DW8, an intermediate level user with html and
    tables, not good with php, java, or any programming language, on
    winXP home.
    One thing that I've seen and like are webpages that have
    rounded corners on them. For example, the page itself can be 80%
    the width of a page, but instead of the regular square corners,
    there are rounded ones.
    Can anyone tell me how to do that?
    thanks

    You could do it the old fashioned way with a 3 x 3 table and
    9 image slices.
    Or, with CSS and 3 image slices.
    http://alt-web.com/Image-slices-in-a-CSS-based-layout.html
    Or one of these:
    http://www.cssjuice.com/25-rounded-corners-techniques-with-css/
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    www.twitter.com/altweb
    www.alt-web.blogspot.com/

  • How to make rounded corners in spry image slideshow

    It says it can do it using slices but there are no great instuctions anywhere to be found with detail on how to do it.
    Any body know whixh file and what part of the code to change so the frontend on the website the corners are rounded?

    import java.awt.*;
    import java.awt.geom.RoundRectangle2D;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class RoundingImages extends JPanel {
        BufferedImage image;
        RoundingImages(BufferedImage src) {
            image = roundCorners(src, 50);
        private BufferedImage roundCorners(BufferedImage src, int r) {
            int w = src.getWidth();
            int h = src.getHeight();
            int type = BufferedImage.TYPE_INT_ARGB;
            BufferedImage dst = new BufferedImage(w, h, type);
            Graphics2D g2 = dst.createGraphics();
            RoundRectangle2D r2 = new RoundRectangle2D.Double(0,0,w,h,r,r);
            g2.setClip(r2);
            g2.drawImage(src, 0, 0, this);
            g2.dispose();
            return dst;
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            int x = (getWidth() - image.getWidth())/2;
            int y = (getHeight() - image.getHeight())/2;
            g.drawImage(image, x, y, this);
        public static void main(String[] args) throws IOException {
            String path = "images/cougar.jpg";
            BufferedImage image = ImageIO.read(new File(path));
            RoundingImages test = new RoundingImages(image);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(test);
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    }

  • Making a photo with rounded corners

    I just followed both of these instructions to create rounded
    corners on a rectangular image:
    http://www.enghiong.com/how-to-make-rounded-corner-edges-using-fireworks.html/
    http://www.joycejevans.com/tutorials/Fireworks/FWMX/roundecorners/rc_crn.htm
    What am I missing? Both of them show the transparent canvas?
    I drew the rectangle, rounded the corners, pasted inside and all
    the other steps and saved it. When I use in my html file, the
    background shows!
    Any help with this is so appreciated.

    quality11 wrote:
    > Sure. Here's the orginal:
    >
    http://www.charlotteswebservices.com/images/ChildhoodPic.jpg
    >
    > And some that I've tried to make rounded corners:
    >
    http://www.charlotteswebservices.com/images/childhood-round-opt.jpg
    >
    http://www.charlotteswebservices.com/images/childhood-round.png
    Here you go. It's usually a good idea to use a white rather
    than black
    object to paste inside of.
    http://www.playingwithfire.com/childhood.html
    Linda Rathgeber - Adobe Community Expert
    http://www.adobe.com/communities/experts/members/8.html

  • How to get rounded corners for Grid in flex 3.0

    Hi All,
    I was trying to make rounded corners for ‘Advanced Datagrid’ and ‘Datagrid’ components of Flex 3.0. But was unable to do so.
    Also  tried searching the net for some solution but didn’t get much help for the problem.
    I tried making a skin and applying it , but still wasn’t successful.
    Can you please guide me in making the corners rounded for the 2 components.
    Thanks
    RSI
    e.g of my code
    <mx:AdvancedDataGrid id="myADG"
    headerBackgroundSkin="com.coresecurity.ui.view.skin.RoundImageSkin"  dataProvider="{dpFlat}"
            width="100%" height="100%">
            <mx:Columns>
                <mx:AdvancedDataGridColumn headerText= “1” dataField="1"/>
                <mx:AdvancedDataGridColumn headerText = “ 2” dataField="2"/>
                <mx:AdvancedDataGridColumn dataField="3"
                    headerText="3"/>
            </mx:Columns>
       </mx:AdvancedDataGrid>
    RoundImageSkin.as
    public class RoundImageSkin extends RectangularBorder
    public RoundImageSkin(){
    super();
    override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
    var cls:Object = getStyle("backgroundImage");
    var bmp:Bitmap = new cls();
    graphics.clear();
    graphics.beginBitmapFill(bmp.bitmapData);
    graphics.drawRoundRect(0, 0, unscaledWidth, unscaledHeight,5);

    You aren't likely to get any of your questions answered for the reasons you already identified, and I imagine you would not find a tutorial for something as complex as what you are prusuong..  You need to learn how to design with Flash, and a forum is not a place where you are going to get that kind of help.  If you have code and/or a design issue that you need help with then that's where a forum might be of use to you.

  • In CC, why can I no longer use Select/Modify/Contract after Selecting all?

    I've been using CS3 and am now on CC.
    I tried using the Border option then Inverse, but this is a poor substitute.
    Any solutions or alternative suggestions?
    Many thanks.

    This issue is solved with today's (10/6/14) release of Photoshop CC 2014 contains a "Apply Effect at Canvas Bounds" option for the follow features:
    Select > Modify > Smooth...
    Select > Modify > Expand...
    Select > Modify > Contract...
    Select > Modify > Feather...
    Users now have the option to have these commands apply to an entire selection or just the portion of the selection that is not touching the canvas bounds with the "Apply effect at canvas bounds" checkbox.
    The checkbox option is remembered for each, individual selection modification option. The checkbox default is "off" on first launch and with preferences deleted.
    With the "Apply effect at canvas bounds" checkbox ON, the behavior is equivalent to Photoshop CS3 behavior.
    Thank you for your feedback!
    Meredith

  • Select Modify Contract Grayed Out

    Mac OSX 10.7
    PS CS5
    Okay, I know this has been posted before and I've read 4 or 5 threads with no resolve for me. The problem is that after using my select all, or using the marquee tool (tried both ways) to draw the selection my contract option is still grayed out it (like most everyone else has said). Only difference is, it was WORKING fine 30 min ago, I've used it many times while working on numerous documents and now all of the sudden it wont work on anything. I havn't made any changes to any prefs, but maybe I hit a hotkey and locked something? I remember when my define pattern was grayed out, I read a post where I clicked one simple option and voila it was back to normal...something with a spacebar shortcut I think? Too long ago to remember, anyways I was hoping there might be an option for this. I know the work arounds and use them from time to time, but I really would like for shortcut to be normal again
    Michael

    In CS5, if you chose Select > Select All or had the selection touching the border, the Select > Modify Commands were unavailable.
    This issue is solved with today's (10/6/14) release of Photoshop CC 2014 contains a "Apply Effect at Canvas Bounds" option for the follow features:
    Select > Modify > Smooth...
    Select > Modify > Expand...
    Select > Modify > Contract...
    Select > Modify > Feather...
    Users now have the option to have these commands apply to an entire selection or just the portion of the selection that is not touching the canvas bounds with the "Apply effect at canvas bounds" checkbox.
    The checkbox option is remembered for each, individual selection modification option. The checkbox default is "off" on first launch and with preferences deleted.
    With the "Apply effect at canvas bounds" checkbox ON, the behavior is equivalent to Photoshop CS3 behavior.
    Thank you for your feedback!
    Meredith

  • Rounded Corners for Spry menu bar

    Can I use css to style spry menus to make rounded corners?
    Tried inserting a background image into the menu cell in css but
    didn't work. Found tutorials to make rounded corners on text boxes
    but nothing specific to spry menus.
    Also can I make the drop down menu drop "up" rather than
    down?
    Thanks!
    Stacey

    Excellent, Massimo! Nice to see you here again.... 8)
    Happy Christmas to you over there in chocolate land.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Massimo Foti" <[email protected]> wrote in
    message
    news:gi5rie$puf$[email protected]..
    > Spry's Menu Bar is a pretty good widget, but it ships
    with a somewhat lame
    > CSS. You can download a set of skins that mimic Office
    2003 look and
    > feel:
    >
    http://www.massimocorner.com/spry/menubar/
    >
    > I hope it will inspire people to share more skins
    >
    >
    > --
    > ----------------------------
    > Massimo Foti, web-programmer for hire
    > Tools for ColdFusion, JavaScript and Dreamweaver:
    >
    http://www.massimocorner.com
    > ----------------------------
    >
    >
    >
    >

  • How to make a item renderer have a custom and rounded corners background

    Hi,
    I'm using custom item renderer for items of list. However,
    there is still one thing I haven't made yet. I can't put a
    background with a custom color and with rounded corners.
    How can I do that?
    It seems that all the options I try don't work.
    Can someone give me a tip here?
    Thanks,
    Nuno

    "sinosoidal" <[email protected]> wrote in
    message
    news:gese3u$63n$[email protected]..
    > Hi,
    >
    > I'm using custom item renderer for items of list.
    However, there is still
    > one
    > thing I haven't made yet. I can't put a background with
    a custom color and
    > with
    > rounded corners.
    >
    > How can I do that?
    >
    > It seems that all the options I try don't work.
    >
    > Can someone give me a tip here?
    Check out my extended TileList:
    http://flexdiary.blogspot.com/2008/08/tilelist-with-stylefunction.html
    You might want to swipe the itemRenderer from this example
    and modify it:
    http://flexdiary.blogspot.com/2008/09/groupingcollection-example-featuring.html

  • Round corners cant select vertices

    Hello,
    After I've applied a round corners filter, is there a way of then selecting individual vertices?
    It seems this is no longer possible
    thanks
    s

    hi mike,
    thanks so much for swift and helpful reply

  • Rectangle Selection has rounded corners? I need sharp ones.

    Seems silly, but I don't understand why the 'Rectangle Selection' marquee tool defaults to rounded corners.
    I am obviously missing something very simple.  Thanks! 1-1-11

    FIXED!
    I fixed this challenge by adjusting the 'feather' from 20 px to 1!
    Thanks all!    --Thomas

  • Well how I make Rounded Table Corners (html) ?

    I use dmwr mx 2004 , well how I make Rounded,Table,Corners
    (html) ? CSS TABLES can be with Rounded Corners ?

    On Wed, 12 Dec 2007 16:40:01 +0000 (UTC), "123polis123"
    <[email protected]> wrote:
    >I use dmwr mx 2004 , well how I make
    Rounded,Table,Corners (html) ? CSS TABLES can be with Rounded
    Corners ?
    No - you have to use images.
    as already said - just google for more info
    http://www.google.co.uk/search?hl=en&q=round+corners+on+websites&btnG=Google+Search&meta=
    ~Malcolm N....
    ~

Maybe you are looking for

  • Looking for a VI to calculate phase difference

    I am looking a VI that will calculate the Phase difference as a function of time between two sine waves at 20 kHz. I am using LabView7 Express just so we're on the same page.

  • Sorting Pick Transfer Orders

    Dear colleagues, I am running across the following and would like to hear your thoughts. My the movement type of my outbound Transfer Orders is linked to a Sort profile for TO splitting that uses field REIHF (sort field of the bin) as the first crite

  • Program RCCLTRAN is locking the changes of the Production Orders

    Hello, I am encountering an issue, the standard program RCCLTRAN which read production order and create idocs are locking the changes made in APO. The message specifies: "Changes to Order 1XXXX are not transferred". May I know if there is a User Exit

  • E540: Not powering up

    Few months old E540 is not powering up. When I press the power button, the led is lit and the fan turned on but nothing else happens. Nothing on screen and can't even open the DVD tray. Have tried fn+F8, removing battery without luck. Haven't done an

  • Support Packages Installation Stops at IMPORT_PROPER Phase

    Hi Sap stars,                             I have started Installation of support packages for PI 7.1 Cluster Server , It got stuck at phase Import_Proper                             and do not do anything , Then I executed the TP R3I .....COMMAND Whi