Bug 142429 - EPS images contain no color
Summary: EPS images contain no color
Status: RESOLVED FIXED
Alias: None
Product: kst
Classification: Applications
Component: general (show other bugs)
Version: 1.3.1
Platform: Fedora RPMs Linux
: NOR normal
Target Milestone: ---
Assignee: kst
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-03-03 00:29 UTC by Matthew Truch
Modified: 2007-03-12 21:27 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments
Proposed patch (451 bytes, patch)
2007-03-08 22:26 UTC, Andrew Walker
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Matthew Truch 2007-03-03 00:29:53 UTC
Version:           1.3.1 (using KDE KDE 3.5.5)
Installed from:    Fedora RPMs
OS:                Linux

It seems that eps images do not contain color when generated from kst.  They ought to.
Comment 1 Andrew Walker 2007-03-08 22:26:14 UTC
Created attachment 19914 [details]
Proposed patch
Comment 2 Andrew Walker 2007-03-12 21:27:11 UTC
SVN commit 641902 by arwalker:

BUG:142429 Add colour to EPS output

 M  +1 -0      kstviewwindow.cpp  


--- trunk/extragear/graphics/kst/src/libkstapp/kstviewwindow.cpp #641901:641902
@@ -264,6 +264,7 @@
       printer.setOrientation(QPrinter::Landscape);
       printer.setOutputToFile(true);
       printer.setOutputFileName(filenameNew);
+      printer.setColorMode(QPrinter::Color);
 
       KstPainter paint(KstPainter::P_PRINT);
       paint.begin(&printer);