Lines size to less than 0,29cm?

It is possible to reduce the lines size to less than 0,29cm?

I don't know what the minimum is in centimeters but 0,29 sounds pretty close.
What is your goal? Why do you need/want it smaller?

Similar Messages

  • Why should texture size be less than power of 2?

    Hi!
    I just read in the packagerforiphone_devguide.pdf
    Make bitmaps in sizes that are close to, but less than, 2^n by 2^m bits. The dimensions do not have to be power of 2,
    but they should be close to a power of 2, without being larger. For example, a 31-by-15–pixel image renders faster
    than a 33-by-17–pixel image. (31 and 15 are just less than powers of 2: 32 and 16.) Such images also use memory
    more efficiently.
    can someone explain me this? As Gamedeveloper i'm used to have power of 2 textures. why should they be smaller than power of 2 instead of exactly power of 2?

    I have read that too, and it doesn't make sense. The article would have been a lot clearer if they had used 32x16 as the second example, instead of 33x17. Like you, I would almost expect advice that said to not exceed a power of 2, but it does't seem right to say that the exact power of 2 isn't recommended either.
    Hey, I just found an earlier passage that pretty well states that we're right, on page 34:
    "The GPU uses memory allocations that are powers of 2 for each dimension of the bitmap image. For example, the GPU can reserve memory in 512 x 1024 or 8 x 32 sizes. So a 9 x 15-pixel image takes up the same amount of memory as a 16 x 16-pixel image. For cached display objects, you may want to use dimensions that are close to powers of 2 (but not more) in each direction. For example, it is more efficient to use a 32 x 16-pixel display object than a 33 x 17-pixel display object."
    So there you go, a 32x16 bitmap does use less memory than a 33x17 bitmap.
    I think, or hope, that the later part was just making the point that you don't have to use exact powers of 2, but in doing so you want to not go over the power of 2. Hence using examples of 31x15 and 33x17. They didn't use 32x16 as an example because those are powers of 2, which wasn't what was being illustrated.

  • Input required - when line size exceeds more than 1023

    hi all,
    in my ouput i have to display 64 fields which exceeds the length of 1023. if i enter greater than this value it is showing syntax error like max line size is 1023.so what shall i do in this case.
    thanks,
    maheedhar.t

    Hi
    U have to split the line.
    If you show list created by yourself, it should be better to use the ALV functions, they'll automatically sets the layout in order to produce a list no longer than 1023 and the user can choose which fields to be hidden.
    If you needs to show all fields, u have to split the line and show the fields in several lines (perhaps 2 lines are enough).
    Max

  • Why can't I change line weight to less than 1pt?

    Suddenly, I am no longer able to make a line .25pt or .5pt. I can go thicker but not thinner than 1pt. What gives? I'm working in CC.

    Is the Align to Pixel Grid option turned on?

  • Archived redo log size more less than online redo logs

    Hi,
    My database size around 27 GB and redo logs sizes are 50M. But archive log size 11M or 13M, and logs are switching every 5-10min. Why?
    Regards
    Azer Imamaliyev

    Azer_OCA11g wrote:
    1) Almost all archive logs sizes are 11 or 13M.. But sometimes 30, 37M.
    2)
    select to_char(completion_time, 'dd.mm.yyyy HH24:MI:SS')
    from v$archived_log
    order by completion_time desc;
    10.02.2012 11:00:26
    10.02.2012 10:50:23
    10.02.2012 10:40:05
    10.02.2012 10:29:34
    10.02.2012 10:28:26
    10.02.2012 10:18:07
    10.02.2012 10:05:04
    10.02.2012 09:55:03
    10.02.2012 09:40:54
    10.02.2012 09:28:06
    10.02.2012 09:13:44
    10.02.2012 09:00:17
    10.02.2012 08:45:04
    10.02.2012 08:25:04
    10.02.2012 08:07:12
    10.02.2012 07:50:06
    10.02.2012 07:25:05
    10.02.2012 07:04:50
    10.02.2012 06:45:04
    10.02.2012 06:20:04
    10.02.2012 06:00:12
    3) There arent any serious change at DB level.. almost these messages show in alert log since creating DB..Two simple thoughts:
    1) Are you running with archive log compression - add the "compressed" column to the query above to see if the archived log files are compressed
    2) The difference may simply be a reflection of the number and sizes of the public and private redo threads you have enabled - when anticipating a log file switch Oracle leaves enough space to cater for threads that need to be flushed into the log file, and then doesn't necessarily have to use it.
    Here's a query (if you can run as SYS) to show you your allocation of public and private threads
    select
         PTR_KCRF_PVT_STRAND           ,
         FIRST_BUF_KCRFA               ,
         LAST_BUF_KCRFA                ,
         TOTAL_BUFS_KCRFA              ,
         STRAND_SIZE_KCRFA             ,
         indx
    from
         x$kcrfstrand
    ;Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    Author: <b><em>Oracle Core</em></b>

  • ORA-21560: while size is less than 1 GB for a CLOB variable

    Hi ,
    I use "DBMS_XSLPROCESSOR.CLOB2FILE' to write data from a CLOB variable (Oracle 10g) to TXT file in unix. I assumed that
    the clob can collect data of around 4 gb , but it is throwing the "Out of Range" error if the size exceeds
    22502381 bytes, which is not at all sufficient to my requirement. I want to collect around 3GB in the variable.
    Is it possible ? Please help
    2008-12-22 11:08 Error Occurred
    ORA-21560: argument 2 is null, invalid, or out of range
    Declare
    Xfile CLOB ;
    v_buffer VARCHAR2(32767);
    v_eol VARCHAR2(2);
    v_eollen PLS_INTEGER;
    c_maxline CONSTANT PLS_INTEGER := 32767;
    v_lines PLS_INTEGER := 0;
    v_dir          VARCHAR2(1000) := 'XXX/YYY' ;
    v_data_string VARCHAR2(32767) ;
    x integer ;
    Begin
    v_eol := CASE
    WHEN DBMS_UTILITY.PORT_STRING LIKE 'IBMPC%'
    THEN CHR(13)||CHR(10)
    ELSE CHR(10)
    END;
    v_eollen := LENGTH(v_eol);
    DBMS_LOB.CREATETEMPORARY(Xfile, TRUE);
    FOR r in ( Select desc1||'~'||desc2||.....desc30 AS csv from desc_t )
    Loop
    IF LENGTH(v_buffer) + v_eollen + LENGTH(r.csv) <= c_maxline THEN
    v_buffer := v_buffer || v_eol || r.csv;
    ELSE
    IF v_buffer IS NOT NULL THEN
    DBMS_LOB.WRITEAPPEND(
    v_file, LENGTH(v_buffer) + v_eollen, v_buffer || v_eol
    END IF;
    v_buffer := r.csv;
    END IF;
    v_lines := v_lines + 1;
    END LOOP;
    IF LENGTH(v_buffer) > 0 THEN
    DBMS_LOB.WRITEAPPEND(
    v_file, LENGTH(v_buffer) + v_eollen, v_buffer || v_eol
    END IF;
    DBMS_XSLPROCESSOR.CLOB2FILE(Xfile, v_dir, 'V_DESC,TXT');
    DBMS_LOB.FREETEMPORARY(v_file);
    Exception
    When Others Then
    dbms_output.put_line('Error '||v_lines||' --'||SQLERRM) ;
    dbms_output.put_line('Error '||dbms_lob.getlength(Xfile)) ;
    End ;
    Thanks

    Well, ORA-21560 could indicate file opening issue. Check the file name 'V_DESC,TXT'. Most likely your UNIX either does not allow commas in file name or requires them to be escaped. And anyway, I believe it is a typo and you meant 'V_DESC.TXT'.
    SY.

  • Creating Custom Page Size less than one inch

    I currently have Acrobat 6 on Windows XP, and it appears that I cannot set a custom page size less than one inch (Using Printer Preferences). Is there another method I can use to create a PDF from Publisher that has a page size less than one inch? If not, would updating to Acrobat 9 allow me to print to a custom page size of less than one inch?

    Thanks Peggy,
    I tried deleting the preference file and restarting Pages but I still have the same problem with the custom page size. When I start Pages I am presented with a bunch of templates so I choose Blank then I go through my procedure to select the custom page size that I created and always end up back at an A4 document.
    I have used the demo version of Stone Create to do what I needed to do with the small page size (ie. create a small ad) but it is a pain that I paid for Pages and now will need to buy something like Stone Create to do what I need. Although, that said, having used Stone Create for this little ad I must say that for the price it seems like a pretty decent program that will do a whole lot of the desktop publishing type of functions without the rather steep prices of the Adobe products. I kind of wish I had bought this program instead of Pages now.
    Cheers,
    Graham

  • Chart Lines Dissapearing When Line Width Less than .38pt

    I have a Line Chart with about 70 different series. As you can imagine, it gets pretty crowded. In SQL server 2005, I was able to set the line width to .25pt, but when I try to do the same in 2012, the lines disappear! The smallest line width that I can
    get to show up is .38.....If anyone out there knows why this happens, I would really appreciate a hint. I've tried everything from messing with the markers to the empty point settings...
    Thanks

    Hi Scott,
    I am able to reproduce your scenario that when the line width with less than or equal to 0.375pt, they will all disappear in the line chart in my test environment. Based on my research, it seems to be the particular render extensions which cannot display
    the narrow lines in line chart. However, if we export the report into PDF, the all lines which narrow than 0.375pt will appear in the report. I think this is by design.
    I would suggest you submitting a wish at
    https://connect.microsoft.com/SQLServer/Feedback. 
    Connect site is a connection point between you and Microsoft, and ultimately the larger community. Your feedback enables Microsoft to make software and services the best that they can be, and you can learn about and contribute to exciting projects.
    Thank you for your understanding.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • LINE-SIZE 132 / 255 / ???!

    Hi Experts,
    I need to develop a Classic Report.
    But, it has 18 ( columns which does hv more characters i.e. fileds like, KUNNR, MATNR, VBELN, EBELN,BUKRS,ERNAM, ERDAT) columns and the Functional team said that, the report shuld come in print out!
    So,
    1- How much I need to specify the LINE-SIZE in the report statement, either its 255 or 132 oe else other number to get all data in print out?
    2- Next times, How can I build a relationship btween the total characters of the List Header and the number of characters per a Page, to accombidate in the page for printing?
    ThanQ.
    Message was edited by:
            Srinivas

    Hi,
    If you want the report to be printable, then lize-size should be less than 132.
    See what SAP says about line zise.
    <b>LINE-SIZE</b> - Creates a report with col columns per line.
    If the LINE-SIZE specification is missing, the line length corresponds to the current screen width. The system field SY-LINSZ contains the current line size for generating lists. The maximum width of a list is 1023 characters. <b>You should keep lists to the minimum possible size to improve useability and performance (recommendation: LINE-SIZE < 132).</b> For very wide lists (LINE-SIZE > 255), you should consult the notes for using LINE-SIZE
    <b>greater than 255.</b>
    <u>Notes</u>
    The specified LINE-SIZE must not appear in quotation marks.
    <b><u><i>If the you want the report list (i.e. the output) to be printable, do not define a LINE-SIZE with a value greater than 132 because most printers cannot handle wider lists</i></u>.</b>
    You cannot print lists wider than 255 characters at all using the standard print functions. To print the contents of the lists, you need to write a special print routine that arranges the data in shorter lines (for example, using the PRINT ON addition in the NEW-PAGE statement.
    Check out this list for more information.
    http://help.sap.com/saphelp_46c/helpdata/en/34/8e73806df74873e10000009b38f9b8/frameset.htm
    Let me know if you need any other information.
    Regards,
    RS

  • Hi ,Maximum line size in the report

    What is the maximum line size inthe report.Some are saying 1023.Some are saying 255 characters.I am full confusing this concept.
    And if the line size mentiones in less than the length of the data in the write statement ,what happened?
    Sometimes it is coming in the next line , sometimes it is coming in the next line
    Please anyone provide the solutin

    hi,
    The line width determines the number of characters in the line buffer as well as the number of columns in the list displayed. The value width must be a positive numeric literal. The maximum line width is 1,023 characters.
    When the LINE-SIZE is not specified, the line width of the basic list is set to a standard width based on the window width of the current Dynpro, but is at least as wide as a standard size SAP window. For the standard width, the contents of sy-linsz is 0. The LINE-SIZE overwrites the value of the like-named LINE-SIZE addition to the statement SUBMIT and can be overwritten during list creation with the like-named LINE-SIZE addition to the statement NEW-PAGE.
    For screen lists, you should use the standard value since, as a rule, page breaks defaulted through LINE-COUNT are not adjusted to the window size.
    You should also use the standard value for print lists, so that you can still select the page size on a printer-specific basis. A print list should be created in such a way so that it can handle every page size.
    Specifying a fixed line count is only useful for form-type lists with a fixed page layout. Here, however, you should always check whether such forms can be created by other means, such as SAPScript forms.
    when line size is more than your data... your ouput screen will be dragging after all your output display..So bettery ou should use the standard value .
    Regards,
    Muhammed Safel

  • After system copy new system size is leeer than old system

    Hii,
    Our client system is upgrading now. So Production BW system copy is done to new system.
    New system size is lesser than the Production system.
    Could any one let me know why this was happen. All the available in production BW is availalable in New system then also the new system size is less.
    Regards,
    sharma.

    Usually when you delete data from a table , the table space will not get released- you will have to run a reorg on the database so that the additional space gets released.... if you do the same on the production system then the spaces should get aligned.  Also run BRCONNECT on the copy as well so that everything is in line.
    Arun

  • How to configure an image to specific parameters.  Needed: no more than 1200 pixels on long side   jpeg format   no less than 5 mb.  Image will be viewed on large standup screen.(original image is 22 mb)

    I often have requests for images to be sent within certain parameters:  such as "no longer than 1200 pixels on longest side + jpeg format + file size no less than 5 mb."  Images will be viewed on a large stand up screen.  My original image sizes are usually around 22 mb.  When I use Export and specify 1200 pixels (quality setting is all the way over to 12), Save the file to a folder on the desktop, and then open the image in Preview, Inspector shows that the file size is now 233 KB.  How do I meet all specifications without reducing the image size so drastically?
    Thank you.

    . Pardon, it reduced it down to 833 KB, not 233 (I mixed it up with another image) from the Original image of 22 MB, RAW.  Should it reduce it down that much??
    That will depend on the amount of of detail in your jpeg. Given a certain pixels size and level of quality, a jpeg with many details will require a larger filesize than a jpeg with large plain regions of constant color.
    Is 833 KB a big enough file size to view on a big screen?
    The file size is really unimportant for the quality. What will count is the pixel size and jpeg quality you set. What is the pixel size of the large screen? That should match the pixel size you are using in your export preset. 1200 longest dimension is extremely unlikely for a large screen. Even the 17" display of my MacBook Pro has a larger pixelsize of 1920x1200.
    I am sharing William Lloyd's doubts, that the specifications you were given are correct.  I'd try to export with a larger pixelsize and a high jpeg quality - perhaps 10.
    If you export with 10 Megapixel  and a good jpeg quality, you will probably get a 5MB file, not that the size should matter.

  • IPhone4 stores only less than 3GB of photos/videos

    Hello All,
    I have a 16GB iphone4, I now realised that it stores only less than 3 GB worth photos/videos (HD) and then says that there is no more space left.
    When I check through iTunes it says 12.3 GB of photos, 1.17 GB apps and 0.06 GB Others, and nothing free...
    But when I copy this to my machine the folder size is less than 3 GB -:(
    Should it not be able to store much more ?
    Once I had 120 photos + videos
    and another time 75 photos + videos...
    I know the length of the videos matter, but again the storage in size should be much more than 3 GB, right ?
    Any information is appreciated !!
    Thanks in Advance !!
    Best
    Naresh
    PS - I am at the moment upgrading the OS to see if that helps

    please ignore this question, Iguess I had created another library in the phone which I had forgotten about.
    Thanks for reading !!

  • The initial heap size must be less than or equal to the maximum heap size.

    All,
    Please help!!
    I have tested my Application Client Project in WSAD on my pc and it works fine.
    I have 1gb RAM on my pc. When I deploy the same app on another xp pc(same as mine but 512mb RAM) I get a heap size error. Here is the exact error:
    Incompatible initial and maximum heap sizes specified:
    initial size: 268435456 bytes, maximum heap size: 267380736 bytes
    The initial heap size must be less than or equal to the maximum heap size.
    The default initial and maximum heap sizes are 4194304 and 267380736 bytes.
    Usage: java [-options] class [args...]
    (to execute a class)
    or java -jar [-options] jarfile [args...]
    (to execute a jar file)
    where options include:
    -cp -classpath <directories and zip/jar files separated by ;>
    set search path for application classes and resources
    -D<name>=<value>
    set a system property
    -verbose[:class|gc|jni]
    enable verbose output
    -version print product version
    -showversion print product version and continue
    -? -help print this help message
    -X print help on non-standard options
    Could not create the Java virtual machine.
    Press any key to continue . . .
    Here is the batch file that runs my app:
    @echo off
    SET appClientEar=C:\corp\apps\mts\jars\MTSClientEAR.ear
    set JVM_ARGS=-Xms256M -Xmx256M
    set CLIENT_PROPS=C:\corp\apps\mts\jars\medicalclient.properties
    set APP_ARGS=
    call C:\bnsf\IBM\WebSphere\AppClient\bin\launchClientBNSF.bat "%JVM_ARGS%" %appClientEar% "-CCpropfile=%CLIENT_PROPS%" %APP_ARGS%
    @pause
    I have changed the value of Xms and Xmx of JVM_ARGS to different size but I sitll get error. Anyone knows what the problem is. Thanks..

    Don't know why, but the "maximum heap size: 267380736 bytes" value is just slightly less than 256*1024*1024, wheras the reported initial size is equal to that.
    Try setting the initial value to 255MB.

  • MY new Ipod Nano does not hold a charge.  I use it mostly as a watch, perhaps look at it 5 or 6 times in 8 hours, and leave it in sleep mode the rest of the time.  I drains to the red line in less than 2 days.  My husband's nano will last a week this way.

    MY new Ipod Nano does not hold a charge.  I use it mostly as a watch, perhaps look at it 5 or 6 times in 8 hours, and leave it in sleep mode the rest of the time.  I drains to the red line in less than 2 days.  My husband's nano will last a week this way.  I thought it drained because of looking at photos, so I quit looking at them and it made no difference.  Am I doing something incorrectly to cause this short battery life?

    You are still under warranty if your iPod is "new."  Take full advantage of it by either calling iPod tech support, Apple Care if you have it or take it in to an Apple store or an AASP.  Whichever is more convenient for you.

Maybe you are looking for

  • AFTER UPGRADING TO MOUNTAIN LION IMAC WON'T SHUT OFF

    I have upgrade to mountain lion and update to 10.8.1 but it seems that sometimes (enough times to make me seek for help) safari won't respond . Moreover itunes refuses to turn its self off when I want to restart the computer. Any ideas what is going

  • How can I access file on a non-booting SSD with terminal?

    I have a new MacBook air that hangs on boot-up.  I can restore from a Time Machine back up, but it is a day old and I would like to recover work I did today off the hard drive before restoring, if possible.  Apple support tells me that this should be

  • Searching text on Safari doesnt work on Text Area

    When i'm searching some codes on wordpress theme editor, the text searching on Safari don't work on text area...

  • Control User Prop

    Hi, I was fixing defects for Siebel Wireless and Came across a Applet where Control User Prop is Set with "Keep Context" to Y. I changed itss value to "N" and got my defect fixed. However I wanted to know from where can we find out what are valid "Co

  • CRM Fiori Apps - My Leads, My Opportunity - some fields not editable

    Hi, In CRM MyLeads and My Opportunities, display part is working fine. We are able to get the list of Opportunities and Leads. But when I try to Edit a Lead or an Opportunity, I am not able to type in anything to the "Name " field and in Leads even w