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
Nihal Ahmed
1.6k
96
20.5k
Problem Coverting Panel to Image For Printing.
Feb 5 2014 3:13 AM
Hi friends ,
I am working windows forms. I have problem, my problems is, I am converting panel control to image for print, Panel controlcantain richtextbox. Image is proper convert. But
Image quality is poor and rich text box text is blurring I am using this code
which is given below
public void GetPrintArea(Panel pnl)
{
MemoryImage = new Bitmap(pnl.Width, pnl.Height);
Rectangle rect = new Rectangle(0, 0, pnl.Width, pnl.Height);
pnl.DrawToBitmap(MemoryImage, new Rectangle(0, 0, pnl.Width, pnl.Height));
pnl.Invalidate();
}
Friends Is any other way to convert panel to image with high quelity?.
Please help.
Reply
Answers (
1
)
Setting ValueMember of combobox
Problem Print Panel making word document.