SourceForge logo
SourceForge logo
Menu

matplotlib-devel — matplotlib developers

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
(1)
Nov
(33)
Dec
(20)
2004 Jan
(7)
Feb
(44)
Mar
(51)
Apr
(43)
May
(43)
Jun
(36)
Jul
(61)
Aug
(44)
Sep
(25)
Oct
(82)
Nov
(97)
Dec
(47)
2005 Jan
(77)
Feb
(143)
Mar
(42)
Apr
(31)
May
(93)
Jun
(93)
Jul
(35)
Aug
(78)
Sep
(56)
Oct
(44)
Nov
(72)
Dec
(75)
2006 Jan
(116)
Feb
(99)
Mar
(181)
Apr
(171)
May
(112)
Jun
(86)
Jul
(91)
Aug
(111)
Sep
(77)
Oct
(72)
Nov
(57)
Dec
(51)
2007 Jan
(64)
Feb
(116)
Mar
(70)
Apr
(74)
May
(53)
Jun
(40)
Jul
(519)
Aug
(151)
Sep
(132)
Oct
(74)
Nov
(282)
Dec
(190)
2008 Jan
(141)
Feb
(67)
Mar
(69)
Apr
(96)
May
(227)
Jun
(404)
Jul
(399)
Aug
(96)
Sep
(120)
Oct
(205)
Nov
(126)
Dec
(261)
2009 Jan
(136)
Feb
(136)
Mar
(119)
Apr
(124)
May
(155)
Jun
(98)
Jul
(136)
Aug
(292)
Sep
(174)
Oct
(126)
Nov
(126)
Dec
(79)
2010 Jan
(109)
Feb
(83)
Mar
(139)
Apr
(91)
May
(79)
Jun
(164)
Jul
(184)
Aug
(146)
Sep
(163)
Oct
(128)
Nov
(70)
Dec
(73)
2011 Jan
(235)
Feb
(165)
Mar
(147)
Apr
(86)
May
(74)
Jun
(118)
Jul
(65)
Aug
(75)
Sep
(162)
Oct
(94)
Nov
(48)
Dec
(44)
2012 Jan
(49)
Feb
(40)
Mar
(88)
Apr
(35)
May
(52)
Jun
(69)
Jul
(90)
Aug
(123)
Sep
(112)
Oct
(120)
Nov
(105)
Dec
(116)
2013 Jan
(76)
Feb
(26)
Mar
(78)
Apr
(43)
May
(61)
Jun
(53)
Jul
(147)
Aug
(85)
Sep
(83)
Oct
(122)
Nov
(18)
Dec
(27)
2014 Jan
(58)
Feb
(25)
Mar
(49)
Apr
(17)
May
(29)
Jun
(39)
Jul
(53)
Aug
(52)
Sep
(35)
Oct
(47)
Nov
(110)
Dec
(27)
2015 Jan
(50)
Feb
(93)
Mar
(96)
Apr
(30)
May
(55)
Jun
(83)
Jul
(44)
Aug
(8)
Sep
(5)
Oct
Nov
(1)
Dec
(1)
2016 Jan
Feb
Mar
(1)
Apr
May
Jun
(2)
Jul
Aug
(3)
Sep
(1)
Oct
(3)
Nov
Dec
2017 Jan
Feb
(5)
Mar
Apr
May
Jun
Jul
(3)
Aug
Sep
(7)
Oct
Nov
Dec
2018 Jan
Feb
Mar
Apr
May
Jun
Jul
(2)
Aug
Sep
Oct
Nov
Dec
S M T W T F S
1
(3)
2
(7)
3
(5)
4
(1)
5
(36)
6
(36)
7
8
(7)
9
(23)
10
(24)
11
(6)
12
(16)
13
(34)
14
(5)
15
16
(34)
17
(25)
18
(13)
19
(26)
20
(64)
21
(26)
22
(20)
23
(10)
24
(24)
25
(23)
26
(13)
27
(15)
28
(1)
29
(4)
30
(9)
31
(9)




Showing 24 results of 24

From: Michael D. <md...@st...> - 2007年07月10日 20:21:00
Actually, it just occurred to me that you could use 'defs' and 'use' to 
define characters as paths and reuse them. And that's something that 
works today in virtually any SVG renderer.
It totally blitzes the logical representation of the text (i.e. 
searching and copying as text etc.), but if it was only done for math 
text, then that's probably not a big deal. IMHO, math text is where 
matching the exact font is most important, where a reasonable substitute 
is often not installed, and where searching doesn't make a lot of 
sense. In any case, editing the SVG in something like Inkscape will be 
harder, since the text has become raw paths.
Thanks to ft2font, it was fairly easy to get outlines of math characters 
embedded in the SVG file. I've put up an example mathtext_demo.py SVG here:
 ftp://ftp.stsci.edu/tmp/mdroe/mathtext_demo.svg
I'll commit this code once it's cleaned up and better tested etc. if 
it's agreed this is something we want to do. I think in any case this 
should be optional -- it gives the file some portability at the expense 
of editability.
Cheers,
Mike
Carl Worth wrote:
> On 2007年7月10日 13:43:49 -0400, Michael Droettboom wrote:
> 
>> "major SVG renderers" support seems to be the issue at first glance.
>> None of the big open source options -- Firefox, inkscape, rsvg -- seem
>> to support it.
>> 
>
> That's my understanding as well.
>
> 
>> Until there's something readily available to test with, there's probably
>> not much point.
>> 
>
> It's a classic chicken-and-egg. I know the cairo-svg maintainer is
> hoping to add SVGFont stuff to cairo's SVG output to try to boostrap
> past this problem.
> 
From: Michael D. <md...@st...> - 2007年07月10日 19:25:15
Jouni K. Seppänen wrote:
> "John Hunter" <jd...@gm...> writes:
>
> 
>> On 7/10/07, Michael Droettboom <md...@st...> wrote:
>> 
> I'm seeing a bug on OS X, whose file system is by default
> case-preserving but not case-sensitive:
>
> 458 -> fontdictObject = self.embedTTF(
> 459 filename, self.used_characters[filename])
>
> Here self.used_characters has a key starting with '/Users/jks/...' but
> filename is '/users/jks/...'. I'm not sure how to fix this cleanly. 
> I though os.path.normcase would help, but it doesn't:
>
> 
Thanks for that. The Ps backend has the same problem. I'll do a little 
research and see what a common solution to this might be.
Cheers,
Mike
From: <jk...@ik...> - 2007年07月10日 19:20:08
"John Hunter" <jd...@gm...> writes:
> On 7/10/07, Michael Droettboom <md...@st...> wrote:
>
>> The comparison is just over the PDF files, old way (Truetype embedding)
>> vs. new way (Type 3 subsetting).
>
> This must be dominated by some weird outliers. I'm seeing great
> results with the canonical "simple_plot"
>
> -rw-r--r-- 1 johnh research 19352 Jul 10 12:11 new.ps
> -rw-r--r-- 1 johnh research 144227 Jul 10 12:11 old.ps
Probably the difference is just that you are comparing PS files while
Michael was comparing PDF files, where the internal gzip compression
reduces the file size. Even in PDF files you can get large gains if you
use several different fonts (which can easily happen with math formulas)
or you have very big fonts (such as some fonts that come with Mac OS X).
I'm seeing a bug on OS X, whose file system is by default
case-preserving but not case-sensitive:
458 -> fontdictObject = self.embedTTF(
459 filename, self.used_characters[filename])
Here self.used_characters has a key starting with '/Users/jks/...' but
filename is '/users/jks/...'. I'm not sure how to fix this cleanly. 
I though os.path.normcase would help, but it doesn't:
>>> normcase('/users'); normcase('/Users')
'/users'
'/Users'
> In any case, excellent work!
Yes, very good! This is a much-needed feature for the PS and PDF
backends.
-- 
Jouni K. Seppänen
http://www.iki.fi/jks
From: Eric F. <ef...@ha...> - 2007年07月10日 19:07:11
Michael Droettboom wrote:
> Eric Firing wrote:
>> I second that! I greatly appreciate your contributions, first in 
>> chasing down memory leaks and now in reducing file sizes by embedding 
>> fonts.
> It's been fun.
Mike,
Good--what's next? You're ready for more fun, I hope. If you are 
looking for brain-benders, I know of two bugs lurking deep in extension 
code (one in cntr.c, the other in the Agg quadmesh rendering) that have 
completely eluded me. There is also a bug in the Agg image rendering 
that shows up at high magnification. If you are interested in grand 
strategy, let's discuss what a suitable target might be--maybe some 
refactoring and consolidation of backend code to reduce duplication, and 
make optimizations applicable to all (referring to recent work by 
Allan). A related idea that has been languishing is to consolidate the 
various image-like functionality, again so as to make maximum use of the 
different optimizations and options that are now spread among different 
functions. John probably has better ideas about what to attack.
> 
> Now, Eric, I'm just waiting for you to tell me how this latest batch 
> reveals another bug on Ubuntu ;) (with all due respect to Ubuntu)
So, you use RHEL4 at work and ubuntu at home; has the former actually 
managed to put together a set of relatively bug-free versions of gui 
toolkits and other libraries? Or is it a choice between old bugs and 
newer bugs? Given all the different constantly-changing libraries, 
compilers, etc. involved in something like mpl, I am sometimes amazed 
that it works at all--and worried that at any moment it may cease to work.
Eric
> 
> Cheers,
> Mike
From: <jk...@ik...> - 2007年07月10日 18:45:24
Darren Dale <dd...@co...> writes:
>> > svn: PROPFIND of '/svnroot/matplotlib/trunk/matplotlib': Could not
>> > resolve hostname `svn.sourceforge.net': Host not found
>>
>> I've been experiencing this since yesterday, and was waiting to see if
>> it clears up by today...
>
> I ended up checking out the entire repository again. It seems that the working 
> address is now matplotlib.svn.sourceforge.net/svn/matplotlib, instead of 
> svn.sourceforge.net/svn/matplotlib.
Yes, here is the announcement with some instructions from
sourceforge.net:
https://sourceforge.net/docs/E09#notice
-- 
Jouni K. Seppänen
http://www.iki.fi/jks
From: Michael D. <md...@st...> - 2007年07月10日 18:13:58
Eric Firing wrote:
> I second that! I greatly appreciate your contributions, first in 
> chasing down memory leaks and now in reducing file sizes by embedding 
> fonts.
It's been fun.
Now, Eric, I'm just waiting for you to tell me how this latest batch 
reveals another bug on Ubuntu ;) (with all due respect to Ubuntu)
Cheers,
Mike
From: Eric F. <ef...@ha...> - 2007年07月10日 18:08:43
John Hunter wrote:
> On 7/10/07, Michael Droettboom <md...@st...> wrote:
> 
>> The comparison is just over the PDF files, old way (Truetype embedding)
>> vs. new way (Type 3 subsetting).
[...]
> 
> In any case, excellent work!
> 
> JDH
> 
Mike,
I second that! I greatly appreciate your contributions, first in 
chasing down memory leaks and now in reducing file sizes by embedding fonts.
Eric
From: Carl W. <cw...@cw...> - 2007年07月10日 17:50:49
On 2007年7月10日 13:43:49 -0400, Michael Droettboom wrote:
> "major SVG renderers" support seems to be the issue at first glance.
> None of the big open source options -- Firefox, inkscape, rsvg -- seem
> to support it.
That's my understanding as well.
> Until there's something readily available to test with, there's probably
> not much point.
It's a classic chicken-and-egg. I know the cairo-svg maintainer is
hoping to add SVGFont stuff to cairo's SVG output to try to boostrap
past this problem.
-Carl
From: Michael D. <md...@st...> - 2007年07月10日 17:44:03
John Hunter wrote:
> On 7/10/07, Michael Droettboom <md...@st...> wrote:
>> Has anyone looked into embedding fonts in SVG files?
>
> It's definitely come up before. Paul Barret may have had a look at
> it. I'm not sure why we ended up not doing it. You can search the
> archives if you are interested. If it isn't too hard, and major SVG
> renderers support it, it seems like a great idea.
"major SVG renderers" support seems to be the issue at first glance. 
None of the big open source options -- Firefox, inkscape, rsvg -- seem 
to support it. Please let me know if I'm missing something. Firefox 
has even pushed SVG fonts off of the Firefox 3 timeline:
http://weblogs.mozillazine.org/tor/archives/2007/03/svg_priorities_in_firefox_3.html
Until there's something readily available to test with, there's probably 
not much point.
Cheers,
Mike
From: John H. <jd...@gm...> - 2007年07月10日 17:34:36
On 7/10/07, Michael Droettboom <md...@st...> wrote:
> Has anyone looked into embedding fonts in SVG files? That might
> alleviate some of the installation problems that were recently mentioned
> on the matplotlib-users list.
>
> The relevant spec:
>
> http://www.w3.org/TR/SVG11/fonts.html
>
> If there are no plans under way, I may have a crack at it, since I'm
> sort of on an "embedding fonts" kick lately anyway... ;)
It's definitely come up before. Paul Barret may have had a look at
it. I'm not sure why we ended up not doing it. You can search the
archives if you are interested. If it isn't too hard, and major SVG
renderers support it, it seems like a great idea.
JDH
From: John H. <jd...@gm...> - 2007年07月10日 17:18:37
On 7/10/07, Michael Droettboom <md...@st...> wrote:
> The comparison is just over the PDF files, old way (Truetype embedding)
> vs. new way (Type 3 subsetting).
> The ratios are different because I chose to highlight the examples that
> are quite "texty". That wasn't a deliberate attempt to mislead, it's
> just because this change is related to fonts. Most of the other
> examples use a single font, and the plotting content itself dominates
> file size.
This must be dominated by some weird outliers. I'm seeing great
results with the canonical "simple_plot"
johnh@flag:examples> python simple_plot.py -dPS
johnh@flag:examples> mv simple_plot.ps new.ps
johnh@flag:examples> PYTHONPATH=/my/old/site-packages python simple_plot.py -dPS
johnh@flag:examples> mv simple_plot.ps old.ps
johnh@flag:examples> ls -l old.ps new.ps
-rw-r--r-- 1 johnh research 19352 Jul 10 12:11 new.ps
-rw-r--r-- 1 johnh research 144227 Jul 10 12:11 old.ps
Though for some reason my 90.1 install is picking up Vera Serif and my
svn install is picking up Vera Sans., which is mysterious but
unrelated to your work
In any case, excellent work!
JDH
From: Michael D. <md...@st...> - 2007年07月10日 17:15:40
Has anyone looked into embedding fonts in SVG files? That might 
alleviate some of the installation problems that were recently mentioned 
on the matplotlib-users list.
The relevant spec:
http://www.w3.org/TR/SVG11/fonts.html
If there are no plans under way, I may have a crack at it, since I'm 
sort of on an "embedding fonts" kick lately anyway... ;)
Cheers,
Mike
From: Michael D. <md...@st...> - 2007年07月10日 15:51:12
John Hunter wrote:
> On 7/10/07, Michael Droettboom <md...@st...> wrote:
>>
>> fonts_demo_kw.py: 201744 -> 37326
>> mathtext_demo.py: 129306 -> 26179
>> unicode_demo.py: 45303 -> 20084
>> over all demos in backend_driver.py: 5856001 -> 3390460
>
> When you say "over all demos" do you mean just over the PS or PDF
> depending on which you are testing? I'm a bit confused because the
> single examples you show show between a 5 and 20 fold improvement, but
> the overall number is less than 2 fold. So I wonder if you are
> including the other backend driver PNG, SVG, etc... output.... Just
> curious.
The comparison is just over the PDF files, old way (Truetype embedding) 
vs. new way (Type 3 subsetting). 
The ratios are different because I chose to highlight the examples that 
are quite "texty". That wasn't a deliberate attempt to mislead, it's 
just because this change is related to fonts. Most of the other 
examples use a single font, and the plotting content itself dominates 
file size.
Cheers,
Mike
From: John H. <jd...@gm...> - 2007年07月10日 15:37:35
On 7/10/07, Michael Droettboom <md...@st...> wrote:
> I just committed changes that add TTF subsetting to the PDF backend. It
> is completely analogous to the font subsetting recently added to the PS
> backend.
>
> I have added a configuration option, pdf.fonttype, to choose either
> "Type3" or "Truetype" font output. This may be removed in the future
> once the "Type3" stuff has been sufficiently tested.
>
> Some results:
>
> fonts_demo_kw.py: 201744 -> 37326
> mathtext_demo.py: 129306 -> 26179
> unicode_demo.py: 45303 -> 20084
> over all demos in backend_driver.py: 5856001 -> 3390460
When you say "over all demos" do you mean just over the PS or PDF
depending on which you are testing? I'm a bit confused because the
single examples you show show between a 5 and 20 fold improvement, but
the overall number is less than 2 fold. So I wonder if you are
including the other backend driver PNG, SVG, etc... output.... Just
curious.
JDH
From: Michael D. <md...@st...> - 2007年07月10日 15:17:41
I just committed changes that add TTF subsetting to the PDF backend. It 
is completely analogous to the font subsetting recently added to the PS 
backend.
I have added a configuration option, pdf.fonttype, to choose either 
"Type3" or "Truetype" font output. This may be removed in the future 
once the "Type3" stuff has been sufficiently tested.
Some results:
fonts_demo_kw.py: 201744 -> 37326
mathtext_demo.py: 129306 -> 26179
unicode_demo.py: 45303 -> 20084
over all demos in backend_driver.py: 5856001 -> 3390460
The differences aren't as dramatic as with Postscript, but IMHO they are 
still large enough to be worthwhile.
Again, please help by testing with your own favorite PDF tools.
Gory details about composite characters follow -->
In this new code, composite characters (such as a character composed of 
a letter and an accent) aren't handled as they should be. According to 
the PDF spec, a PDF-1.2 (Acrobat 3.x) Type 3 font can reference other 
glyphs with the "Do" command, to avoid duplicating the components of a 
composite glyph. I was able to get this to work with Acrobat 7, but 
xpdf-3.0 and ggv 2.8.0 both choked on the file. Therefore, I decided to 
err on the side of compatibility by including each component of a 
composite character inline where it is used. This makes the PDF files 
larger than they would otherwise have to be. However, it should only be 
a real problem if a plot contains an inordinate amount of different 
accented characters.
Cheers,
Mike
From: Nils W. <nw...@ia...> - 2007年07月10日 15:15:17
John Hunter wrote:
> On 7/10/07, Darren Dale <dd...@co...> wrote:
>
> 
>> I ended up checking out the entire repository again. It seems that the working
>> address is now matplotlib.svn.sourceforge.net/svn/matplotlib, instead of
>> svn.sourceforge.net/svn/matplotlib.
>> 
>
>
> Nothing is working for me
>
> -bash-2.05b$ cd python/svn/
> -bash-2.05b$ svn co
> http://matplotlib.svn.sourceforge.net/svn/matplotlib
> --username=jdh2358 --password=mypasswd
> svn: PROPFIND request failed on '/svn/matplotlib'
> svn: PROPFIND of '/svn/matplotlib': 405 Method Not Allowed
> (http://matplotlib.svn.sourceforge.net)
> -bash-2.05b$ svn co
> https://matplotlib.svn.sourceforge.net/svn/matplotlib
> --username=jdh2358 --password=mypasswd
> svn: PROPFIND request failed on '/svn/matplotlib'
> svn: PROPFIND of '/svn/matplotlib': 405 Method Not Allowed
> (https://matplotlib.svn.sourceforge.net)
> -bash-2.05b$ svn co
> https://matplotlib.svn.sourceforge.net/svn/matplotlib svn: PROPFIND
> request failed on '/svn/matplotlib'
> svn: PROPFIND of '/svn/matplotlib': 405 Method Not Allowed
> (https://matplotlib.svn.sourceforge.net)
> -bash-2.05b$ svn co
> https://svn.sourceforge.net/svnroot/matplotlib/trunk matplotlib
> svn: PROPFIND request failed on '/svnroot/matplotlib/trunk'
> svn: PROPFIND of '/svnroot/matplotlib/trunk': Could not resolve
> hostname `svn.sourceforge.net': Host not found
> (https://svn.sourceforge.net)
>
> Can you see anything wrong with what I am doing?
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
> 
svn co
https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/trunk/matplotlib
works for me.
Nils
 
From: John H. <jd...@gm...> - 2007年07月10日 15:13:41
On 7/10/07, Darren Dale <dd...@co...> wrote:
> I ended up checking out the entire repository again. It seems that the working
> address is now matplotlib.svn.sourceforge.net/svn/matplotlib, instead of
> svn.sourceforge.net/svn/matplotlib.
Nothing is working for me
-bash-2.05b$ cd python/svn/
-bash-2.05b$ svn co
http://matplotlib.svn.sourceforge.net/svn/matplotlib
--username=jdh2358 --password=mypasswd
svn: PROPFIND request failed on '/svn/matplotlib'
svn: PROPFIND of '/svn/matplotlib': 405 Method Not Allowed
(http://matplotlib.svn.sourceforge.net)
-bash-2.05b$ svn co
https://matplotlib.svn.sourceforge.net/svn/matplotlib
--username=jdh2358 --password=mypasswd
svn: PROPFIND request failed on '/svn/matplotlib'
svn: PROPFIND of '/svn/matplotlib': 405 Method Not Allowed
(https://matplotlib.svn.sourceforge.net)
-bash-2.05b$ svn co
https://matplotlib.svn.sourceforge.net/svn/matplotlib svn: PROPFIND
request failed on '/svn/matplotlib'
svn: PROPFIND of '/svn/matplotlib': 405 Method Not Allowed
(https://matplotlib.svn.sourceforge.net)
-bash-2.05b$ svn co
https://svn.sourceforge.net/svnroot/matplotlib/trunk matplotlib
svn: PROPFIND request failed on '/svnroot/matplotlib/trunk'
svn: PROPFIND of '/svnroot/matplotlib/trunk': Could not resolve
hostname `svn.sourceforge.net': Host not found
(https://svn.sourceforge.net)
Can you see anything wrong with what I am doing?
From: Darren D. <dd...@co...> - 2007年07月10日 14:47:08
On Tuesday 10 July 2007 10:05:40 am John Hunter wrote:
> On 7/10/07, Nils Wagner <nw...@ia...> wrote:
> > svn: PROPFIND request failed on '/svnroot/matplotlib/trunk/matplotlib'
> > svn: PROPFIND of '/svnroot/matplotlib/trunk/matplotlib': Could not
> > resolve hostname `svn.sourceforge.net': Host not found
> > (https://svn.sourceforge.net)
> >
> > Is this a temporary problem ?
>
> I've been experiencing this since yesterday, and was waiting to see if
> it clears up by today...
I ended up checking out the entire repository again. It seems that the working 
address is now matplotlib.svn.sourceforge.net/svn/matplotlib, instead of 
svn.sourceforge.net/svn/matplotlib.
Darren
From: John H. <jd...@gm...> - 2007年07月10日 14:05:42
On 7/10/07, Nils Wagner <nw...@ia...> wrote:
> svn: PROPFIND request failed on '/svnroot/matplotlib/trunk/matplotlib'
> svn: PROPFIND of '/svnroot/matplotlib/trunk/matplotlib': Could not
> resolve hostname `svn.sourceforge.net': Host not found
> (https://svn.sourceforge.net)
>
> Is this a temporary problem ?
I've been experiencing this since yesterday, and was waiting to see if
it clears up by today...
JDH
From: Nils W. <nw...@ia...> - 2007年07月10日 13:58:04
svn: PROPFIND request failed on '/svnroot/matplotlib/trunk/matplotlib'
svn: PROPFIND of '/svnroot/matplotlib/trunk/matplotlib': Could not
resolve hostname `svn.sourceforge.net': Host not found
(https://svn.sourceforge.net)
Is this a temporary problem ?
Nils
From: Darren D. <dd...@co...> - 2007年07月10日 12:23:16
On Tuesday 10 July 2007 07:51:25 am Michael Droettboom wrote:
> I was able to duplicate your bug on my Ubuntu Feisty box.
>
> There is a bug against evince filed here:
>
> http://bugzilla.gnome.org/show_bug.cgi?id=303365
>
> It appears that evince always renders an entire page at a time. There
> are some reports that are very similar to yours -- but on the other
> hand, it doesn't explain why some files work and others don't. It also
> doesn't explain why gv is also be breaking for you, unless it does the
> same thing.
>
> But I suppose we've ruled out matplotlib as the culprit for now, unless
> a number of other tools/versions also have problems.
I was able to zoom to 400% with ggv, but not with the kde ps viewer. The same 
behavior occurs with a simple postscript file created with latex and dvips. I 
think we can safely conclude that it is an issue with the renderer(s), not 
mpl and not your recent improvements.
Darren
From: Michael D. <md...@st...> - 2007年07月10日 11:52:01
I was able to duplicate your bug on my Ubuntu Feisty box.
There is a bug against evince filed here:
http://bugzilla.gnome.org/show_bug.cgi?id=303365
It appears that evince always renders an entire page at a time. There 
are some reports that are very similar to yours -- but on the other 
hand, it doesn't explain why some files work and others don't. It also 
doesn't explain why gv is also be breaking for you, unless it does the 
same thing.
But I suppose we've ruled out matplotlib as the culprit for now, unless 
a number of other tools/versions also have problems.
Cheers,
Mike
Eric Firing wrote:
> Michael Droettboom wrote:
>> Here's simple_plot.ps generated with the old PS backend.
>
> Crash! Again, with 400% magnification. So now you really are off the 
> hook.
>
> efiring@manini:~/programs/py/mpl/tests$ evince simple_plot_ps.ps
> ERROR: /unknownerror in --%op_show_continue--
> Operand stack:
>
> Execution stack:
> %interp_exit .runexec2 --nostringval-- --nostringval-- 
> --nostringval-- 2 %stopped_push --nostringval-- 
> --nostringval-- --nostringval-- false 1 %stopped_push 1 
> 3 %oparray_pop 1 3 %oparray_pop 1 3 %oparray_pop 1 3 
> %oparray_pop .runexec2 --nostringval-- --nostringval-- 
> --nostringval-- 2 %stopped_push --nostringval--
> Dictionary stack:
> --dict:1126/1686(ro)(G)-- --dict:0/20(G)-- --dict:103/200(L)-- 
> --dict:6/7(L)--
> Current allocation mode is local
> ESP Ghostscript 815.04: Unrecoverable error, exit code 1
>
> ** (evince:7887): WARNING **: Interpreter failed.
>
>
> Eric
>
From: Eric F. <ef...@ha...> - 2007年07月10日 07:33:40
ah...@cs... wrote:
> John (and others),
> 
> I've made a quick change to the svg backend to cull the data, see attached
> patch. I haven't tested it extensively, but it seems OK. It culls both
> lines and polygons out of svg output.
Allan,
Looks good, and the basic idea should be generally applicable. It can 
be sped up (probably), and the code made more compact, by using numpy 
arrays; but this can wait.
> 
> About making it general across backends: I've looked a bit at how things
> get rendered, and here is what I understand: We can only do the culling in
> pixel coordinates, since the height/width of the figure is in pixel units.
> 
> The transform from unit to pixel coordinates either happens in
> Line2D.draw() (such as SVG), or in the backend's draw function (such as
> for agg). Therefore we could only generalize for the case where the
> transform is in line2d, and even then, it looks simpler to do it in the
> backend to me since that is the only place we conveniently have all the
> pixel information we need. Maybe I have misunderstood, though.
The relevant transformation is between data coordinates and pixel 
coordinates, so provided the transformation is from one rectilinear 
system to another, it should be possible to do the culling in either 
system. One way to do it would be by inserting nans in the x and y 
arrays (I am thinking in terms of numpy array-based algorithms), since 
nan is already supported in backends as a do-not-draw marker.
This brings up the larger question of why we have "newstyle" (do 
transformation in backend) and oldstyle (transform before calling 
backend) at all, and whether we still need both. My guess is that we 
don't; by consistently using numpy arrays for x and y, and by using the 
transformation function that works with these arrays, we should be able 
to do the transform equally efficiently in the backend or earlier. 
Making the backends consistent would take a bit of work, and perhaps 
some culling of backends that are neither widely used nor actively 
maintained.
Eric
From: <ah...@cs...> - 2007年07月10日 01:27:53
Attachments: svgpatch
John (and others),
I've made a quick change to the svg backend to cull the data, see attached
patch. I haven't tested it extensively, but it seems OK. It culls both
lines and polygons out of svg output.
About making it general across backends: I've looked a bit at how things
get rendered, and here is what I understand: We can only do the culling in
pixel coordinates, since the height/width of the figure is in pixel units.
The transform from unit to pixel coordinates either happens in
Line2D.draw() (such as SVG), or in the backend's draw function (such as
for agg). Therefore we could only generalize for the case where the
transform is in line2d, and even then, it looks simpler to do it in the
backend to me since that is the only place we conveniently have all the
pixel information we need. Maybe I have misunderstood, though.
Also, I noticed I forgot to comment out a degugging cout from my last agg
patch, near the end of draw_lines. Oops, sorry, you should fix that in
svn.
Allan
By the way, Here's what I used to test the svg patch, using the -dSVG switch:
import pylab
from scipy import *
pylab.plot(sin(arange(1000)*pi/100.0))
pylab.plot(rand(1000)*2, '.')
pylab.axis([300, 800, -0.5, 1])
pylab.savefig('test')

Showing 24 results of 24

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /