Savew3d function increases the size of the file??!!

I am working with savew3d function, but a problem comes.
I have a w3d file of 100 Kb and a 2 jpgs of 20 Kb and 50 Kb
respectively.
I create a new w3d file using those 3 files and the result
is: a 410 Kb size file!!!
Using 170 Kb I get a 410 Kb!!!!
The size increases very much, so the solution of using
savew3d is worse than loading the original 3 files.
It seems that the jpg files are decompressed!!!
Is there way to create w3d of low size??

Yes, the jpeg files are decompressed. This is not a w3d thing
as much
as a Director thing. Director's internal #bitmap format is,
well, a
bitmap. Analogous to the .bmp files we all know and love, but
with an
alpha channel. If you bring in a jpg into Director, then save
the
Director file, it will increase by the size of the bitmap...
not the
size of the jpg. It has always been that way.
You can shrink the size of the image that Director stores by
lowering
the bit depth (Modify, Transform Bitmap). Set the bit depth
as low as
yuo want... of course you will lose quality with lower bit
depths... you
lose the alpha channel with anything less than 32 bit, but
that is no
great loss if you don't have transparency. If you know your
image has a
limited color palette, then lowering the bitdepth further can
be helpful.
Bear in mind that changing the bit depth is not undo-able, so
make sure
you save your file before experimenting...

Similar Messages

  • HT4863 How can I increase the file size limit for outgoing mail. I need to send a file that is 50MB?

    How can I increase the file size limit for outgoing mail. I need to send a file that is 50MB?

    You can't change it, and I suspect few email providers would allow a file that big.  Consider uploading it to a service like Dropbox, then email the link allowing the recipient to download it.

  • Do Leopard icons increase the file size?

    In programs like Photoshop you have the option of including a preview or a thumbnail icon for the image you’re saving. This is important to know because, if you are making a web page or trying to fit as many files as possible on a disk, you want the file sizes to be as small as possible, and you do not want the images saved with a thumbnail icon or preview.
    In Leopard, in list and icon views, I noticed that the files have an icon whether you had these settings turned on in Photoshop or not. How does this work? Are those icons in the finder being embedded into the file or is Leopard some somehow generating them “on the fly” and not increasing the file size of the individual images? Does Cover Flow work the same way, and generate the previews on the fly rather than embedding anything into the images?

    Unless you've given a file a custom icon, through the Finder, Photoshop, or another method, the icons are generated elsewhere in the system and aren't part of the file itself.
    (29473)

  • Why is that saving as PDF increase the file sizes?

    Hola
    I've been notice that when I save a file as PDF, in CS5  it increase the file size to double that before.
    Even saving it with the same setting than before.
    For example, most of my Business Card file that I sent to print, use to be 1.5 or so megabytes
    Now if I open the same file, --or a new file-- and save it, it will increase it to double that size
    Any ideas?
    Thanks

    Hola and Thanks for your help
    Ok, I've been using Photoshop since version 6 or so (around year 2000)
    Just upgrade to CS5
    Before, for example, I'll make a file in PS, merge the layers, open a new file whit the same dimensions, resolution etc,
    and save this file as PDF to send to printers.
    Tthe file(s) that I have or were create them in CS4, than saved as PDFs have a file sizes of 1 to 2 megabytes as average.
    The NEW files (in the same sequence) that I create now, have an average of 3 Mbytes
    Even do, I save them with the same --I believe-- setting in PDF
    There's may be a new feature in PDF save dialogue box that I'm not getting?
    or, it just more information that it is put into?
    Thanks

  • Digital signature increases the file size

    My digital signature increases the file size from 262kb to 15meg.  How can I reduce the file size?

    Actually, it sounds normal. Try turning off the preference "Include Signature’s Revocation Status When Signing" but be sure you understand the consequences... that space is being used for something that might be important.

  • Acrobat Pro "save as" function in the file menu does not show the current directory of the file

    I have installed CC but Acrobat Pro gives me headaches.
    The "save as" function in the file menu does not show the current directory of the file but something I have worked on in the past.
    It forces me to navigates through my hard disk for this very straightforward thing in normal conditions. I precise: Acrobat is the only software reacting like that.
    I use Windows7 professional 64bits.

    I use what seems to be the latest version available on the Cloud:
    To illustrate my point, I open a directory with explorer and double-click on the only PDF in there:
    So here it is, open:
    When I do a "Save as", it takes me to a totally different place on the disk!
    Very annoying...
    Thanks for your time!
    JJ

  • Increasing the File Copy Throughput

    How do I increase the file copy throughput (within and between the Azure VMs)?
    I have read the article about increasing the number of ServicePointManager.DefaultConnectionLimit  but couldn't find how/where I can make this change.
    http://blogs.microsoft.co.il/applisec/2012/01/04/windows-azure-benchmarks-part-1-blobs-read-throughput/
    Currently, when I make copy the file between the VMs or Drives within a VM, the transfer speed is only 10-20 MB/s and I think it should be much higher than this especially when I am copying between the drives in a VM.

    HI;
    Please create a new VM  from a different storage account in a different geographic location and cross check.
    in case if the issue still persists we will need to further investigate it and you would have to open up a Technical Ticket with our Windows Azure Technical Support team.
    Regards
    Prasant Chhetri

  • How to provide the F4 functionality to the files on application server

    Hi,
    How to provide the F4 functionality to the files on application server at selection screen.as it is F4_FILENAME for files on desktop , is there any Function module for this purpose also. I did a search in R/3 but didnt get any FM .Please advise.
    Regards,
    sam.

    You can get to it  using frontend class CL_GUI_FRONTEND_SERVICES if you know the host name and have the correct permissions, for example, this program works great for me in my system.
    report zrich_0001 .
    data: ifiletable type filetable.
    data: xfiletable like line of ifiletable.
    data: rc type i.
    parameters: p_file1 type localfile default'\sapprdusr'.
    at selection-screen on value-request for p_file1.
    call method cl_gui_frontend_services=>file_open_dialog
       EXPORTING
    *    WINDOW_TITLE            =
    *    DEFAULT_EXTENSION       =
    *    DEFAULT_FILENAME        =
    *    FILE_FILTER             =
         INITIAL_DIRECTORY       = '\sapprdusr'
    *    MULTISELECTION          =
      changing
        file_table              = ifiletable
        rc                      = rc
    *    USER_ACTION             =
      EXCEPTIONS
        FILE_OPEN_DIALOG_FAILED = 1
        CNTL_ERROR              = 2
        ERROR_NO_GUI            = 3
        others                  = 4.
    read table ifiletable into xfiletable index 1.
    if sy-subrc = 0.
      p_file1 = xfiletable-FILENAME.
    endif.
    Regards,
    Rich Heilman

  • Where does GUI_UPLOAD function store the files?

    Where does GUI_UPLOAD function store the files?

    Hi Audrey
    Here is an example of accessing files from application server: 
    open dataset w_file for input in text mode.
      if sy-subrc <> 0.
        message e895 with 'Unable to locate file'.
      else.
        do.
          read dataset w_file into it_data.
          if sy-subrc eq 4.            " End of file reached
            clear it_data.
            exit.
          else.
            append it_data.
            clear it_data.
          endif.
        enddo.
        close dataset w_file.
    In the above example, w_file is declared as string containing  c:\usr\sap\test.txt
    And this file should be there on this path on application server.
    And, yes, you need to declare it_data as an internal table containing fields corresponding to file from which you are reading data.
    Regards
    Ashish Jain
    [email protected]

  • How to increase page size for balance file upload in Workspace.

    Hi All,
    Please suggest how to increase page size for balance file upload in shared Workspace pages.
    Thanks,

    A word of caution is in order regarding changing from facing to non-facing and back again. If you have overridden master page items, you'll get a second, non-overridden copy on all the even-number pages when that half of the master page is re-applied. This applies to master text frames which override automatically when text flows into them as well as to objects you manually override. I think you'll find this particular technique also only works for master text frames, whereas the Layout Adjustment should work in all situations where frames snap to guides.

  • How do I increase the file size of a photo?

    I have an iMac with Mavericks installed and took a photo with my iPhone 5 that I would like to increase to a 2 MB JPEG file size. How do I do this?

    Export with higher quality (file menu ==> export - see the use tip on exportign for details on options)
    However this will not change anything about the photo except the amound of disk sopace it uses - the photo is stil exactly the same no matter how large you make the file by reducing compression
    LN

  • How to increase the files picked up by File Adaptor per poll interval

    Hi,
    We have a scenario where in we post 80 files in the source directory and and the file adapter is configured for every 300 sec but i have noticed that the File adaptor is picking up one or two files per poll interval.Can some please suggest how to increase the number of files picked up by File adaptor
    Thank You,
    Nandini

    Nandini:
    Did you mention all the files names in the Adapter channel. One thing you can do is use wild cards and file adapter picks most of them
    /people/mickael.huchet/blog/2006/09/18/xipi-how-to-exclude-files-in-a-sender-file-adapter
    In case if your files are huge, then I guess file size may cause to process few files during each poll

  • Want to increase the file descriptors

    Hi,
    I am trying the increase the max number for file descriptor allowed in Solaris.
    I changed the ulimit soft value to hard limit value (65536) as a root.Even the ulimit -a shows the change value for the soft limit.
    When I run my test program to find the value of sysconf(_SC_OPEN_MAX) it shows the changed value.But when I try to open more than 253 files it fails.How do I increase this, also when I change the ulimit -n 65536 why the max number for files open is not increased.
    Looking forward for help.
    Thanks in advance
    -A

    The simplest workaround is to compile as a 64bit executable.
    -m64 in gcc. I don't remember offhand what the option is for Sun CC.
    The difficulty is that any non system libraries your using will also need to be recompiled to be 64 bit..

  • How do increase the file system size

    Hi friends,
    My newly installed solaris 10 system shows Filesysem full error.
    By mistake space allocated for Root is very less and 98% of the space in Root is consumed.
    Do i need to restructure entire filesystem or increase space in Root would be sufficient..?
    Its 160 GB Harddisk on Intel Core 2 duo. What is the best allocation for the same.
    I am very new to Solaris. Trying to learn how does Opensource OS works...
    Pls help me
    Regards
    Bijoy

    If you have more drive space you can mount more space and allocate it to a mount point--this may take care of your problem, but if you are out of space and you are not buying any more drives.... then it's time for the install disks to come back out and configure more appropriately to your use.
    I have my work machine at home on a x64 AMD with 120 GB of drive. I gave 40 GB to Solaris just to be sure I could do basic installations and grow a little.
    Once your allocation is full you have 2 options... buy more and mount it, or reinstall... you choose.
    Well, there is a 3rd... you could unmount one of the other allocations and split it, then mount some of it back to your OS and some back to what it was before, but you are going to be plagued with this your entire lifetime of that install.

  • Function of the File Dialog.vi

    The FileDialog vi functions nicely, but the button choice is only "Save" or "Cancel". I would like to use it in a file open process to choose the path. Can the Save button be changed to "Open"?

    William,
    Here is the issue. LabVIEW is actually using the Windows File Dialog for this task, so this is actually a Windows thing.
    If you are choosing only an existing path, then you can create a constant on the select mode (2) input to this function. If you choose existing path, then the button will say Open as you would expect. If you choose new or existing path, then the button will say Save originally because a user can type something and save the typed value as a new directory. If the user selects a directory, then the button changes to say Open.
    Randy Hoskin
    Applications Engineer
    National Instruments
    http://www.ni.com/ask

Maybe you are looking for