Click here to Skip to main content
15,949,686 members

Comments by Usha Sanjee (Top 47 by date)

Usha Sanjee 8-Feb-16 3:58am View    
I have answered that we can use conditional statments.But they need the result without any conditions.Is there predefined functions which checks the condition and return the result.
Usha Sanjee 25-Mar-15 23:44pm View    
public void Getdata()
{
org.pdfclown.documents.contents.fonts.StandardType1Font fnts=null;
FileStream streams=new FileStream("abc.pdf",FileMode.Create);
org.pdfclown.bytes. Stream pdfstream = new org.pdfclown.bytes. Stream (streams);
org.pdfclown.files.File pdf = new org.pdfclown.files.File();
org.pdfclown.documents.Page page = new org.pdfclown.documents.Page(pdf.Document);
pdf.Document.Pages.Add(page);
// fnts=new StandardType1Font(pdf, org.pdfclown.documents.contents.fonts.StandardType1Font.FamilyEnum.Times, false, false);

org.pdfclown.documents.contents.fonts.StandardType1Font fonts = new(pdf, org.pdfclown.documents.contents.fonts.StandardType1Font.FamilyEnum.Times, false, false);
org.pdfclown.documents.contents.composition.PrimitiveComposer composer=new org.pdfclown.documents.contents.composition.PrimitiveComposer(page);
org.pdfclown.documents.contents.composition.BlockComposer blockComposer = new org.pdfclown.documents.contents.composition.BlockComposer(composer);
//blockComposer.Begin( org.pdfclown.documents.contents Drawing. RectangleF (230, 400, 200, 200), composition. XAlignmentEnum .Left, composition. YAlignmentEnum .Top)
blockComposer.ShowText("This is Usha sanjee");
//composer.SetFont(subtitleFont, 20);
composer.SetFillColor( org.pdfclown.documents.contents.colorSpaces.DeviceRGBColor.Black);
blockComposer.ShowText("test");
blockComposer.End();
composer.Flush();
pdf.Save(pdfstream, org.pdfclown.files.SerializationModeEnum.Standard);


}


This is one of the code I have tried
Usha Sanjee 23-Sep-14 7:37am View    
Yes. But It didn't worked out.
Usha Sanjee 23-Sep-14 4:58am View    
I tried a lot to get out from it.But not able to find,so for last option I posted here,Now I'm going to redisgn the whole. Anyway Thanks.
Usha Sanjee 3-Sep-14 7:59am View    
yes In browser its showing empty page