[Uml-devel] [Bug 89553] what you see is not what you get when exporting to EPS

Pekka Jääskeläinen pjaaskel at cs.tut.fi
Mon Sep 20 07:27:00 UTC 2004


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
        
http://bugs.kde.org/show_bug.cgi?id=89553        




------- Additional Comments From pjaaskel cs tut fi  2004-09-20 16:14 -------
Sebastian Stein wrote:

> Have you tried the latest CVS HEAD version? I have tested it with png and
> eps and it works. Here are my changes:

Yes. It's CVS HEAD I tried. It did work for your resolution initially,
that's why I posted the samples how it looks like with my computer.

> +        if (isEPS == true)
> +        {
> +                printer = new QPrinter(QPrinter::PrinterResolution);
> +        } else {
> +                printer = new QPrinter(QPrinter::ScreenResolution);
> +        }

This is wrong. It doesn't lay out correctly for me. Colors are there
now, layout just is not working. It should be the other way around:

+        if (isEPS == true)
+        {
+                printer = new QPrinter(QPrinter::ScreenResolution);
+        } else {
+                printer = new QPrinter(QPrinter::PrinterResolution);
+        }




More information about the umbrello-devel mailing list