<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Reinventing the wheel &#8211; PNG Encoder Transparency</title>
	<atom:link href="http://stehil.com/2010/04/reinventing-the-wheel-png-encoder-transparency/feed/" rel="self" type="application/rss+xml" />
	<link>http://stehil.com/2010/04/reinventing-the-wheel-png-encoder-transparency/</link>
	<description>Flash &#124; Flex &#124; Air &#124; iPhone &#124; Android &#124; PHP &#124; Java &#124; HTML5 &#124; Silverlight</description>
	<lastBuildDate>Mon, 19 Sep 2011 20:28:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: james</title>
		<link>http://stehil.com/2010/04/reinventing-the-wheel-png-encoder-transparency/comment-page-1/#comment-2268</link>
		<dc:creator>james</dc:creator>
		<pubDate>Fri, 17 Jun 2011 10:25:56 +0000</pubDate>
		<guid isPermaLink="false">http://stehil.com/?p=3#comment-2268</guid>
		<description>We&#039;ve now added transparency support.

http://www.moodshare.co/blog/2011/06/transparency-support-for-alivepdf/</description>
		<content:encoded><![CDATA[<p>We&#8217;ve now added transparency support.</p>
<p><a href="http://www.moodshare.co/blog/2011/06/transparency-support-for-alivepdf/" rel="nofollow">http://www.moodshare.co/blog/2011/06/transparency-support-for-alivepdf/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian Parker</title>
		<link>http://stehil.com/2010/04/reinventing-the-wheel-png-encoder-transparency/comment-page-1/#comment-61</link>
		<dc:creator>Adrian Parker</dc:creator>
		<pubDate>Fri, 21 May 2010 00:14:47 +0000</pubDate>
		<guid isPermaLink="false">http://stehil.com/?p=3#comment-61</guid>
		<description>Thank you very much for this post; I ran into the dreaded &quot;Alpha PNG is not supported for now&quot; bug today and this post really helped me out.  Awesome!</description>
		<content:encoded><![CDATA[<p>Thank you very much for this post; I ran into the dreaded &#8220;Alpha PNG is not supported for now&#8221; bug today and this post really helped me out.  Awesome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott O'Brien</title>
		<link>http://stehil.com/2010/04/reinventing-the-wheel-png-encoder-transparency/comment-page-1/#comment-8</link>
		<dc:creator>Scott O'Brien</dc:creator>
		<pubDate>Tue, 04 May 2010 14:29:24 +0000</pubDate>
		<guid isPermaLink="false">http://stehil.com/?p=3#comment-8</guid>
		<description>Thanks Stephan!

I was doing a lot of copying and pasting, and somehow missed that one.

In addition I moved to a newer version of AlivePDF, and now things are working for me using chart.addimage() -

I&#039;m going to try to get the 300dpi image stream working this afternoon -

I truly appreciate the help!</description>
		<content:encoded><![CDATA[<p>Thanks Stephan!</p>
<p>I was doing a lot of copying and pasting, and somehow missed that one.</p>
<p>In addition I moved to a newer version of AlivePDF, and now things are working for me using chart.addimage() -</p>
<p>I&#8217;m going to try to get the 300dpi image stream working this afternoon -</p>
<p>I truly appreciate the help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stepan</title>
		<link>http://stehil.com/2010/04/reinventing-the-wheel-png-encoder-transparency/comment-page-1/#comment-7</link>
		<dc:creator>Stepan</dc:creator>
		<pubDate>Mon, 03 May 2010 11:45:36 +0000</pubDate>
		<guid isPermaLink="false">http://stehil.com/?p=3#comment-7</guid>
		<description>Hi Scott,
#1 - I have fixed the code, unfortunately the RTE in WordPress has had it&#039;s ideas about character encoding.

2# - Your code looks OK except for claimPDF.save which should be p.save
Getting no error and no prompt is strange though; put some breakpoints in to see if your f.save ever gets called... or I can look at it for you if you zip up the project and send it over to stepan (At) stehil DOT com</description>
		<content:encoded><![CDATA[<p>Hi Scott,<br />
#1 &#8211; I have fixed the code, unfortunately the RTE in WordPress has had it&#8217;s ideas about character encoding.</p>
<p>2# &#8211; Your code looks OK except for claimPDF.save which should be p.save<br />
Getting no error and no prompt is strange though; put some breakpoints in to see if your f.save ever gets called&#8230; or I can look at it for you if you zip up the project and send it over to stepan (At) stehil DOT com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott O'Brien</title>
		<link>http://stehil.com/2010/04/reinventing-the-wheel-png-encoder-transparency/comment-page-1/#comment-6</link>
		<dc:creator>Scott O'Brien</dc:creator>
		<pubDate>Mon, 03 May 2010 01:51:06 +0000</pubDate>
		<guid isPermaLink="false">http://stehil.com/?p=3#comment-6</guid>
		<description>Hi Stephan,

Ok, I realized the first issue - I replaced all those characters and was able to get your class to compile.

I subsequently imported your class, and then used the following code to try to generate the PDF:

var p:PDF = new PDF( Orientation.PORTRAIT, Unit.MM, Size.A4 );
p.addPage();
var image:ImageSnapshot = ImageSnapshot.captureImage(combination_chart, 300, new NonTransparentPNGEncoder());
p.addImageStream(image.data, ColorSpace.DEVICE_RGB, null, 0, 150, 180, 80);

var bytes:ByteArray = claimPDF.save(Method.LOCAL);
var f:FileReference = new FileReference();
f.save(bytes,&quot;report.pdf&quot;);


I am able to project the image.data on a swfLoader in my app, so I know it is being capture.

But for some reason, I never receive a prompt to download the pdf...</description>
		<content:encoded><![CDATA[<p>Hi Stephan,</p>
<p>Ok, I realized the first issue &#8211; I replaced all those characters and was able to get your class to compile.</p>
<p>I subsequently imported your class, and then used the following code to try to generate the PDF:</p>
<p>var p:PDF = new PDF( Orientation.PORTRAIT, Unit.MM, Size.A4 );<br />
p.addPage();<br />
var image:ImageSnapshot = ImageSnapshot.captureImage(combination_chart, 300, new NonTransparentPNGEncoder());<br />
p.addImageStream(image.data, ColorSpace.DEVICE_RGB, null, 0, 150, 180, 80);</p>
<p>var bytes:ByteArray = claimPDF.save(Method.LOCAL);<br />
var f:FileReference = new FileReference();<br />
f.save(bytes,&#8221;report.pdf&#8221;);</p>
<p>I am able to project the image.data on a swfLoader in my app, so I know it is being capture.</p>
<p>But for some reason, I never receive a prompt to download the pdf&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott O'Brien</title>
		<link>http://stehil.com/2010/04/reinventing-the-wheel-png-encoder-transparency/comment-page-1/#comment-5</link>
		<dc:creator>Scott O'Brien</dc:creator>
		<pubDate>Mon, 03 May 2010 01:33:15 +0000</pubDate>
		<guid isPermaLink="false">http://stehil.com/?p=3#comment-5</guid>
		<description>Hi Stephan,

Thanks for this post...I am trying to implement AlivePDF to print out a report that will include a custom FusionChart built by the user.

I tried to implement the above class but for some reason it is giving me a whole bunch of syntax errors.

It looks like the source of the problem are the lines that us HTML-esque expressions (i.e. y &lt; on line 215).

I wonder if this is some compiler setting on my end?  

Thanks in advance for any help!

Scott</description>
		<content:encoded><![CDATA[<p>Hi Stephan,</p>
<p>Thanks for this post&#8230;I am trying to implement AlivePDF to print out a report that will include a custom FusionChart built by the user.</p>
<p>I tried to implement the above class but for some reason it is giving me a whole bunch of syntax errors.</p>
<p>It looks like the source of the problem are the lines that us HTML-esque expressions (i.e. y &lt; on line 215).</p>
<p>I wonder if this is some compiler setting on my end?  </p>
<p>Thanks in advance for any help!</p>
<p>Scott</p>
]]></content:encoded>
	</item>
</channel>
</rss>

