Ask a Question related to Adobe Flash, Flex & Director, Design and Development.

  1. #21

    Default Re: File Size

    About five times more, roughly.
    Ramón_G_Castañeda@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. #26094 [Opn->Bgs]: Filesize of downloaded file larger then the original file size
      ID: 26094 Updated by: sniper@php.net Reported By: uwe dot beier at zf dot com -Status: Open +Status: ...
    2. #26094 [Fbk->Opn]: Filesize of downloaded file larger then the original file size
      ID: 26094 User updated by: uwe dot beier at zf dot com Reported By: uwe dot beier at zf dot com -Status: Feedback...
    3. #26094 [Opn->Fbk]: Filesize of downloaded file larger then the original file size
      ID: 26094 Updated by: moriyoshi@php.net Reported By: uwe dot beier at zf dot com -Status: Open +Status: ...
    4. #26094 [NEW]: Filesize of downloaded file larger then the original file size
      From: uwe dot beier at zf dot com Operating system: WinXP Prof. PHP version: 4.3.3 PHP Bug Type: IIS related Bug...
    5. CAN I CHANGE SIZE (PIXELS) OF A PROJECTOR TO REDUCE THE FILE SIZE?
      as far as I know you would have to transform bitmap scale all bitmap members to the new size, then readjust their positions to score, and adjust...
  3. #22

    Default Re: File Size

    If they're just proofs, PDF them.
    graffiti Guest

  4. #23

    Default Re: File Size

    Of course, make sure you are compressing the image data when you save the file (in TIFF, ZIP is best compression, but not as compatible with other applications).

    3x4" @ 300 ppi @ 8 bits/channel CMYK == 4.3 Meg uncompressed
    Chris_Cox@adobeforums.com Guest

  5. #24

    Default Re: File Size



    If they're just proofs, PDF them.




    Like graffiti said, if all you are sending is something for them to preview on their monitor, there is no reason to send them all the data.

    Provided that they understand that the file you send it ONLY for proofing purposes.

    Just send them enough pixels to fill the screen nicely and in RGB (which will save file size).

    I they are the same people that need to print the file, or redistribute it to a printer, well, that is a different story.
    John_Slate@adobeforums.com Guest

  6. #25

    Default Re: File Size

    John,

    More concise than that there's nothing.
    Ramón_G_Castañeda@adobeforums.com Guest

  7. #26

    Default Re: File Size

    Ok you guys. Thanks for your help.
    Kim_Lucich@adobeforums.com Guest

  8. #27

    Default File size

    How do I obtain file size of specific documents and output it dynamically
    without using CFDIRECTORY tag and NOT comparing each file from the list with
    the files in the SELECT query ? I would like to output only the file sizes from
    my SELECT query, but I dont need the whole directory list because I have too
    many documents to list and compare which slows down the server.:lips;

    ColdFusion007 Guest

  9. #28

    Default Re: File size

    Hmmm, that's usually the way I would do it. Any file manipulation I do usually
    runs through a database. As a result, I just query the information I want out
    of a database. One real funky kludge you could try to to allow directory
    indexing on the webserver, than to a cfhttp get to the directory index and
    parse the results.

    Or (this is probably the way I would do it) you could create a script in
    another language and use cfexecute. I'd typically use PERL for this since it's
    really good with directory and file manipulation.

    Hope this helps.

    Mike Greider Guest

  10. #29

    Default Re: File size

    Not sure if this is what you're looking for, but you could create a java File
    object to get the length. Something like the following:

    <cfscript>
    myFile = CreateObject("java", "java.io.File");
    myFile.init("C:\CFusionMX7\wwwroot\tests\my.cfm");
    </cfscript>

    <cfset fileLength = myFile.length()>

    <cfdump var="#fileLength#">

    HTH
    Ted Zimmerman


    tzimmerman Guest

  11. #30

    Default Re: File size

    Thx a lot Ted. This is what I was looking for. It works fine now and very fast.
    :beer;
    ColdFusion007 Guest

  12. #31

    Default file size

    If a webcam is used to stream video to FMS2, is the data encoded as flash video
    server-side or client side? In other words, if the Flash Player Settings
    Manager is used to take control of the camera, does the data stream as raw
    uncompressed video, is it encoded by the client's settings or is it streamed as
    an flv?

    ayton9 Guest

  13. #32

    Default Re: file size

    Flash player encodes input from camera using Sorenson spark codec and
    it is streamed as FLV. I am not very certain whether user has any
    control over the encoder settings. you may want to go through Flash 8,
    CS3 help documentations.


    -
    fmslove@gmail.com Guest

  14. #33

    Default Re: File size

    Specifically, if anything is rasterized. Vector images and text will probably not affect your file size at all from from low to high resolution, since they technically have no resolution.
    jonf@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139