TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Rangaraj jalla
NA
342
0
High qulity pdf create
Apr 1 2019 6:04 AM
Pdf genarated but pdf qulity missing. how to improve text qulity.
string result = Convert.ToBase64String(byteArray);
byte[] decBytes1 = Convert.FromBase64String(result);
context.Response.Buffer = true;
context.Response.Charset = "";
context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
if (fileName.Substring(fileName.IndexOf('.') + 1).ToLower() == "pdf")
{
context.Response.Buffer = true;
context.Response.Charset = "";
context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
context.Response.ContentType = "application/pdf";
context.Response.BinaryWrite(decBytes1);
context.Response.Flush();
context.Response.End();
}
Reply
Answers (
2
)
Developing an Employee ASP.NET MVC Base Application
Get annotation.hashMap values using itextsharp in C#