PS Touch and able to change file size

Hi
I would like to change the file size of a picture from 10 mb to 1 mb, is this possible?
Thanks in advancefile

Size in pixels ultimately determines the file size. Tap the ampersand icon in the upper right > Image Size. (If you need a file size calculator, try Googling. There are tons of online tools out there.)

Similar Messages

  • HT204053 I redeemed my iTunes gift card on my iPod touch and then I changed my apple I'D and it says I have to enter a credit card number because I already submitted my gift card. So what do I do? Please help

    I redeemed my iTunes gift card on my iPod touch and then I changed my apple I'D and it says I have to enter a credit card number because I already submitted my gift card. So what do I do? Please help

    Anybody?????

  • In putting together a book I can move photos onto a page and enlarge the picture but is there a way to reduce the picture size? some cases I want a smaller picture and if I change the size of the picture box I only get a portion of the image. I wnt to red

    picture size...in putting together a book I can move photos onto a page and enlarge the picture but is there a way to reduce the picture size? some cases I want a smaller picture and if I change the size of the picture box I only get a portion of the image. I want to reduce the image to fit the size of the box.

    If you right click on the image on the page in the context menu select photo box alignment and then select one of scale to fit {centered, Left-aligned, Right-aligned}
    That should do what you are loking for.

  • Why the files my program create are created twice each file double ? And why sometimes the files size are too small ?

    My program is using Queue of type Uri to create Queue of urls and then i'm using webbrowser to navigate each Uri from the Queue in it's turn and get the url(html) source content and save it to the hard disk.
    The problem is sometimes the text files on the hard disk are small like 90KB or 60KB and sometimes they are as they are suppose to be 300KB or 200KB.
    This is a button click event where i'm calling two methods:
    private void toolStripButton3_Click(object sender, EventArgs e)
    GetHtmls();
    CheckQueue();
    This is the GetHtmls method code:
    private Queue<Uri> myUrls = new Queue<Uri>();
    private bool isBusy = false;
    private void GetHtmls()
    for (int i = 1; i < 49; i++)
    adrBarTextBox.Text = sourceUrl + i;
    targetHtmls = (combinedHtmlsDir + "\\Html" + i + ".txt");
    Uri targetUri = new Uri(sourceUrl + i);
    myUrls.Enqueue(targetUri);
    sourceUrl contain website address: http://www.tapuz.co.il/forums2008/forumpage.aspx?forumid=393&pagenumber=
    And i'm adding to it the numbers and create the pages.
    And add them to the Queue.
    THen the CheckQueue method:
    Uri uri;
    private void CheckQueue()
    if (isBusy)
    return; // We're downloading some page right now, don't disturb
    isBusy = true; // OK, let's get started
    if (myUrls.Count == 0) // No more pages to download, we're done
    isBusy = false;
    return;
    uri = myUrls.Dequeue(); // Get one URL from queue
    getCurrentBrowser().Navigate(uri);
    It suppose to Navigate to each Uri(html address) in the Queue.
    And the browser document completed event:
    private void Form1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    // If page loaded completly then do something
    int urlnumber = uri.ToString().IndexOf("pagenumber=");
    string number = uri.ToString().Substring(urlnumber + 11);
    int num = Int32.Parse(number);
    targetHtmls = (combinedHtmlsDir + "\\Html" + num + ".txt");
    StreamWriter writer = File.CreateText(targetHtmls);
    writer.Write(getCurrentBrowser().DocumentText);
    writer.Close();
    isBusy = false; // We're done
    CheckQueue(); // Check next page in queue
    In the completed event i'm getting the page number and build the string for the text file then write the html source content to the text file.
    In the end i have on my hard disk 48 text files.
    The problems are:
    1. Sometimes it seems like it's not finishing navigating to the current uri or maybe some other reason maybe server side problem and creating small size files with source content inside but not all the source content. Sometimes the text files size are each
    file 99KB or 70KB and sometimes the size of them are about 300KB and 200KB and this is the right sizes 300KB 200KB.
    2. The text files on my hard disk suppose to be 48 different files each file should contain the source if the html page of the 48 pages. But on my hard disk the 48 text files are duplicated for some reason.
    This is the file on my hard disk:
    Some of the files are 205KB 350KB 175KB and some of the files sizes are 85KB 94KB 35KB 
    Why some of the files it didn't navigated to the end or maybe didn't got all the source ?
    And why it's making each second file the same like the one before ? It suppose to create 48 different files but i'm getting two identical files each navigation.

    I solved it now.
    This is what i did:
    It's a bit slow process since i'm waiting for each page to be loaded into the webbrowser but it does the work.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.Collections;
    using System.IO;
    using System.Net;
    namespace WindowsFormsApplication1
    public partial class Form1 : Form
    private string sourceUrl = "http://test.test";
    private string htmlsTargetDirectory = "Test Htmls";
    private string appDir = Path.GetDirectoryName(@"C:\Users\chocolade1972\AppData\Local\Test_Images\Test Images\Test Htmls");
    private string combinedHtmlsDir;
    private String targetHtmls;
    private int counter = 1;
    private StreamWriter w;
    private string uri;
    private bool htmlloaded = false;
    public Form1()
    InitializeComponent();
    webBrowser1.ScriptErrorsSuppressed = true;
    combinedHtmlsDir = Path.Combine(appDir, htmlsTargetDirectory);
    if (!Directory.Exists(combinedHtmlsDir))
    Directory.CreateDirectory(combinedHtmlsDir);
    private void Form1_Load(object sender, EventArgs e)
    GetHtmls();
    timer1.Enabled = true;
    private void GetHtmls()
    uri = sourceUrl + counter;
    targetHtmls = (combinedHtmlsDir + "\\Html" + counter + ".txt");
    webBrowser1.Navigate(uri);
    private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    if (e.Url.ToString() == uri)
    targetHtmls = (combinedHtmlsDir + "\\Html" + counter + ".txt");
    htmlloaded = true;
    StreamWriter writer = File.CreateText(targetHtmls);
    writer.Write(webBrowser1.DocumentText);
    writer.Close();
    FileInfo fi = new FileInfo(targetHtmls);
    var size = fi.Length;
    w = new StreamWriter(combinedHtmlsDir + "\\test.txt", true);
    w.WriteLine("File Size " + size);
    w.Close();
    private void timer1_Tick(object sender, EventArgs e)
    if (htmlloaded == true)
    uri = sourceUrl + counter;
    myurls.Add(uri);
    webBrowser1.Navigate(uri);
    htmlloaded = false;
    counter += 1;

  • What is the cisco ironport C680 and M680 configuration backup file size?

    what is the cisco ironport C680 and M680 configuration backup file size?

    Size of the XML itself?  That is going to vary based on what you have configured, total lines of code, and # of appliances you may/may not have in cluster.
    M680, based on SMA as stand-alone, should be similar --- you are probably looking @ < 1 MB... 
    Looking @ my test environment, in which I have a nightly cron job set to grab a backup of...
    -rw-rw----  1 robert robert 161115 Sep 26 02:00 C000V-564D1A718795ACFEXXXX-YYYYBAD60A5A-20140926T020002.xml
    So, 161115 bytes = .15 MB
    -Robert

  • APEX 4.0 -Show and able to change Primary key values for Detail

    In a Master-Detail form, is there anyway I can show and able to change/select my primary keys from a select list field? One of my primary keys on the Detail is also primary key from another table which restricts my values for this field. I was able to show the fields but I can not make changes to this field and save the changes. Is there anyway I can have both show the field and able to change field's value and save it? Please advice. Thank you very much for your help in advance.
    -Grace

    Yes AFAIK Apex (for better or worse) was designed such that the PKs are generated automatically with PL/SQL, by a trigger, or whatever other algorithm that isn't in the control of the end user. It also only seems to allow a composite PK of no more than two columns.
    My usual strategy is to:
    1. Define the PK as a number (some sort of RECORD_ID, RECORD_SEQ, whatever) and populate it via a trigger on-insert.
    2. Define the "business" PK as a separate unique index. This way the user can set and modify it to their heart's content and it also isn't limited to just two columns (if the composite key's business requirement is such that more than two columns are needed).

  • Everything on all the webpages are so small, and only take up half the screen. How can I make it bigger, without changing the settings on my computer and by that change the size of everything on my computer.

    Everything on all the webpages are so small, and only take up half the screen. How can I make it bigger, without changing the settings on my computer and by that change the size of everything on my computer.

    The Firefox [https://support.mozilla.com/en-US/kb/Page+Zoom Page Zoom] feature does a domain by domain level of saving the users preferred zoom level settings, there is no default Page Zoom level setting in Firefox, as with some other browsers.
    Try the Default FullZoom Level extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/6965
    Or the NoSquint extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/2592/

  • Any way to change file size display to NOT use GB or MB notation?

    I'd like to see exact byte counts for file sizes from time to time in the windows listing files (without having to Get Info). I've searched for options to change how file sizes are displayed by finder but have come up completely empty. Any chance this choice has not been completely co-opted from me by Apple's omnipotent designers?

    Welcome to Discussions.
    I believe there are 3rd-party applications that do it, such as [WhatSize|http://www.id-design.com/software/whatsize] and perhaps also [Path Finder|http://www.cocoatech.com].
    /p

  • Save of edited file does not change file size correctly

    I have QT pro 7.6 and have all the latest DirectX and drivers for my PC. I have a problem with file size reporting correctly for edited files.
    For example, I have three files: A.MOV (10mb), B.MOV (15mb), and C.MOV (25mb). If I load A and then copy B and C to the end of it, I can do a File Save As to create D.MOV as a self contained movie which shows estimated size as 50mb. And the saved file IS 50mb.
    However, If (after appending B and C to the end of A) I just do a "Save" command, A.MOV file size is not changed and still shows 10mb. The whole movie A-B-C plays correctly, but the file size is incorrect. Where is the rest of the data? I know the new A.MOV is self contained because I can delete B and C and it still plays all three segments. I'm concerned that if the file size is reported incorrectly there is the chance that the data will get lost in a future copy or move operation. Does anyone else experience this bug or is it just something in my PC?

    I stopped following this issue a few years ago, but as I recall, this is a known bug in the way PSE handles the writing of the tags to the photo files.
    I stopped following this issue because I switched to Lightroom which does not have this issue. Yes, you could do this with Exiftool and re-save the metadata from PSE, seems kind of cumbersome.
    Also, please note that if you Export the file from the PSE Organizer, as far as I know the proper tags should appear, so if you want the proper tags in your files, you could use this feature.

  • Not able to change the size of the Drive

    Hello ,
    I have a template with 50 GB C drive and I want to a create a VM having 100 GB C drive using this template  . But I am not able to change C drive size from the edit settings . After changing the size from the edit settings to 100 Gb , I found that in newly created VM the size of the C drive was 50 Gb.
    If it is possible to change the C drive size to 100 Gb without making any changes in template ?
    Can anyone suggest me how to do this ?

    This question should be posted in a forum area related to a product - are you using vSphere, and if so which version?

  • Changing file size for web use - multiple images

    My most recent iPhoto event consists of 45 pictures, most of which are 1 MB or larger. I want to scale them down a bit for web use.
    I do understand how the export command works. If I want to change all 45 pictures at once (select all), where should I export them to, and then what is the procedure to get them back into iPhoto? I would really like them to all show up as a new event in iPhoto (same pictures as the original event, only smaller file sizes).
    Am I overlooking some easy way to do this?

    No you’re not overlooking an easy way to do it.
    Export them to a Folder on the desktop and then import them.
    However, why are you keeping these web versions? The more efficient use of disk space would be to upload them then trash them. If you need other versions in the future you can re-do them. Not a lot to be gained by holding on to them, is there?
    Regards
    TD

  • JSX Save PNG for web, quality parameter not changing file size

    Hi
    I have a script that uses this snippet of code to save png files for web. But, no matter what number I change the quality, the resulting file size and image fidelity remains the same.
    I was wondering if I can save pngs for web at smaller byte size with JSX and how to modify the output settings.
    docName = sourceDoc.name;
    NamesaveRef = new File( outputFolder + "/" + docName );
    var NewfileRef = new File( NamesaveRef )
    var options = new ExportOptionsSaveForWeb();
    options.format = SaveDocumentType.PNG;
    options.transparency = true;
    options.blur = 0.0 ;
    options.includeProfile = false ;
    options.interlaced = false ;
    options.optimized = true ;
    options.quality = 3 ;//THIS NUMBER DOES NOT CHANGE QUALITY IF CHANGED FROM 0.1 TO 100
    options.PNG8 = false ;
    sourceDoc.exportDocument(File( NamesaveRef), ExportType.SAVEFORWEB, options);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    Thanks for your help.
    Aubrey

    PNG does not have a quality setting. The quality property is used when exporting jpeg. That is why changing that property has no effect with PNG files.
    Photoshop now supports PNG compression but as far as I can tell you have to use Action Manager to save. I don't see a compression option when using saveForWeb.

  • Exporting an flv that doesn't stutter and is a small file size

    i know you can make an h264 and change the extension to flv but that doesn't help me with this particular issue: I am working in fcp 5.0.4. I have a two minute sequence. When I use the On2 plug-in and export an flv out of fcp I get a 30 MB file and I need to get it down to more like 2 MB! Plus, it stutters. I've tried 15fps and 30 fps. 15 looked better. How shall i get this file to 1. not stutter and 2. be a lot smaller in file size? thanks so much!

    You can report a problem from this link..
    iOS: Troubleshooting applications purchased from the App Store
    You can write a review on the page you purchased the app from at the Mac App Store.

  • IPhoto changing file size to 0 kb after only a few edits

    I am uploading approx 5mb sized files directly from my camera into iPhoto. after just a few edits ( rotate, crop, color boost - nothing but presets) the file size is reduced to 0 kb and I cannot access the photo from any other program ( upload to facebook, email, slideshow). I can still see the thumbnail with the edits I made but can only do any thing with it if I revert to original. When it changes back to the original file size as well as the original photo. I am using version 8.1.2

    Then that  suggests the original Library is corrupt.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • DVD Studio Pro changes file sizes on import

    I am trying to burn an SD DVD of a 1.62 Gb Quicktime video, but every time I import it the file size changes to 611 mb. and the resulting disc has very poor resolution  In the "Assets" list it indicates the file size is 1.62 Gb., but if I click on it and open Inspector the same file is listed as 611 mb., as does the Disc Meter after I move it to the timeline.  Encoding preferences are set to 2-pass VBR, Target rate 6.5, Max rate 7.7 Mbps.  On deadline, please help.

    Take your movie into compressor and use the DVD presets to make an .m2v and an .ac3.  Bring these files into DVDSP to create your DVD with.

Maybe you are looking for

  • How do you delete an iCloud account on a Mac and create a new one?

    How do you delete an iCloud account on a Mac and create a new one with a totally new iCloud email address and ID??

  • No longer recognized

    Oh me oh my. I've looked through thread after thread, and sorry for sounding redundant, but I still have yet to find the answer. I have found, however, that apple support is lackluster. My issue: I have a 2-month old Gateway laptop. I bought my ipod

  • Button in the lead application

    Dear All I am working on CRM 7.0 I want to add a button in the lead application so I can call a URL from there, a button like save, expert and so on Can I do it via configuration or I need I kind of BSP enhancement Regards Shawky

  • Why are apps taking up so much memory?

    My iPod has recently started telling me that I'm low on memory and no matter how many apps I delete it seems to make very little difference. I then started deleting music because I thought it would probably be more effective but at the moment more me

  • Formula Variable for Date/year not possible

    Hi, I have a query where I want to create a formula variable for a year that I can use in a user exit to populate other variables.  When I go to create a formula variable there is not option for a date or year variable.  I only see Amount; Quantity;