Click here to Skip to main content
15,905,232 members

Comments by Sabari Karthik (Top 16 by date)

Sabari Karthik 11-Sep-14 10:09am View    
i cant able to understand @Wes Aday .please explain clearly beacuse am new to android development.
Sabari Karthik 22-Apr-14 8:37am View    
if i use this code
If {Tablename.Fieldname} = "Rupee" then (Totext({Tablename.Fieldname},"#,###.00") & ChrW(8360) means am getting only "Rp" symbol alone
Sabari Karthik 28-Jan-14 5:23am View    
Deleted
public void SaveImage(string imagePath, string savedName)
{
int width=100;
int height=100;
Image originalImage = Image.FromFile(imagePath);
string filePath = savedName;

if (width > 0 && height > 0)
{
Image.GetThumbnailImageAbort myCallback =
new Image.GetThumbnailImageAbort(ThumbnailCallback);
Image imageToSave = originalImage.GetThumbnailImage
(width, height, myCallback, IntPtr.Zero);

imageToSave.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);
}
else
{
originalImage.Save(filePath, System.Drawing.Imaging.ImageFormat.Jpeg);
}
}

This is the code which i altered to my reference.
Sabari Karthik 28-Jan-14 4:52am View    
while adding those images manually to word document means the doc size is 600KB-850KB & I can share the sample code how I used.
Sabari Karthik 28-Jan-14 4:39am View    
it works fine after clearing all temporary files.