Problem change Graphics2D into jpg

this is part of the code i have
private void drawPawn(Graphics2D gr, Integer pawn, Color c) {
          Coordinate coord = parent.getGameCore().currentBoard().getCoordinate(
                    pawn);
          int y = coord.getLine();
          int x = coord.getRow();
// Image Image1; <-------------------------this is first try
// Toolkit toolkit = Toolkit.getDefaultToolkit();
// Image1 = toolkit.getImage("kangaroo.jpg");
// BufferedImage Image1 = null ; <--------------------------this is second try
// try {
// Image1 = ImageIO.read(new File("kangaroo.jpg"));
// } catch (IOException e) {
ImageIcon Image1 = new ImageIcon("kangaroo.jpg"); <--------------------------and last try but it doesnt work(cant view the jpg)
          gr.setColor(borderPawnsColor);
          gr.fillOval(horizontalBorder + x * slotWidth, verticalBorder + y
                    * slotHeight, pawnDiameter + pawnBorderSize, pawnDiameter
                    + pawnBorderSize);
          gr.setColor(c);
          gr.fillOval(horizontalBorder + x * slotWidth, verticalBorder + y
                    * slotHeight, pawnDiameter, pawnDiameter);
gr.drawImage(Image1.getImage(), horizontalBorder + x * slotWidth, verticalBorder + y
                    * slotHeight, this); <--------------------------this is where the problem place
ive try different ways to view "kangaroo.jpg".but it doesnt work.anyone could help me?
i get this code from googling.

forent wrote:
sorry..when i change the root into "E:/My Documents/NetBeansProjects/Bordeaux/src/gui/kangaroo.jpg".but why this happen?
it solve my problem.
yeah it called from paintcomponent().
thanks.. :-DThat is not the root of your project, it is a direct path to your JPG. IT happened bacause your code was correct, but your JPG is in the wrong place. Your project is in "E:/MY Documents/NetBeansProjects/Bordeaux", put your JPG in there and you can access it then by just the name "kangaroo.jpg", but if you JAR your file, then you'll have to loadresource and include the JPG in your JAR to get it to work that way. In any case a direct path to your JPG will work, but you lose the ability to move your JAR freely from machine to machine as a self contained unit able to run on any appropriate JVM--you will always be requred to have that hard path "E:/My Documents/NetBeansProjects/Bordeaux/src/gui/kangaroo.jpg" to your JPG and if your friends don't have an E drive, they are just out of luck.

Similar Messages

  • Problem transforming some tiff into jpg

    Hi, my problem is I'm trying to convert a tiff image into jpg image, my code it's working for some files but not with all, i'm receiving a String represent the tiff file in hex base and transform into baytearray of jpg my code is the next
    if someone have a similar problem and can helpme
    import java.awt.image.RenderedImage;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import javax.media.jai.JAI;
    import javax.media.jai.PlanarImage;
    import com.sun.media.jai.codec.ByteArraySeekableStream;
    public class Test {
         public static void main(String[] args) {
              Test g = new Test();
    //          bad image
              g.decodeImage("49492a00080000001100fe00040001000000000000000001030001000000800100000101030001000000050100000201030001000000010000000301030001000000040000000601030001000000000000000701030001000000010000000a01030001000000010000001101040001000000ea0000001501030001000000010000001601040001000000050100001701040001000000280300001a01050001000000da0000001b01050001000000e200000024010400010000000000000025010400010000000000000028010300010000000200000000000000c800000001000000c800000001000000ffffffffffffe6449c29d9afc27fd04e17f33fede825fff5ebea12bbfc2afaafbfc2f4abaffafafa7f85fd7097fff5f5ad7f5e16bd7fff5f356bc2a7aebfe134abafd5bfd05d6f2dd570a97ffffff5a4b0bfaeb855f5ffbf4bd2d6bbfaf0bd7ae17d6b2c7d53afd7df497ffe975fae124a12fffd57fa55faffebf4bf84bfd2f4ffd533010bc157821111210728c5299540ccbcca80789494ca034ccd9a1170cefcecc80c18336f68cc08559d920287eb3a063a9da906c5d725c2eb044085697c18ea0975583a50883bebf0df3b1606036175c18694ec481723cdd75831c2085bd257a9da404239874bf99dc221315af4bbcecb854baff41c205eaab8596387088ba20db55aea1b84104b0ba5c5373b4095d7d0698708155affb70825d2a4b49b8204beafb41ba055a5ae126e4d05a0ed6bd30e105d855ad43708209755eb785aa5a5d372b02d3afe15b8412ad7f86e104ee925d04487b740825aba58416dd2f497d2c3704157495692dd05ebaf5b70820975f825b7097a5d6961e105e952f0bbc2a8d7c25dc25a5f84b0dc2095a74b85de92a096a12c3c20bfdc25dc25d69610586f5412fc25dc20974b4820bbd6974a105b70924d1d445d05b7ac2fe961b84b4bab082cd1174478de4745d91d17d3d52c3e211080da221f5d21a44806c368c1dff709180d32398b6dc2a85915d82120d2921bde91d02b0ccc354ba2777edd20ac486584f70e97120d4250ade1aa840bd9176290f48d82a99b796edb86f087aa5def27478164e0befadbc109069390e43a70bdc190e5ac8e0d6937f5ac3218d4c3884cb760c7fcb1f22c07a2399c09c37d2d2786409c70852e183fff2081a447479b4898e82cd01de96937117a4aa36d86bebdb5092d061ef5d3fa492c30e58eebd7fa4922de0c3239edff5ef4124f40c45e142fb7bc2492e4402fd697630924ee0fffdb08249543262d4b4af1082492d6fe1e1a4bfd7d386217d696af85dffd270c168111ffafe185d5f6b695c7dd7ffd20afd2f7c7efba57abad7efbef5ffb7ded27e1c2e12636fafff0add6957ff76be1bf096fd3ee9dbeffb5eafc243e9b4b483edf0ea9609fb49a8daaa4361d3ac37f5eb5df15d2850de1add56d461a18ffffffffe00200");
              public byte[] decodeImage(String codigoEntrada){
                        byte[] data=hexStringToByteArray(codigoEntrada);
                        try {
                             ByteArraySeekableStream seekableStream = new ByteArraySeekableStream(data);
                             PlanarImage src = JAI.create("Stream", seekableStream);
                             byte[] data2=getByteArray(src);
                             return data2;
                        } catch (IOException e) {
                             System.out.println(e);
                        return null;
              public byte[] getByteArray(RenderedImage image) {
                        ByteArrayOutputStream bouts = new ByteArrayOutputStream();
                        JAI.create("encode", image, bouts, "jpg");
                        return bouts.toByteArray();
              public static byte[] hexStringToByteArray(String s) {
                       int len = s.length();
                       byte[] data = new byte[len / 2];
                       for (int i = 0; i < len; i += 2) {
                           data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4) + Character.digit(s.charAt(i+1), 16));
                       return data;
    }thanks
    Edited by: hikarus on Mar 31, 2009 12:52 PM
    Edited by: hikarus on Mar 31, 2009 12:57 PM

    the problem is if you use this with the bad image
         public static void main(String[] args) {
            Test g = new Test();
               //          bad image
         g.saveImage("49492a00080000001100fe00040001000000000000000001030001000000800100000101030001000000050100000201030001000000010000000301030001000000040000000601030001000000000000000701030001000000010000000a01030001000000010000001101040001000000ea0000001501030001000000010000001601040001000000050100001701040001000000280300001a01050001000000da0000001b01050001000000e200000024010400010000000000000025010400010000000000000028010300010000000200000000000000c800000001000000c800000001000000ffffffffffffe6449c29d9afc27fd04e17f33fede825fff5ebea12bbfc2afaafbfc2f4abaffafafa7f85fd7097fff5f5ad7f5e16bd7fff5f356bc2a7aebfe134abafd5bfd05d6f2dd570a97ffffff5a4b0bfaeb855f5ffbf4bd2d6bbfaf0bd7ae17d6b2c7d53afd7df497ffe975fae124a12fffd57fa55faffebf4bf84bfd2f4ffd533010bc157821111210728c5299540ccbcca80789494ca034ccd9a1170cefcecc80c18336f68cc08559d920287eb3a063a9da906c5d725c2eb044085697c18ea0975583a50883bebf0df3b1606036175c18694ec481723cdd75831c2085bd257a9da404239874bf99dc221315af4bbcecb854baff41c205eaab8596387088ba20db55aea1b84104b0ba5c5373b4095d7d0698708155affb70825d2a4b49b8204beafb41ba055a5ae126e4d05a0ed6bd30e105d855ad43708209755eb785aa5a5d372b02d3afe15b8412ad7f86e104ee925d04487b740825aba58416dd2f497d2c3704157495692dd05ebaf5b70820975f825b7097a5d6961e105e952f0bbc2a8d7c25dc25a5f84b0dc2095a74b85de92a096a12c3c20bfdc25dc25d69610586f5412fc25dc20974b4820bbd6974a105b70924d1d445d05b7ac2fe961b84b4bab082cd1174478de4745d91d17d3d52c3e211080da221f5d21a44806c368c1dff709180d32398b6dc2a85915d82120d2921bde91d02b0ccc354ba2777edd20ac486584f70e97120d4250ade1aa840bd9176290f48d82a99b796edb86f087aa5def27478164e0befadbc109069390e43a70bdc190e5ac8e0d6937f5ac3218d4c3884cb760c7fcb1f22c07a2399c09c37d2d2786409c70852e183fff2081a447479b4898e82cd01de96937117a4aa36d86bebdb5092d061ef5d3fa492c30e58eebd7fa4922de0c3239edff5ef4124f40c45e142fb7bc2492e4402fd697630924ee0fffdb08249543262d4b4af1082492d6fe1e1a4bfd7d386217d696af85dffd270c168111ffafe185d5f6b695c7dd7ffd20afd2f7c7efba57abad7efbef5ffb7ded27e1c2e12636fafff0add6957ff76be1bf096fd3ee9dbeffb5eafc243e9b4b483edf0ea9609fb49a8daaa4361d3ac37f5eb5df15d2850de1add56d461a18ffffffffe00200");
           public String saveImage(String codigoEntrada){
              byte[] data=hexStringToByteArray(codigoEntrada);
              try {
                   File myFile = new File("C:/imagen.tif");
                   FileOutputStream fout = new FileOutputStream(myFile);
                   fout.write(data);
                   fout.close();
                   } catch (IOException e) {
                   e.printStackTrace();
         }the image is saved into a file and you can open to see with a external viewer like paint, it's possible this, if the image it's corrupted?

  • Problem converting a batch of RAW's into jpg's

    I want to convert 200 RAW's into jpg's. been doing that for years but recently upgraded to Photoshop CC.
    When I run the imageprocessor it opens the first photo in Camera RAW and that's all, nothing happens...

    Moving to Photoshop forum.

  • Photoshop cc is turning my raw files into jpg after editing

    photoshop is turning my raw files into jpg after editing with out flatten the layers instead of psd files. when I go to save they are jpg. This started 2 days ago - no problems before that

    How are you doing the save?  Just choosing File - Save?
    Photoshop remembers the last "master file" format you saved something in.  If the current document is capable of being saved in that format, it will default to that format for the next save.
    What happens if you do the following:
    1.  Open your raw file, and edit it.
    2.  File - Save As, and in the Save as type field choose Photoshop (*.PSD;*.PDD).
    3.  Complete the save operation.
    I'm betting that will result in your having saved a PSD format file.
    In summary, change your habit to use File - Save As to save your master document and you can't go wrong.
    -Noel

  • Problem while inserting into a table which has ManyToOne relation

    Problem while inserting into a table *(Files)* which has ManyToOne relation with another table *(Folder)* involving a attribute both in primary key as well as in foreign key in JPA 1.0.
    Relevent Code
    Entities:
    public class Files implements Serializable {
    @EmbeddedId
    protected FilesPK filesPK;
    private String filename;
    @JoinColumns({
    @JoinColumn(name = "folder_id", referencedColumnName = "folder_id"),
    @JoinColumn(name = "uid", referencedColumnName = "uid", insertable = false, updatable = false)})
    @ManyToOne(optional = false)
    private Folders folders;
    public class FilesPK implements Serializable {
    private int fileId;
    private int uid;
    public class Folders implements Serializable {
    @EmbeddedId
    protected FoldersPK foldersPK;
    private String folderName;
    @OneToMany(cascade = CascadeType.ALL, mappedBy = "folders")
    private Collection<Files> filesCollection;
    @JoinColumn(name = "uid", referencedColumnName = "uid", insertable = false, updatable = false)
    @ManyToOne(optional = false)
    private Users users;
    public class FoldersPK implements Serializable {
    private int folderId;
    private int uid;
    public class Users implements Serializable {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Integer uid;
    private String username;
    @OneToMany(cascade = CascadeType.ALL, mappedBy = "users")
    private Collection<Folders> foldersCollection;
    I left out @Basic & @Column annotations for sake of less code.
    EJB method
    public void insertFile(String fileName, int folderID, int uid){
    FilesPK pk = new FilesPK();
    pk.setUid(uid);
    Files file = new Files();
    file.setFilename(fileName);
    file.setFilesPK(pk);
    FoldersPK folderPk = new FoldersPK(folderID, uid);
         // My understanding that it should automatically handle folderId in files table,
    // but it is not…
    file.setFolders(em.find(Folders.class, folderPk));
    em.persist(file);
    It is giving error:
    Internal Exception: java.sql.SQLException: Field 'folderid' doesn't have a default value_
    Error Code: 1364
    Call: INSERT INTO files (filename, uid, fileid) VALUES (?, ?, ?)_
    _       bind => [hello.txt, 1, 0]_
    It is not even considering folderId while inserting into db.
    However it works fine when I add folderId variable in Files entity and changed insertFile like this:
    public void insertFile(String fileName, int folderID, int uid){
    FilesPK pk = new FilesPK();
    pk.setUid(uid);
    Files file = new Files();
    file.setFilename(fileName);
    file.setFilesPK(pk);
    file.setFolderId(folderId) // added line
    FoldersPK folderPk = new FoldersPK(folderID, uid);
    file.setFolders(em.find(Folders.class, folderPk));
    em.persist(file);
    My question is that is this behavior expected or it is a bug.
    Is it required to add "column_name" variable separately even when an entity has reference to ManyToOne mapping foreign Entity ?
    I used Mysql 5.1 for database, then generate entities using toplink, JPA 1.0, glassfish v2.1.
    I've also tested this using eclipselink and got same error.
    Please provide some pointers.
    Thanks

    Hello,
    What version of EclipseLink did you try? This looks like bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=280436 that was fixed in EclipseLink 2.0, so please try a later version.
    You can also try working around the problem by making both fields writable through the reference mapping.
    Best Regards,
    Chris

  • NEF(raw) photos turn into jpg when i drag from iphoto to my desktop?

    why do my NEF(raw) photos from my nikon D90 turn into jpg when i drag them from iphoto to my desktop? i can not work on them in PS unless i dig into the original files in the masters list. i download them from the card, both go in, and if i look at the info it says that they are both there one in jpg and one in raw format side by side.  what am i missing and how can i drag the raw photo onto the desktop keep it in that format so that i can then put into PS.

    thank you just tried and worked just fine, did not set any advanced options but opened up in PS any way.
    well i have one other q that maybe you can answer, when i send photos to folks from iphoto, through macmail, no one can download the photos and keep on their 'puter. several years ago this changed and i have never found the answer. i will put on my desktop zip the photos and send that way. is their another??

  • With Netscape all of the Webcam shots from live feeds were automatically saved in my cache folder and I could simply open my cache send the saved files into AcDsee and convert them into jpgs, It would save as many as I would allow space for. With firefox

    I cant retrieve my images from webcams that are cached any more with mozilla. With netscape all of the live webcam images from live cams were automatically saved in my cache folder and all i had to do was open it send the files to acdsee and turn them into jpgs. It would save them untill the Cache ran out of room no matter how many files or sites I had running. Mozilla seems to save what it wants when it wants and often dose not save any that I can retrieve because I believe it is bulking them into Cache 123 or 4 and those i cant open to retrieve the files. Sometimes it saves 100 or so and sometimes 2 or 3 sometimes 10 or more but i don't seem to have any control over what it does or does not save to retrieve no matter how much space i allow for the cache to save.
    == This happened ==
    Every time Firefox opened
    == I finally gave up trying to keep netscape due to all the ridiculess popups and continued reminders from you saying i had to switch over

    You have or had an extension installed (Ant.com Toolbar) that has changed the user agent from Firefox/3.6.3 to Firefox/3.0.12.
    You can see the Firefox version at the top and the user agent at bottom of the "Help > About" window (Mac: Firefox > About Mozilla Firefox).
    You can check the '''general.useragent''' prefs on the '''about:config''' page.
    You can open the ''about:config'' page via the location bar, just like you open a website.
    Filter: '''general.useragent'''
    If ''general.useragent'' prefs are bold (user set) then you can right-click that pref and choose ''Reset''.
    See [[Web sites or add-ons incorrectly report incompatible browser]] and [[Finding your Firefox version]]
    See also http://kb.mozillazine.org/Resetting_your_useragent_string_to_its_compiled-in_default

  • In iTunes I'm having problems changing the "Media Kind" with a number of playlists in the OPTIONS menu from "music" to "audiobook". After going through the steps, the next time I check the items have reverted back to "music". What step am I missing?

    In iTunes I'm having problems changing the "Media Kind" in the OPTIONS menu from "Music" to "Audiobook". After going through the steps, the next time I check, the items have reverted back to "Music". What must I do to save it as an "Audiobook"?

    After more digging in the Support section here and some Google work, I turned off iTunes Match and lo and behold!  I can change the media kind to Audiobook!  So, it looks like iTunes Match locked the files up somehow and for some reason.
    I went into iTunes Store > iTunes Match > "No, Thanks" to disable it on the local PC.

  • Export into Jpg

    The original source have a paper size of A4 portrait format before I create a PDF. After I export the PDF into JPG format, the JPG come out with varies of dimension(size).
    But what I want is all JPG output should be in the same size, as all of the document are in A4 portrait format. Is there any setting that I should change in order to make sure all JPG output have the same size?
    Thanks & Regards
    Kun

    Yes I notice that acrobat did say "Pages that have only a single JPEG image covering the whole page will be left unchanged."
    but if you look into Page 25(last page), i have both picture, text and table (without border) but the image produced is not in the same dimension.
    I uploaded another file Template file but this time I added border around the page but the (Save as) to JPG still come out as different dimension.
    You can check the Image file for the output
    PDF
    http://www.ziddu.com/download/1792765/Template.pdf.html
    Image
    http://www.ziddu.com/download/1792816/Template.zip.html

  • How to convert RAW into jpgs?

    I used to use Capture One by Phase One to process my RAW images into jpgs, when I had WinXP on my pc. With my new computer, it has the new 64 bit, with Win Vista. Now, using Capture One is a total joke. You can't possibly get anything done.
    How can I use Photoshop CS4 to process RAW images into jpgs? I don't see a way that I can apply changes on one image, to others in a particular group. With Capture One when it was good on WinXP, I could make changes to one, lighten/brighten, sharpen, change the color temp, etc., apply it to all the desired images, then click to output a certain size, say 5x7 at 200 ppi, hit the button, and it would do it. I don't see that I can do any of that in Photoshop, short of using the ever-annoying set and action, then automate.
    Also, for professional work, where I'm processing hundreds of images at a time, is there other software I should look at, like Lightroom, Gimp, etc.?

    jeff bach wrote:
    How can I use Photoshop CS4 to process RAW images into jpgs?
    Use Bridge and Camera Raw:  Navigate Bridge to the folder with your raw files.  In Bridge, select/highlight the images you wish to process and save, then Open in Camera Raw (File > Open in Camera Raw, or Ctrl-R, or right click and Open in Camera Raw from context menu). Your selected raw images will open in camera raw in Filmstrip view.  Make any desired camera raw adjustments then, still in camera raw, do Select All then at bottom Save Images...  which will bring up a save options box in which you can choose jpegs or tff, where to save, and other options.
    With Capture One when it was good on WinXP, I could make changes to one, lighten/brighten, sharpen, change the color temp, etc., apply it to all the desired images, then click to output a certain size, say 5x7 at 200 ppi, hit the button, and it would do it. I don't see that I can do any of that in Photoshop, short of using the ever-annoying set and action, then automate.
    There are several ways to make changes to one image in camera raw then apply the changes to other raw image files.  In camera raw filmstrip mode, select the images you want to apply an adjustment to then apply the adjustment to the first of those images and it will be applied to all the others that are selected.  Or apply adjustments to the first image of a series then add additional selections and use camera raw's Synchronize.  Or, make adjustments to first image in series then click done, which will return you to Bridge.  In Bridge, select the image you want to copy camera raw adjustments from then Develop Settings > Copy Settings.  Select all the target images that you want to receive these settings then Develop Settings > Copy Settings.  Both Copy settings and ACR's Synchronize will bring up a selection box where you can check which settings you want to copy.
    You can select save ppi in camera raw.  You can use Camera Raw's crop function can get files to a desired aspect ratio if they are not already there.  Crop can be copied to other files via Synchronize or Develop settings - Copy if that is useful.  Getting a specific size in pixel dimensions may take another step.  Camera Raw offers a limited set of file sizes (in its Workflow Options).  If you want other than these, then one methodis to save images from Bridge using Photoshop's image processor.  After making camera raw adjustments and returning to Bridge, select desired raw images then Tools > Photoshop > Image Processor...  Set size and output options in the image processor.

  • Lightroom changes file date (build and changeing date) by jpg files

    Hallo
    I am using Lightroom on Mac OS X Snow Leopard. The Problem is that Lightroom changes both dates of the file (the date when the file was build and the date when you have made changings on the file) when i save the Metadates to the file.
    This happens only by jpg files. By raw / xmp files is the date of the raw file not changed, the both dates of the xmp are also changed like by jpg.
    I want not to change the time when the file was build. So that i can see in the Finder / Explorer when the file was build ( Photo taken).
    How can I solve this Problem.
    Thanks for Help

    Do not save the metadata to the files. It's quite unnecessary to do so, but of course, you should have full backups of the images and the catalog(s) [.lrcat].

  • How to export the same mb size of my cr2 files into jpg or tiff files in Lr?

    How to export the same mb size of my cr2 files into jpg or tiff files in Lr?
    Let's say my file size is 22mb, when i export the file to tiff or jpg, although Iam careful with the settings- file size, dimension, resolution, I can't manioukate how I want it.
    With jpg I tried everything, no matter what i do or change in files size or resoltion it remains the same size- 7mb as opposed to 22..
    Please advise,
    Best wishes,
    T

    I would noramlly opt for a tiff file, sending such a high res through the nest a nightmare
    This is probably just an improper use of terminology, but the resolution of a JPG, DNG and TIF should all be the same.
    The files differ in size, not resolution and not number of pixels.
    Jpg is not that bad, but its a pitty they have to be edited under a jpg format..
    Your raws are edited as raw. There is no loss of quality in the editing process. The files are then exported as JPG, which will cause a loss of quality. For just about any use, the loss of quality in the image when you export a JPG at quality level 12 is NOT noticeable. For many uses, exporting a JPG at a quality level of 8 will not be noticeable either, unless you intend to print the photo at a very large size. As twenty_one (not his real name) said, "Jpeg compression is fantastically effective".

  • Changing .bmp to .jpg to .png

    Hi,
    I have a bunch of .bmp files that need to be converted to .png files. Some of the .bmp files cannot be made into .png files without being converted to .jpg files first.  The first action does the .bmp --> to .jpg.  The second action finishes up the process converting the .jpg to .png.
    I would make the change over into one long action: Process1.  But when I convert one file to another and save to another location, I need to open that same file name with the different extension and then run the second process.
    So I've got two separate actions now and run one after the other.  Being on the lazy side, you know, one less click is a wonderful thing..., can I combine the actions or is there a way to do Process1 all at one time?
    thanks for all help!

    make an action that saves a file to .png and then run it on the rest of the files. If you want to save using 8bit png then use File->Save for Web & Devices and make sure that you select png-8 otherwise use File->Save. Note that if you save using the Save for Web & Devices command then you will save all your files in the folder specified by it, it cannot be overriden using the Batch command. If you save the file using 24bit png(using File->Save) then when using File->Batch to automate the process make sure that Override Action "Save As" Commands is selected and select the folder where you want to save your files

  • Turning Raw into JPG (using automated batch action)

    I have finally decided to try and learn a bit more... this is all motivated by me not being happy with White Balance and the results I get... I want more vibrant colours and natural skin tones...
    Anyways I have decided to start shooting in RAW... but dont know how I get them into JPG format ??? I know I need to use Photoshop/Batch... but not sure exactly what...
    When I open a RAW image it appears in Photoshop (CS3) and allows me to really manipulate the colours... but how do I then SAVE those changes and create a action so I can automate batch the pics...
    Cause we shoot large sets of images (like 100-200 per set) it's important that I can automate batch them... way too slow to do each image individually...
    Any help would be greatly appreciated... do I make the changes in Photoshop then batch them in Bridge ? Please think of me as a absolute newbie who needs a step by step instruction lol

    Ok here's a step to step of what I want to do...
    I want to open the RAW image... I take it I do that in Photoshop ? I say that cause when I double click a RAW image thats where it automatically opens...
    After I done that I want to play around with the image... ajust exposure/colours ect... The programe that the RAW image opens in is perfect to do that, I believe it's opened in Camara Raw 4.0...
    But here is the tricky bit... what I really want to be able to do is then create a action/automated batch so that I can make the same changed (automated) to all the images from that set... not have to do them individually... and at the same time change the images into JPG's
    So thats the bit I guess how and what do I use to do that ?

  • Changing "Raw" to "JPG"

    I am a brand new mac user and iphoto.
    The scenario is that:
    I imported "RAW" photo into iphoto and say I already finish editing all the "raws" and want to change all of them to "jpg" so it wont waste my hdd spaces.
    So in other words, change "raw" to "jpg" then delete all the "raws".
    Is this possible to do? How about can I do the task...
    Thank you for you answers in advance.

    So the only way for me to do what I wanted is to export all the edited photo as JPEG and store it somewhere then delete the RAW and then import the "exported jpeg".
    When you edit the RAW you will have a JPEG as I understand it - what program do you plan to use to edit the RAW. You start with RAW but the edited version will not be RAW
    And since the whole purpose of RAW is better quality and since hard drive are getting pretty cheap I would think you would want to keep your digital negatives RAW
    Aperture does handle RAW much better than iPhoto and many people who shoot RAW move to it for that reason - but I believe it does still maintain the RAW as the digital negative
    LN

Maybe you are looking for

  • Error AU133 Account 'Contra account: Acquisition value' could not be found

    I have this error when running RAPERB2000 program in IDES ECC6.0. I have checked AO90 and this B/S account (199990) is maintain correctly in area 64 for the account determination. This is the job log:- 02.12.2010 23:21:41 Errors occurred during the p

  • Assistance with an inherited Zen Vision:M media player, plea

    I inherited a Creative Zen Vision:M (30 GB, pink) due to someone getting Ipod fever and bequeathing her old player to me. What I ended up receiving was a functioning device, a power chord but no cradle, no interface cables. The latter were found easi

  • Problem with Headphone socket

    There is some problem with the headphone socket of my nokia lumai 920. One headset is not working. But the headset is working fine in other phones.   What is the possible solution for this?

  • BADI & OO ABAP Material

    hi can any one send me the material Regarding BADI & OO ABAP Concepts........ Thanks in advance........ my mail id is: <b>[email protected]</b> Regards, Ravi

  • TimeMachine keeps continuously backing up

    I updated to 10.8.2 the day it came out on my 2011 13" MacBook Pro. In the past my Mac would back up to our household TimeCapsule like normal, a few times a day, just took a couple of minutes. Just a few hours ago it started backing up, no big deal,