Help with Resizing an Image

Hi everyone,
I have the following code fragment:
BufferedImage image = ImageIO.read(new File(filePath));
Image scaledImage = image.getScaledInstance(100, 100, Image.SCALE_AREA_AVERAGING);
File outputFile = new File(filePath);
ImageIO.write(scaledImage, extension, outputFile);What I want to do (in a servlet) is load up an image (gif/jpg) located at filePath, resize it and then save it back in it's original location. I have gotten as far as above, but of course this doesn't compile because the write() method must take a BufferedImage and not Image.
What modifications do I need to make in order to get this to compile and work?
Many thanks for your help!

Hi ,
try this sample.
    public static void resizeImage() throws IOException {
        File f = new File( "D:/timg/img2.jpg" ) ;
        BufferedImage bi = ImageIO.read( f ) ;
        int actualWidth = bi.getWidth() ;
        int actualHeight = bi.getHeight() ;
        // consider to reduce the image to 50%
        int resultWidth = actualWidth / 2 ;
        int resultHeight = actualHeight / 2 ;
        double sx = (float)(resultWidth) / actualWidth ;
        double sy = (float)(resultHeight) / actualHeight ;
        BufferedImage nbi = new BufferedImage( resultWidth , resultHeight , BufferedImage.TYPE_INT_RGB ) ;
        Graphics2D g2 = nbi.createGraphics() ;
        AffineTransform at = AffineTransform.getScaleInstance( sx , sy ) ;
        g2.setTransform( at ) ;
        g2.drawImage( bi , 0 , 0 , null ) ;
        ImageIO.write( nbi , "png" , new File( "D:/timg/img22.png" ) ) ;
    }

Similar Messages

  • Help with Resizing of column widths in a pivot

    HI all,
    I m working on resizing the pivot coulmn width in a dashboard. Could anyone please help with resizing the pivot width. Autosize() works but user doesnt want that.
    Whats the code to do that?

    I read what was written but still am confused. I am completely lost at this pointWhat is confusing you? A TreeMap is just a HashMap where the key is stored is sorted order.
    Read the Collections tutorial found [url http://java.sun.com/docs/books/tutorial/]here.

  • Help with Dreamweaver flash image viewer

    Hi all
    Would like some help with Dreamweavers Flash image viewer.
    Everything is working properly except when i try to link a picture, and have set the imagelinkTarget value to _blank the link always navigates away from my site and does not open in a new window.
    I have tried all the values for the imageLinkTarget and nothing works..
    Here is my code
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0, 28,0','width','190','height','190','src','images/ad1','quality','high','flashvar s','flashlet={imageLinkTarget:\'_blank\',captionFont:\'Verdana\',titleFont:\'Verdana\',sh owCo ntrols:false,frameShow:false,slideDelay:5,captionSize:14,captionColor:#000000,ti tleSize:10,transitionsType:\'Fade\',titleColor:#333333,slideAutoPlay:true,imageU RLs:[\'images/image1.jpg\',\'images/image2.jpg\',\'images/image3.jpg\',\'images/ image4.jpg\'],slideLoop:true,frameThickness:2,imageLinks:[\'http://www.bowlsaustralia.com.au\',\'http://www.smh.com.au\'],frameColor:#333333,bgColor:# FF9966,imageCaptions:[\'Bowls Australia\',\'Sydney Morning Herald\']}','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFl ash','flash_component','ImageViewer.swc','movie','images/ad1' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0, 28,0" width="190" height="190">
              <param name="flash_component" value="ImageViewer.swc" />
              <param name="movie" value="images/ad1.swf" />
              <param name="quality" value="high" />
              <param name="FlashVars" value="flashlet={imageLinkTarget:'_blank',captionFont:'Verdana',titleFont:'Verd ana',showControls:false,frameShow:false,slideDelay:5,captionSize:14,captionColor :#000000,titleSize:10,transitionsType:'Fade',titleColor:#333333,slideAutoPlay:tr ue,imageURLs:['images/image1.jpg','images/image2.jpg','images/image3.jpg','image s/image4.jpg'],slideLoop:true,frameThickness:2,imageLinks:['http://www.bowlsaustralia.com.au','http://www.smh.com.au'],frameColor:#333333,bgColor:#FF9 966,imageCaptions:['Bowls Australia','Sydney Morning Herald']}" />
              <embed src="images/ad1.swf" quality="high" flashvars="flashlet={imageLinkTarget:'_blank',captionFont:'Verdana',titleFont:' Verdana',showControls:false,frameShow:false,slideDelay:5,captionSize:14,captionC olor:#000000,titleSize:10,transitionsType:'Fade',titleColor:#333333,slideAutoPla y:true,imageURLs:['images/image1.jpg','images/image2.jpg','images/image3.jpg','i mages/image4.jpg'],slideLoop:true,frameThickness:2,imageLinks:['http://www.bowlsaustralia.com.au','http://www.smh.com.au'],frameColor:#333333,bgColor:#FF9 966,imageCaptions:['Bowls Australia','Sydney Morning Herald']}" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFl ash" type="application/x-shockwave-flash" width="190" height="190"> </embed>
            </object>
    </noscript>
    any help would be greatly appericated
    Ken

    I just googled and found lots of folks with the same problem.  One fellow wrote this as a soluton:
    "All you have to do is
    remove the values from the imageLinks in the flash element. That
    should fix it."
    Does it?
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Help in resizing an image

    I am an artist thatI needs to resize images in order to send them for review for art shows and reviews.  An example is one file that is currently 3600 x 2736 px with a resolution of 180  - the size needs to be reduced to 600 x 800 px but the resolution needs to be increased to 300.
    Is there a correct way to go about this, can I accomplish both at the same time
    Do I check the boxes for    _ Scale Styles
                                            _Resample Image
                                            _Constrain Proportions
    I want to make sure that I am not harming the image.
    Also, when I download my photos with the digital camera card, they are always loaded as 180 dpi.  Is that a default setting on Elements or is is the camera setting?
    Thanks for any advise, like many artists, I am not very savvy with the computer or software stuff.
    Help is much appreciated!

    What I had to do to resize my images that I wanted to send off for printing was to click on the following:
    Full Phot Edit
    Image
    Resize
    Image Size
    Change Resolution to 300 ppi
    Save as baseline standard
    Then export the Jpeg.
    The company wanted my photos at least 300 ppi for best quality.  I don't think she cared about the pixel size, but I guess you could change that as well.  Hope this helps a little.  Took me days to figure out how to send off for printing.

  • Help with creating thumbnail images

    Hi there
    I need some help with a webpage that displays images.
    I am capturing an internal xml file ..and want to display:
    An Image or images with a width of 130 px and height of 130
    px
    My problem is that when our users upload the pictures to the
    website ..they are not resized ..and they would not know how to use
    a program to do this.
    Is there a code or way to take the uploaded picture file and
    reduce it to a size of 130 x 130 in the existing page?
    It currently is displaying the full size image(s) which are
    take up 2 screens.
    thanks for your time ..Rob

    > Is there a code or way to take the uploaded picture file
    and reduce it to
    > a
    > size of 130 x 130 in the existing page?
    In the HTML you can just give it a width and height of those
    values.
    However, the full image is still loaded by the browser, so if
    the image is
    large, it's still going to be a bandwidth hog.
    Ideally, you'd resize on the server at time of upload. This
    can be done with
    various components depending on the particular back-end
    server/scripting
    language.
    -Darrel

  • Help with exporting and image size or boundaries?

    I am trying to slide the cat into the scene a little at a time foir an animation project I am working on. However, when I export the image the back ground of the image expands with a checkered back ground( showing here in white) and shows the whole cat.
    How do I just show a little of the cat on the image at a time when exporting. I am trying to give the impression that the cat is walking into the room. I do not want to have to cut the cat up.
    I would be thankful for any suggestions.

    Provide the name of the program you are using so a Moderator may move this message to the correct program forum
    This Cloud forum is not about help with program problems... a program would be Photoshop or Lighroom or Muse or ???

  • Help with array of Images - is it possible?

    Hi, i need to do this thing with tiles in my game such like this:
    Image tile[] = new Image[600]
    //building map:
    for (Y...){
    for(X...){
    if(tiles[tilenum].equals(null)){
    tile = Image.createImage("/"+tileset+"/Tile" + tilenum + ".gif");
    tiles[tilenum] = tile;
    }else{
    tile = tiles[tilenum];
    it doesn't work, because Image object has no constructor.. I don't know how to solve it. Can you help me?
    Edited by: __LB__javuje on Oct 29, 2008 11:58 AM

    - it isn't the problem, *.gif works perfectly. But thanks, your note is helpful, i'll redraw images to png:).
    To Daryll.Burke - I think, that my style of writing on this forum wasn't the main problem. If you want to help me, please focus to problem itself and not on details ;). I have rewritten everything, hope that it will be more readable for you.
    edit.: I have read my note from yesterday second time, and i think, i wouldn't understand it too, so sorry, man;)
    Main problem (or definition of "doesn't work, as you said) is, that every time i try to compare *tile[tilenum]* (where tilenum is from interval <0;600) ) with *null* object, NullPointerException is thrown.
    {code}Image tile[] = new Image[600]
    //building map:
    void tileBuild(...){
    for (Y...){
    for(X...){
    try{
    if(tiles[tilenum].equals(null)){
    tile = Image.createImage("/"tileset"/Tile" + tilenum + ".gif");
    tiles[tilenum] = tile;
    }else{
    tile = tiles[tilenum];
    }catch(Exception ex){
    }{code}
    I realy don't know how to solve it..
    Edited by: __LB__javuje on Oct 30, 2008 6:39 AM

  • Need Help With Waveform-driven Image Effects

    Hi,
    I've been working on a full-dome 3D animation for a couple of years now and I'm looking for someone to help with a custom plug-in for After Effects, Photoshop and/or Combustion. I need to be able to drive filters and effects like Brush Strokes and 'sketchy' noise with the waveform from an audio file. I've been using a very poor mans workflow in which I've mapped the waveform by breaking it up into vertical ranges of varying intensities and then applying respective levels of the effects and filters to the sequential images based on where they fall in the waveform ranges. So for the test Ive done, I've been literally applying Photoshop actions to very small packets of still images from rendered sequences, and it has been dizzyingly time-consuming. Ideally I would want to be able to do this dynamically with a motion graphics package, but really I'm looking for as much help as I can get.
    This project began as my master's thesis and I'm working on it during the free time I have between teaching and freelance work; I don't have much money but I am willing to pay for help with this goal. There is still a lot of 3D work that I still need to do and the rendering process will be slow, so this wouldn't be a job with strict or tight deadlines. The final images will be very large (3200x3200) and with the growth in the full-dome market, these sizes could easily increase. If anyone is interested or could help me with this endeavor in any way, please respond to [email protected] Thank in advance to anyone who reads this.
    Max

    See the SDK_Backwards sample to see how to acquire audio data from a layer. This is the same access method used by AE's own waveform drawing plug-ins. Feel free to contact me directly with any questions.

  • Help with resizing adjacent partitions on mirrored drives - Solaris 9 V240

    Hi,
    I need some help here. I'm very new to unix administration. I am running out of space on my /var directory. I have a set of 72G disks that are mirroring each other. The /var is mounted on /dev/md/dsk/d5 which has only 262M available out of 5.8G. Meanwhile the partition adjacent to it /dev/md/dsk/6 which has the /opt/app directory mounted has 5.8G available out of 13G.
    Is it possible for me to take space from the slice 6 and give it to slice 5? How do I do this without loosing any data?
    Here is some info about my system:
    AVAILABLE DISK SELECTIONS:
    0. c1t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1c,600000/scsi@2/sd@0,0
    1. c1t1d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1c,600000/scsi@2/sd@1,0
    2. c2t5d0 <Symbios-StorEDGEA1000-0301 cyl 17344 alt 2 hd 64 sec 64>
    /pseudo/rdnexus@2/rdriver@5,0
    3. c2t5d1 <Symbios-StorEDGEA1000-0301 cyl 17344 alt 2 hd 64 sec 64> APP02
    /pseudo/rdnexus@2/rdriver@5,1
    # df -h
    Filesystem      size      used      avail      capacity      Mounted on
    /dev/md/dsk/d0 15G 14G 1.5G 91%           /
    /proc      0K 0K 0K 0%           /proc
    mnttab      0K 0K 0K 0%           /etc/mnttab
    fd      0K 0K 0K 0%           /dev/fd
    /dev/md/dsk/d5 5.8G 5.5G 264M 96%           /var
    swap 16G 168K 16G 1%           /var/run
    /dev/dsk/c2t5d1s3 15G 26M 15G 1%           /u1
    /dev/dsk/c2t5d0s0 5.9G 3.0G 2.7G 53%           /u2
    /dev/dsk/c2t5d0s5 5.9G 1.2G 4.4G 22%           /u3
    /dev/md/dsk/d3 4.8G 3.1G 1.7G 65%           /opt
    /dev/md/dsk/d4 4.8G 2.8G 2.0G 59%           /tmp
    /dev/dsk/c2t5d0s3 5.9G 882M 4.8G 16%           /opt/devbkup
    /dev/dsk/c2t5d0s4 5.9G 630M 5.0G 11%           /opt/workarea
    /dev/dsk/c2t5d0s6 3.9G 2.4G 1.3G 65%           /opt/patch
    /dev/dsk/c2t5d0s7 5.7G 1.9G 3.5G 36%           /opt/app
    /dev/md/dsk/d6 13G 7.5G 5.8G 57%           /opt/app2
    /export/home/jason 15G 14G 1.5G 91%           /home/jason
    Current Disk = c1t0d0
    <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1c,600000/scsi@2/sd@0,0
    Volume name = < >
    ascii name = <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    pcyl = 14089
    ncyl = 14087
    acyl = 2
    nhead = 24
    nsect = 424
    Part     Tag     Flag     Cylinders     Size     Blocks
    0     root     wm     0 - 3220     15.63GB     (3221/0/0)     32776896
    1     swap     wu     3221 - 5636     11.72GB     (2416/0/0)     24585216
    2     backup     wm     0 - 14086     68.35GB     (14087/0/0)     143349312
    3     unassigned     wm     5637 - 6643     4.89GB     (1007/0/0)     10247232
    4     unassigned     wm     6644 - 7650     4.89GB     (1007/0/0)     10247232
    5     var     wm     7651 - 8858     5.86GB     (1208/0/0)     12292608
    6     unassigned     wm     8859 - 1167     13.67GB     (2818/0/0)     28675968
    7     unassigned     wm     11677 - 11685     44.72MB     (9/0/0)     91584
    Current Disk = c1t1d0
    <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1c,600000/scsi@2/sd@1,0
    Volume name = < >
    ascii name = <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    pcyl = 14089
    ncyl = 14087
    acyl = 2
    nhead = 24
    nsect = 424
    Part     Tag     Flag     Cylinders     Size     Blocks
    0     root     wm     0 - 3220     15.63GB     (3221/0/0)     32776896
    1     swap     wu     3221 - 5636     11.72GB     (2416/0/0)     24585216
    2     backup     wm     0 - 14086     68.35GB     (14087/0/0)     143349312
    3     unassigned     wm     5637 - 6643     4.89GB     (1007/0/0)     10247232
    4     unassigned     wm     6644 - 7650     4.89GB     (1007/0/0)     10247232
    5     var     wm     7651 - 8858     5.86GB     (1208/0/0)     12292608
    6     unassigned     wm     8859 - 11676     13.67GB     (2818/0/0)     28675968
    7     unassigned     wm     11677 - 11685     44.72MB     (9/0/0)     91584
    If this isn't possible, it looks like I have about 12G of free space. Partition 7 is only using from 11677-11685 while I could take it up to 11677-14086. I would then have to create the mirror metattach for that partition and then would I just unmount /var and remount it on the new /dev/md/dsk/d7? I'll need help with that. Then what would I do with the unused d5?
    A step by step response would be great! Thanks!

    # metadb
    flags first blk block count
    a m p luo 16 8192 /dev/dsk/c1t0d0s7
    a p luo 8208 8192 /dev/dsk/c1t0d0s7
    a p luo 16 8192 /dev/dsk/c1t1d0s7
    a p luo 8208 8192 /dev/dsk/c1t1d0s7
    # metastat | more
    d0: Mirror
    Submirror 0: d20
    State: Okay
    Submirror 1: d10
    State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 32776896 blocks (15 GB)
    d20: Submirror of d0
    State: Okay
    Size: 32776896 blocks (15 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t1d0s0 0 No Okay Yes
    d10: Submirror of d0
    State: Okay
    Size: 32776896 blocks (15 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t0d0s0 0 No Okay Yes
    d1: Mirror
    Submirror 0: d21
    State: Okay
    Submirror 1: d11
    State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 24585216 blocks (11 GB)
    d21: Submirror of d1
    State: Okay
    Size: 24585216 blocks (11 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t1d0s1 0 No Okay Yes
    d11: Submirror of d1
    State: Okay
    Size: 24585216 blocks (11 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t0d0s1 0 No Okay Yes
    d3: Mirror
    Submirror 0: d23
    State: Okay
    Submirror 1: d13
    State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 10247232 blocks (4.9 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t1d0s3 0 No Okay Yes
    d13: Submirror of d3
    State: Okay
    Size: 10247232 blocks (4.9 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t0d0s3 0 No Okay Yes
    d4: Mirror
    Submirror 0: d24
    State: Okay
    Submirror 1: d14
    State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 10247232 blocks (4.9 GB)
    d24: Submirror of d4
    State: Okay
    Size: 10247232 blocks (4.9 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t1d0s4 0 No Okay Yes
    d14: Submirror of d4
    State: Okay
    Size: 10247232 blocks (4.9 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t0d0s4 0 No Okay Yes
    d6: Mirror
    Submirror 0: d26
    State: Okay
    Submirror 1: d16
    State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 28675968 blocks (13 GB)
    d26: Submirror of d6
    State: Okay
    Size: 28675968 blocks (13 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t1d0s6 0 No Okay Yes
    d16: Submirror of d6
    State: Okay
    Size: 28675968 blocks (13 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t0d0s6 0 No Okay Yes
    d5: Mirror
    Submirror 0: d25
    State: Okay
    Submirror 1: d15
    State: Okay
    Pass: 1
    Read option: roundrobin (default)
    Write option: parallel (default)
    Size: 12292608 blocks (5.9 GB)
    d25: Submirror of d5
    State: Okay
    Size: 12292608 blocks (5.9 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t1d0s5 0 No Okay Yes
    d15: Submirror of d5
    State: Okay
    Size: 12292608 blocks (5.9 GB)
    Stripe 0:
    Device Start Block Dbase State Reloc Hot Spare
    c1t0d0s5 0 No Okay Yes
    Device Relocation Information:
    Device Reloc Device ID
    c1t1d0 Yes id1,sd@SSEAGATE_ST373207LSUN72G_3532DM4K____________3KT2DM4K
    c1t0d0 Yes id1,sd@SSEAGATE_ST373207LSUN72G_4032QM28____________3KT2QM28
    I thank you for any help you can give! Thanks!

  • Help with resizing

    Hi - strange problem here. Have basically used fw to create a
    new ad for my company. As this is to be reproduced in a newspapaer
    I need to ensure that the size is completely accurate. Also need to
    convert to pdf (using adobe online). My problem is that when I am
    trying to resize the image by changing the print size it is not
    allowing me to enter the value I want. The png is currently around
    400px width and the print size is showing as less than 1cm - when I
    am trying to change to a print size of 11 cm its not allowing me to
    do this. Is ther any reason for this ? Or is there any better way
    to resize?
    Thanks in advance for looking at this post and replying.
    Emma

    you should be using a print based app like freehand or
    illustrator
    instead ;)
    webonfire wrote:
    > Hi Emma,
    >
    > I have used Fireworks to modify my web images set at 72
    dpi to create
    > advertisements at 300 dpi for clients. I have done it a
    few different ways,
    > but the easiest is to open your image, go to Modify >
    Canvas > Image Size
    > and set your resolution to 300 dpi. Be sure the
    constraint proportions and
    > resample image check boxes are checked. Change your
    print size drop down to
    > Centimeters and put 11 cm for width, not sure of the
    height from your
    > posting. This should do it.
    >
    > Click OK.
    >
    > Sean
    >
    > "Emmahatt" <[email protected]> wrote in
    message
    > news:e9l1fa$9j6$[email protected]..
    >> Hi - strange problem here. Have basically used fw to
    create a new ad for
    >> my
    >> company. As this is to be reproduced in a newspapaer
    I need to ensure that
    >> the
    >> size is completely accurate. Also need to convert to
    pdf (using adobe
    >> online).
    >> My problem is that when I am trying to resize the
    image by changing the
    >> print
    >> size it is not allowing me to enter the value I
    want. The png is currently
    >> around 400px width and the print size is showing as
    less than 1cm - when I
    >> am
    >> trying to change to a print size of 11 cm its not
    allowing me to do this.
    >> Is
    >> ther any reason for this ? Or is there any better
    way to resize?
    >>
    >> Thanks in advance for looking at this post and
    replying.
    >>
    >> Emma
    >>
    >
    >

  • Help with Resizing LUNS on Hitachi 9980

    Hi everyone, I need a little help here resizing my LUNS on our Hitachi 9980. I currently have a 1 TB and I want to increase or resize this to 2 TB. I am wondering if someone can help me here. This is something I haven't done before. Is there a step by step way of doing this. I was told that it could be done off line or online. Which is safer? Do I also need to reboot the Host after the resizing? Thanks for your assistance.
    JC

    Hi everyone, I need a little help here resizing my LUNS on our Hitachi 9980. I currently have a 1 TB and I want to increase or resize this to 2 TB. I am wondering if someone can help me here. This is something I haven't done before. Is there a step by step way of doing this. I was told that it could be done off line or online. Which is safer? Do I also need to reboot the Host after the resizing? Thanks for your assistance.
    JC

  • Help with CS4 tabbed image mode?

    How does one drag a layer from one image to another in tabbed mode?
    I'm forcing myself to work with the tabbed image interface as I assume someone thought this new feature was a good idea.
    I often drag or shift+drag layers from one image to another, whether it be adjustments or image elements that need to be placed (in register) as a layer in another open image.
    But when I use the tabbed interface mode any attempt to drag a layer from one tab to another does not work.
    What am I missing???
    Thanks
    Russell

    Yeah I noticed the same limitation.. they making floating document mode extra ****(UI interface that doesn't adhere to System OS visual style, documents that no longer move with the main PS UI, like when you adjust the mainframe size or move the window floating docs would get moved and stay within the UI, unless you dragged and floating doc outside the main ui frame, which was good, but now it seems floating docs always live outside the mainframe and appear above docked although open panel UIs.. not to mention the new theme looks like complete and utter dogshit.. but oh well.. CS5 might get some more work.. maybe they'll bring back the pallete well.. ******* adobe noobs.
    I too liked to drag & drop of layer objects onto another document its common thing I do when working in photoshop.. I just can't believe how lame Adobe are that they couldn't allow this functionality seeing as a tabbed UI is the default setup now..
    seems like the only way around it is to use the now **** floating document mode... or use one of the splitview modes.. course those are crap, but at least you can D&D layer objects, and then switch back the single doc tab.
    lets not get into the flakey **** opengl support and functionality.

  • Help with a liquid image

    Hi,
    I am having a problem with an image stretching in IE6. The
    image stretches beyond the height of the screen, but when i adjust
    the window, the image corrects itself. The image works fine in
    safari, firefox and other browsers.
    Attached is the code - please help me...I am going insane!

    Nothing should be above the doc type declaration, your script
    should be
    in the head section, fix that and it *might* work.
    Steve
    MzMelis wrote:
    > Hi,
    >
    > I am having a problem with an image stretching in IE6.
    The image stretches
    > beyond the height of the screen, but when i adjust the
    window, the image
    > corrects itself. The image works fine in safari, firefox
    and other browsers.
    >
    > Attached is the code - please help me...I am going
    insane!
    >
    >
    >
    > <script type="text/javascript">
    >
    > function reflow() {
    > var photo =
    document.getElementById("maintext"><img
    > src="images/2front_image_full.jpg");
    > photo.style.border = photo.style.border;
    > }
    >
    > window.onload = reflow;
    >
    > </script>
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml"><!--
    InstanceBegin
    > template="/Templates/sa_template_final.dwt"
    codeOutsideHTMLIsLocked="false" -->
    > <head>
    > <meta name="description" content="south australia
    companion card
    > program"><meta name="keywords" content="disability
    companion card application
    > brochure affiliate south australia address apply carer
    attendant care
    > cardholder national disability services disabilities
    support program">
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > <!-- InstanceBeginEditable name="doctitle" -->
    > <title>South Australia Companion Card | welcome to
    the South Australian
    > Companion Card website</title>
    > <!-- InstanceEndEditable -->
    > <link href="sa-screen.css" rel="stylesheet"
    type="text/css" media="screen"/>
    > <link href="sa-print.css" rel="stylesheet"
    type="text/css" media="print" />
    > <style type="text/css">
    > <!--
    > body {
    > margin-left: 0px;
    > margin-top: 0px;
    > margin-right: 0px;
    > }
    > #leftlogo {
    > position:absolute;
    > left:2px;
    > top:770px;
    > width:26%;
    > z-index:2;
    > }
    > -->
    > </style>
    > <script type="text/javascript">
    > <!--
    > function MM_reloadPage(init) { //reloads the window if
    Nav4 resized
    > if (init==true) with (navigator) {if
    >
    ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    > document.MM_pgW=innerWidth; document.MM_pgH=innerHeight;
    > onresize=MM_reloadPage; }}
    > else if (innerWidth!=document.MM_pgW ||
    innerHeight!=document.MM_pgH)
    > location.reload();
    > }
    > MM_reloadPage(true);
    > //-->
    > </script>
    > <!-- InstanceBeginEditable name="head" -->
    > <style type="text/css">
    > <!--
    > #wrapper #maintext img {
    > height: auto;
    > width: 100%;
    > }
    > -->
    > </style>
    > <!-- InstanceEndEditable -->
    > </head>
    > <body bgcolor="#FFFFFF">
    >
    >
    > <div id="hdrlogo"><img
    src="images/cc_banner_01.jpg" alt="Fair ticketing for
    > people with disabilities" width="250" height="60"
    border="0" /></div>
    > <div id="wrapper">
    > <div id="topgraphic">
    > <div align="left"><img src="images/cc_logo.gif"
    alt="Companion Card Logo"
    > width="139" height="57" hspace="10" vspace="10"
    /></div>
    > </div>
    > <div id="topnav"></div>
    > <div id="leftnav">
    > <p align="left"><a href="index.html"><img
    src="images/house.png"
    > width="16" height="16" hspace="5" border="0"
    />Home</a> <a
    > href="about.htm"><img src="images/vcard.png"
    width="16" height="16" hspace="5"
    > border="0" />About Companion Card</a> <a
    href="apply.htm"><img
    > src="images/user_go.png" width="16" height="16"
    hspace="5" border="0"
    > />Applying for a Card</a> <a
    href="how_where.htm"><img
    > src="images/picture_go.png" width="16" height="16"
    hspace="5" border="0" />How
    > and where to use your card</a> <a
    href="organisations.htm"><img
    > src="images/building.png" width="16" height="16"
    hspace="5" border="0"
    > />Orgnisations and Business Affiliation</a>
    <a href="publications.htm"><img
    > src="images/page_white_go.png" width="16" height="16"
    hspace="5" border="0"
    > />Publications / Applications</a> <a
    href="faq.htm"><img
    > src="images/comments.png" width="16" height="16"
    hspace="5" border="0"
    > />FAQs</a> <a
    href="explanation.htm"><img src="images/comment_edit.png"
    > width="16" height="16" hspace="5" border="0"
    />Explanation of Terms</a> <a
    > href="contact.htm"><img src="images/telephone.png"
    width="16" height="16"
    > hspace="5" border="0" />Contact Us</a> <a
    href="linktosite.htm"><img
    > src="images/link.png" width="16" height="16" hspace="5"
    border="0" />Link to
    > this site</a><a
    href="disclaimer.htm"><img src="images/page_white_text.png"
    > width="16" height="16" hspace="5" border="0"
    />Disclaimer</a> <a
    > href="accessibility.htm"><img src="images/key.png"
    width="16" height="16"
    > hspace="5" border="0" />Accessibility Tips</a>
    </p>
    > <div id="left1">
    > <div align="center">
    > <p><a href="
    http://www.ministers.sa.gov.au/index.php"><img
    > src="images/sagovtlogo.gif" alt="Government of South
    Australia" width="120"
    > height="134" border="0" /></a></p>
    > <p><a href="
    http://www.nds.org.au/SA/default.htm"><img
    > src="images/nds-SA.JPG" alt="National Disability
    Services SA" width="105"
    > height="73" border="0" /></a></p>
    > </div>
    > </div>
    > <p align="left"> </p>
    > </div>
    > <!-- InstanceBeginEditable name="content" -->
    > <div id="maintext"><img
    src="images/2front_image_full.jpg"
    > alt="Welcome to the South Australian Companion Card "
    width="600"
    > height="385"></div>
    > <!-- InstanceEndEditable --></div>
    > </body>
    > <!-- InstanceEnd --></html>
    >

  • Help with Photoshop Cs6 Image size

    I am using Photoshop Cs6 on a MacBook Pro with retina display.  I'm working on an image that is 72 dpi and 1000 pixels wide by 300 pixels tall.  When I hook my laptop up to my external monitor, the image is a nice size.  However, when I disconnect it and look at it on my laptop it is way to small.  I have to zoom in on the image on my laptop to see the detail and then the graphics are distorted.  Can you please help me?

    Ask in the PS forum.
    Mylenium

  • Help with resizing PDF's

    I am in a company that draws plans for houses, similar to an architects.
    Our problem is we are currently using a 2000i Autodesk cad based program and when we PDF
    our files end up at about 14mb, while we sometimes come across other architects plans which are about 1mb
    I was told to try out adobe acrobat 9pro to test if using out program with adobe we can reduce the PDF’s to 5mb max
    I have tried several different options but the smallest I got was 12mb which meant changing the image quality to 300dpi which is very bad quality
    We need it atleast 600dpi. Can anyone help me out how I must change it so it works out?
    We are using the trial version for now as there is no point paying $500 for the program if it cant reduce the file size to as low as we want it.
    I have tried an optimizer option and distiller and no change in size. the optimizer says that 98.17% of the file consists of content streams.
    Or is it because we are using the trial version that we cant reduce the actual size of PDF’s?
    while if i try and use the PDF option when rightclick on the file itself it leaves it at 3mb the whole file but it comes up as a pure line drawing not hiding the elements that are required.

    The trouble is primary with pictures, not documents.  The logo  is not the
    Adobe logo but looks like a sailboat.  The document says  that it opens with
    Adobe 9.3 (loaded on my computer) but then I get the error  sign.
    Thanks,
    In a message dated 6/16/2010 2:49:11 P.M. Eastern Daylight Time, 
    [email protected] writes:
    They  fail to open even when you try to open them from within  Reader?

Maybe you are looking for

  • Particular site does not load in Firefox but does load on IE

    ''dupe of https://support.mozilla.org/en-US/questions/916798'' The connection was reset The connection to the server was reset while the page was loading. I have tried safe mode with networking amongst other things but I just cant get this darn site

  • Gap in between divs in firefox

    Hi there. I'm working on a website and I have tested in both IE 7, and Firefox v2. In IE it looks as intended, but in Firefox, there is a gap between the customer menu (with lime green background), and the Top Menu bit (above the lime green). The cus

  • Oracle App. DBA:Query

    Hi Experts, I'm a Oracle DBA, however i wanted to know what is the work of oracle application administrator. Can onyone suggests me what in oracle app. i should learn. Thanks Shaan

  • MD04 exception message 20

    Hi experts, What is the significance of exception message 20 in MD04? It shows cancel process So what needs to be done? Regards,

  • Connect to remote database from forms

    hi, I installed 10g developer suite on windows.I have a 10g database running on HPUX server. I need to connect to this database from forms ( i,e from windows ). Do i need to install an Oracle client so that forms can talk to a remote database? I edit