Down size jpg file for PSE8 Organizer

I have a 26.2 mb jpg file that is a scanned black and white drawing.  Using PSE8 when I have imported this file to Organizer I get "File size is too large!"
My computer has a recommended 1280 by 800 screen resolution and i have RAM memory of 2gb.
I can open the file in PSE8 Editor.
How do I resize a copy that will open in Organizer?
Thank you, Jim

Does your file have more than one layer?
Sometimes flattening a large file and then saving it in
a version set with the original helps. (renaming the flattened
version by adding something like flat to the file name)
If your file doesn't have layers and is still to big for the organizer,
then using image>image size will do.
Below is pano that i resized smaller using the image size dialog.
Check the resample and constrain proportions boxes and then
type in a size in pixels for the longest side.
The one below was about 11,000 pixels on the longest side and i reduced
it to 1500 pixels on the longest side. (fine for preview of the original)
By having the constrain proportions box checked, elements automatically
fills in the other box.
Saving the file as a jpeg along with the original in a version set is fine.
(it's just a preview of the original, yet still big enough to see at full
screen in the organizer)
Before
After
MTSTUNER

Similar Messages

  • Can an InDesign page be saved as a jpg file for use in Photoshop CS5 ?

    Can an InDesign page be saved as a jpg file for use in Photoshop CS5 ?

    mckayk_777 wrote:
    Just wondering peter what you think, instead of output to pdf you copy and then create create new file in photoshop and paste into that file. Is that sort of the same thing?
    Seems to be ok especially if you enlarge the object before you copy it into photoshop.
    I think what you are pasting (never bothered to try this) is just the screen preview, hence the need to enlarge. Why would you waste your time doing that instead of exporting to a high-res PDF?
    If you want only part of the page, check out http://indesignsecrets.com/free-layout-zones-add-on-is-incredible-productivity-tool.php

  • Why Apple doesn't provide .jpg-files for photos with date and our like Blackberry and Samsung?

    why Apple doesn't provide .jpg-files for photos with date and our like Blackberry and Samsung?
    I have to save photos (for medical use) on my pc and this suffix would be useful to identify them quicker.
    Thanks

    http://www.learn.usa.canon.com/resources/blogs/2014/20140708_winston_filenames_b log.shtml

  • I use PSE 11 on Windows 7. I have about 40,000 tagged jpg files in the Organizer. For the past several months whenever I try to back up the Organizer it just freezes. Help!

    I use PSE 11 on a PC with Windows 7. I have around 40,000 tagged jpg files in a catalog in Organizer. For the past several months everytime I have tried to back up the catalog, Organizer freezes. I add and tag new items all the time, but haven't been able to back up Organizer since last December. Please help me figure out what to do. Thanks!

    I'm happy to report that I've managed the resolve this issue of mine
    After a little discussion with customer support through online chat today, I was still advised to try the uninstall and install to see what happens.
    So I used the CC cleaner tool first, restarted then started by installing CS2 then CS5 using my serial numbers and made sure that I selected 32 and 64 bit programs to be installed
    Anxiously, I restarted my laptop to see if it would reboot okay and thankfully it did *relief!*
    Now I can open avi files using 32 bit of Photoshop CS5 without any problems (thank goodness!!)
    I think I probably didn't install the 32 bit program when I first bought the installation CD, since I thought I didn't need it but never knew it was still required for editing avi files!!
    Surprisingly, I still got to keep both versions of CS2 and CS5 this time around, as CS2 was simply replaced by CS5 when I first installed it two years ago....hmm.
    So thank you again gener7!

  • How to create a jpg file for a desired  part of the canvas

    i hav to create a jpg file from the canvas which contains basic shapes which are drawn using methods like drawOval(),drawRectangle(). i need only a part of the canvas to be saved as a jpg file i.e for example from xpos 50-100 & ypos 200-250.i need all the portions of the shapes already drawn in that area as a jpg file..
    can anyone help me?

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    public class CanvasClip extends Canvas implements ActionListener
        Rectangle clip;
        boolean showClip;
        public CanvasClip()
            clip = new Rectangle(50, 50, 150, 150);
            showClip = false;
        public void paint(Graphics g)
            super.paint(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            int w = getWidth();
            int h = getHeight();
            int dia = Math.min(w,h)/4;
            g2.setPaint(getBackground());
            g2.fillRect(0,0,w,h);
            g2.setPaint(Color.blue);
            g2.drawRect(w/16, h/16, w*7/8, h*7/8);
            g2.setPaint(Color.red);
            g2.fillOval(w/8, h/12, w*3/4, h*5/6);
            g2.setPaint(Color.green.darker());
            g2.fillOval(w/2-dia/2, h/2-dia/2, dia, dia);
            g2.setPaint(Color.orange);
            g2.drawLine(w/16+1, h/16+1, w*15/16-1, h*15/16-1);
            if(showClip)
                g2.setPaint(Color.magenta);
                g2.draw(clip);
        public void actionPerformed(ActionEvent e)
            Button button = (Button)e.getSource();
            String ac = button.getActionCommand();
            if(ac.equals("show"))
                showClip = !showClip;
                repaint();
            if(ac.equals("save"))
                save();
        private void save()
            int w = clip.width;
            int h = clip.height;
            BufferedImage img = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
            Graphics2D g2 = img.createGraphics();
            g2.translate(-clip.x, -clip.y);
            paint(g2);
            g2.dispose();
            String ext = "jpg";  // or "png"; "bmp" okay in j2se 1.5
            try
                ImageIO.write(img, "jpg", new File("canvasClip.jpg"));
            catch(IOException ioe)
                System.err.println("write error: " + ioe.getMessage());
        private Panel getUIPanel()
            Button show = new Button("show clip");
            Button save = new Button("save");
            show.setActionCommand("show");
            save.setActionCommand("save");
            show.addActionListener(this);
            save.addActionListener(this);
            Panel panel = new Panel();
            panel.add(show);
            panel.add(save);
            return panel;
        public static void main(String[] args)
            CanvasClip cc = new CanvasClip();
            Frame f = new Frame();
            f.addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    System.exit(0);
            f.add(cc);
            f.add(cc.getUIPanel(), "South");
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    }

  • Automatically down-convert large files for the nano

    For the iPod shuffle, there was a feature that automatically converted big files/high quality mp3 files down to a managable 128kbps when you upload mp3s to the shuffle.
    Is there a feature like this for the nano? If no, anyone know if there will be? I'd like to conserve space/make the most of the space.

    Mr. Roboto
    "spammer.
    Does anyone have the correct answer???"
    Do you know what you are talking about? That is not spam...that is directly related to your question. iTunes automatically formats the music when you import it into your library. That discusses how to change the format if you want to change it. I can't believe you said that. I was try to explain to you that iTunes will do it when you import the tracks into your library.
    How to Choose Import Options
    iTunes: How to convert a song to a different file format
    iTunes should automatically import your music as AAC 128Kbps...
    Jon

  • What size photoshop file for 16:9?

    This is a great site and I've been doing alot of searching/reading and trying to get some info. Maybe I've misunderstood some of the answers but I'd just like someone to confirm my suspicion:
    What pixel dimensions do my photoshop files need to be if my project will be viewed NTSC 16:9? If they decide to go HD what are the pixel dimensions staying in the same aspect ratio?
    Cheers,
    D
    G-5 dual processor   Mac OS X (10.3.9)  
    G-5 dual processor   Mac OS X (10.3.9)  

    What version of Photoshop are you using?
    I'm still using Photoshop 7 it's 864x480 preset (I believe it is labeled a DV Widescreen or something) for 16:9 work.
    Just prior to finishing, I save the file as a copy, then resize the image to 720x480. (I could let FCP do the resizing, but I find that PS is a little better at it, quality wise)
    As far as HD, that really depends on what flavor of HD - 720? 1080? - and, more specifically the codec you're using in FCP. (DVCProHD 720? HDV 1080i?)
    And welcome to the forum, knuckledragger.

  • How to select at once many jpg files for attachments of an email?

    With Window Explorer, I could select (using Shift) a series of many jpg or doc files as attachments with an email, but I couldn't with FireFox.
    I had to select one by one, which is very cumbersome!
    Is it possible with FireFox?

    Added tips from Tip Merchant ($200 consulation fee)
    - on mac - command/ numeric keypad Enter turns the path into a selection. Option delete then fills.
    - an action can be setup to bring up Fill Path from the Path panel menu. Just pressing enter fills with FG color
    These are ways to avoid he paths panel altogether. Best way may be to use the TINY fill path icon in that panel as was pointed out by John

  • Breaking down a VOB file for clip edting in final cut pro

    I have a client that shot some video of their farm this past week and they want us to edit portions of the video. Of course this is one huge .VOB file. I have the the entire VIDEO_TS file folder but I have yet to find a way to capture clips from this file?
    Is there a way to capture any of this without having to make multiple copies of the file? It is a lot large than I would like 800MB.

    I figured it out Thanks for the help/___sbsstatic___/migration-images/migration-img-not-avail.png/___sbsstatic_ __/migration-images/migration-img-not-avail.png/___sbsstatic___/migration-images /migration-img-not-avail.png It was greatly appreciated.

  • Should I still down-size photos for my website?

    Hi - I am making a website.  I know - or at least I think I know - that you should down-size your images for fast loading times.  For example, if I have a photo that's 3800x3800 and is 2 MB in size, I always down-size it to maybe 1000x1000 and about 150KB or so.
    I know we like to think that "everyone" has a fast web connection but I don't think that's always the case and with mobile you have to factor that in too.
    A colleague working on another website asked me what I thought of her photo gallery.  She had a thumb nail and when you click on it, it opens up much like a light box effect.  Her large photo is 1200 x 1200 and is 1 MB in file size.  I pointed out to her that she may want to take the larger photo and if she wants to keep the 1200 x 1200 fine, but she may want to reduce file size.  I got it down to about 180KB and sent them to her side by side.  She said she was worried about the quality (I honestly did not notice anything but maybe her eyes are better than mine).
    I know there's always a catch-22 of "quality vs. file size."  So with all of this said, I'm just asking for links, opinions, and so forth about this.  I also tried explaining that phones don't always have great connections so the down-sizing should be taken into consideration.
    Should I continue to scale down my photos like I have been as described above?  Or doesn't it matter any more - that I can take a 1 or 2 MB photo and just use that for my web image to display in a photo gallery?
    Any thoughts, links to articles, etc., are appreciated.  Thanks, Deaf Guy

    Hi Osgood - I'm fully aware of shooting high res and down-scaling for whatever you need the image for.  Some folks I've worked with over the years were totally unaware.  They thought you could shoot a low-res image and then blow it up to your heart's desire.
    I totally understand and respect your thoughts on your post.  I basically look at as to each his own - whatever makes you and your clients happy is the key.  At the same time there should be at least a minimum amount of standards and expectations, too.  Taking a client photo that was given to me and it's 2500x2500 and 2.5 MB and they say, "Stick this on my web page," I think it's important that they understand that this is not smart because of the large file size, possible slow connections and so forth.
    The only time I would post it as is if it was some kind of photo gallery where you would want the person to have access to the large file (similar to what iStock does).
    I think educating your client is also important.  When I sent the side by side photos to her, she said, "So how do you do this?"  This person is also a web developer to boot.  I'm not criticizing her, but I thought most web developers would at least know about scaling down photos for websites.
    But anyway, thanks for your post on this.

  • Saving JPG files in Photoshop Elements 10 - what size?

    I have used the raw converter to tweek my photos. I want to save file in Jpg format.
    Elements asks me what size I want to save:  Low, Medium, large, or maximum.
    I will use the Jpg files for printing either 4 x 6 or 8 x 10.
    What dictates the file size to use?

    For printing, you would want maximum quality.

  • PSE8 Organizer won't display new files

    After copying photo files into a folder, I opened PSE8 Organizer and imported the files.  PSE8 reported importing 578 photos.  I clicked to Show ALL.  Only the original 24 photos in the folder are displayed.
    I have tried rebuilding the catalog, and deleting and creating a new catalog.  Nothing seems to work.  The rebuilding of the catalog reported the files are there and do not need to be imported.  But PSE8 still won't display any but the original 24 files.
    Any ideas would be appreciated.

    Edit > Visibility was set to Show All Files.  In Preferences, I unchecked all filter selections for Auto Analyze.  No effect.
    I have one folder with 3 .tiff files that PSE8 Organizer won't display.  Trying to import the files and PSE8 says they are there but PSE8 cannot display them.  No explanation.  Windows Photo Viewer and Picasa have no problem displaying them.
    I have deleted and made new catalogs with the same results for that folder.  I cannot figure out what is wrong with these files.  All other applications have no problem.
    Any ideas?
    Thanks!

  • What file opens pse6 organizer

    Hi, I sure hope
    someone can help.  I recently deleted some stuff, and I'm
    worried that I may have deleted an important bit that opens  the organizer.  I  have about 12,000 photos all catagorized, so I'm hoping I don't have to go and catagorize again.
    I have tried to Repair with the disk, but when I put it in , it keeps asking me to put the disk in.  All my photos are still on the hard drive.
    The message is:   Adobe Photoshop Elements 6.0. [Organizer] has stopped working.
                                    A problem caused the program to stop working correctly Windows will close the program & notify you if a solution is available.
    I don't get any notification.
    What have I deleted, what is missing?  And how do I get this file, or what is it called?   I even thought the necessary file might still be on my external backup, but maybe it already deleted also.
                              please help this Nana, I don't wan't to lose all my work
                                                       In expectation, many thanks
                                                              Pat

    Browse to: Program Files\Adobe\Photoshop Elements 6.0
    Look down the list of files for the Organizer Application (about 29mb in size)
    If you can see it right click on the file and select open.

  • Convert multi-page pdf to multi-page jpg files?

    Hi,
    My boss has asked me to convert a large number of multiple-page pdfs into multiple-page jpgs. I have been able to convert the pdfs to jpgs in photo shop using image processor, but the processor only captures the first page of the multiple page documents and when I have been able to convert an entire pdf to jpeg, it creates individual jpg files for each separate page.
    How can I convert the multiple-page pdf file to a single multiple-page jpg file?
    many thanks!

    You have the right idea.
    1.Make each page a jpg file. Pretend they are named Page 1, Page 2, etc.
    2. Create a new file with a page size and res of your jpg files. Let's call this the Master file.
    3, With the Master file appearing on your monitor:
    4. Open Page 1. Click on it in the Layers Panel and drag it over the Master. It will become Layer 1 in the Master.
    5..Repeat Step 4 until you have all the pages, as separate layers in the Master. (Layers 2, 3, etc,)
    6. Save the Master file. It will be a psd file.
    Check Google and learn how to create and use Photoshop Layer Comps. Trust me. It is not difficult.
    Once completed, each time you strike the Forward symbol in the Layer Comps panel you will display the next page.
    Yes, you can go Backward to see previous pages as you view them. too.

  • Duplicate (sidecar) RAW & JPG files in Organiser

    Hello,
    I usually store both RAW and a small JPG file for each photo I take using a Canon EOS 7D. When these are imported into Lightroom 4.4, Lightroom only shows one image, reporting that the associated JPG is a 'sidecar' image. When imported into Photoshop Elements 11 Organiser both photos are displayed i.e. every single photo is duplicated.
    How do I configure Photoshop Elements 11 Organiser to only show one photo for each RAW/JPG set?
    Thanks in advance,
    David.

    Lightroom and the Organizer have something in common : they do not contain picture files. They only store the information about where the files are physically stored. They are a list of those paths (locations). Raws and jpegs of the same shot are two different picture files. So, you can't speak about duplication from that point of view.
    What Lightroom and the Organizer don't have in common is the way they deal with the 'duos' of raw and jpeg files. At the import stage, the Organizer always considers the files as distinct and imports both of them as described by 99jon. LR recognizes the fact that both files are two variants from a single shot and offers a choice of how to import : ignore the jpeg or consider ist as a kind of 'sidecar' file.
    How to use the organizer so that it shows only one thumbnail once they have been imported ? That's possible if you use the visual similarity search : you can choose to automatically suggest photo stacks just after the import stage. Your files will be stacked and you'll see only one photo in the browsing space. You can collapse stacks or expand them in the browsing space. After stacking, any organizing task such as rating, keywording will be applied to both files much like in real version sets.
    I don't think that you really need to shoot raw + jpeg most of the time.
    It may be useful when you are getting acquainted with raw processing.
    It may be to have an instant way to display the pictures on your card when you have no computer at hand. In that case, deleting the jpegs from catalog just after the import into the catalog is the quickest and simplest solution.
    For viewing the raw pictures on your computer without Elements, it may be useful to have another free software able to show the thumbnails of raw files (faststone, xnview...)
    Also, if shooting raw only, it's easy to export a (temporary) ad hoc jpeg version of your import batch from the Organizer to share with friends. It's best done after culling and rating and doing some quick keywording.

Maybe you are looking for

  • StockDaddy Turbo for BlackBerry 10 updated to v1.1.0

    We first told you about StockDaddy Turbo a short while ago and for those of you that need to keep an eye on your stocks and shares it's the perfect application to do so - right from your BlackBerry 10 device.  The developer dropped me an email to adv

  • ITunes crashing when iPod is connected

    iTunes has been crashing on my computer for the past few weeks some (not all) of the time when I connect my iPod for updating and recharging. The program doesn't quit all the time, as I stated, and it never immediately repeats itself when I relaunch

  • LCD display for Hardware Monitor?

    Hardware Monitor... http://www.bresink.com/osx/HardwareMonitor.html ...supports certain external, USB-based LCD displays for providing system status. Is anyone using one? Can anyone recommend a nice, already-assembled unit to set on the desk here? Th

  • BPM USE CASE.

    Hi All, I am new to oracle BPM and learning it through some samples. We need to build a process very soon and would like your advise on the use case. 1. Everyday we need to run a process which grabs the records from the database based on some criteri

  • Where is the original user profile picture?

    Hello, I was wondering if anyone can help me locate the original user picture I took when I first started my Macbook Pro. I accidently changed it to a photo i took on photobooth and I can't find it anymore. The old one still appears on ''Messeges" as