Silverlight5 RC vector Printing

Source: Internet
Author: User

The difference is only a few codes in the red part. This means to set the attribute so that the printing service knows that it is printed in vector mode ..

// tests trying to force vector printing mode

private void PrintVectorForced_Click(object sender, RoutedEventArgs e)

{

PrintDocument doc = new PrintDocument();

doc.PrintPage += (s, ea) =>

{

StackPanel printPanel = new StackPanel();

Random rnd = new Random();

for (int i = 0; i < 30; i++)

{

TextBlock row = new TextBlock();

row.Opacity = (rnd.Next(3, 10)) / 10.0;

row.Text = "This is row " + i + " of the current page being printed. Opacity is " + row.Opacity;

printPanel.Children.Add(row);

}

ea.PageVisual = printPanel;

ea.HasMorePages = false;

};

PrinterFallbackSettings settings = new PrinterFallbackSettings();

settings.ForceVector = true;

settings.OpacityThreshold = 0.5;

doc.Print("Silverlight Forced Vector Print", settings);

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.