<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://www.aspose.com/community/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Aspose.Metafiles</title><link>http://www.aspose.com/community/blogs/aspose.metafiles/default.aspx</link><description /><dc:language>en-US</dc:language><generator>CommunityServer 2.0 (Build: 60217.2664)</generator><item><title>Aspose.Metafiles for Java 1.3.0.0 Released</title><link>http://www.aspose.com/community/blogs/aspose.metafiles/archive/2008/07/19/aspose-metafiles-for-java-1-3-0-0-released.aspx</link><pubDate>Sat, 19 Jul 2008 06:10:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:136132</guid><dc:creator>alcrus</dc:creator><slash:comments>0</slash:comments><comments>http://www.aspose.com/community/blogs/aspose.metafiles/comments/136132.aspx</comments><wfw:commentRss>http://www.aspose.com/community/blogs/aspose.metafiles/commentrss.aspx?PostID=136132</wfw:commentRss><description>We have released Aspose.Metafiles for Java 1.3.0.0&lt;br&gt;
&lt;b&gt;&lt;br&gt;
What's New:&lt;/b&gt;&lt;br&gt;
&lt;ul&gt;&lt;li&gt;Metafile.getTextStrings() method. Returns all text strings from a metafile.&lt;/li&gt;&lt;li&gt;TextOutOperation class which represents text string in a metafile
with simple rendering rules like transformation matrix, position, color
and font.&lt;br&gt;
  &lt;/li&gt;&lt;li&gt;Metafile.getTextOutOperations() method. Returns array of TextOutOperation objects.&lt;/li&gt;&lt;li&gt;(get|set)MinPixelCount and (get|set)MaxPixelCount values which
define minimal and maximal limits for image size (x*y) generated by
createDefaultRendering() method. Image will be scaled in case it
exceeds limits.&lt;/li&gt;&lt;/ul&gt;To download: &lt;a href="http://www.aspose.com/community/files/51/file-format-components/aspose.metafiles/default.aspx"&gt;http://www.aspose.com/community/files/51/file-format-components/aspose.metafiles/default.aspx&lt;/a&gt;&lt;br&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=136132" width="1" height="1"&gt;</description></item><item><title>Aspose.Metafiles for Java 1.2.5.0 Released</title><link>http://www.aspose.com/community/blogs/aspose.metafiles/archive/2007/10/09/aspose-metafiles-for-java-1-2-5-0-released.aspx</link><pubDate>Tue, 09 Oct 2007 08:29:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:97806</guid><dc:creator>alcrus</dc:creator><slash:comments>0</slash:comments><comments>http://www.aspose.com/community/blogs/aspose.metafiles/comments/97806.aspx</comments><wfw:commentRss>http://www.aspose.com/community/blogs/aspose.metafiles/commentrss.aspx?PostID=97806</wfw:commentRss><description>&lt;b&gt;What's New:&lt;/b&gt;&lt;br&gt;&lt;ul&gt;&lt;li&gt;Reading comments from a metafile. Small example how to read comments:&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;&lt;pre&gt;WmfMetafile wfile = new WmfMetafile(file);&lt;br&gt;MetafileComment[] comments = wfile.getComments();&lt;br&gt;for(int i = 0; i &amp;lt; comments.length; i++) {&lt;br&gt;    System.out.println("comment " + comments[i].getRecordIndex() + ": " +&lt;br&gt;    Charset.defaultCharset().decode(ByteBuffer.wrap(comments[i].getCommentData())).toString());&lt;br&gt;}&lt;br&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;Rendering
text in different charsets. Aspose.Metafiles should select right
charset automatically but it is possible to override it through
rendering hints.&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;&lt;pre&gt;MetafileCharsetCollection cc = new MetafileCharsetCollection();&lt;br&gt;Charset charset = (Charset)Charset.availableCharsets().get("windows-1251");&lt;br&gt;cc.SetCharset(MetafileCharsetCollection.DEFAULT_CHARSET, charset);&lt;br&gt;renderingHints.put(MetafileCharsetCollection.METAFILES_CHARSET_COLLECTION, cc);&lt;br&gt;&lt;br&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;b&gt;Fixed:&lt;/b&gt;&lt;br&gt;
&lt;ul&gt;&lt;li&gt;3862 - Aspose.Metafiles didn't work with Aspose.Total for Java license.&lt;/li&gt;&lt;/ul&gt;To download: &lt;a href="http://www.aspose.com/Community/Files/51/aspose.metafiles/default.aspx"&gt;http://www.aspose.com/Community/Files/51/aspose.metafiles/default.aspx&lt;/a&gt;&lt;br&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=97806" width="1" height="1"&gt;</description></item><item><title>Aspose.Metafiles for Java 1.2.4.0 Released</title><link>http://www.aspose.com/community/blogs/aspose.metafiles/archive/2007/08/22/aspose-metafiles-for-java-1-2-4-0-released.aspx</link><pubDate>Thu, 23 Aug 2007 03:05:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:91853</guid><dc:creator>alcrus</dc:creator><slash:comments>0</slash:comments><comments>http://www.aspose.com/community/blogs/aspose.metafiles/comments/91853.aspx</comments><wfw:commentRss>http://www.aspose.com/community/blogs/aspose.metafiles/commentrss.aspx?PostID=91853</wfw:commentRss><description>This is a hotfix release addressing some recent issues reported by customers.&lt;br&gt;Fixes:&lt;br&gt;&lt;ul&gt;&lt;li&gt;3603 - Possible NullPointerException on playMetafile method call with some EMF files.&lt;/li&gt;&lt;/ul&gt;To download &lt;a href="http://www.aspose.com/Community/Files/51/aspose.metafiles/entry91849.aspx"&gt;http://www.aspose.com/Community/Files/51/aspose.metafiles/entry91849.aspx&lt;/a&gt;&lt;br&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=91853" width="1" height="1"&gt;</description></item><item><title>Aspose.Metafiles for Java 1.2.3.0 Released</title><link>http://www.aspose.com/community/blogs/aspose.metafiles/archive/2007/08/13/aspose-metafiles-for-java-1-2-3-0-released.aspx</link><pubDate>Mon, 13 Aug 2007 17:26:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:90423</guid><dc:creator>alcrus</dc:creator><slash:comments>0</slash:comments><comments>http://www.aspose.com/community/blogs/aspose.metafiles/comments/90423.aspx</comments><wfw:commentRss>http://www.aspose.com/community/blogs/aspose.metafiles/commentrss.aspx?PostID=90423</wfw:commentRss><description>This is a hotfix release addressing some recent issues reported by customers.&lt;br&gt;
Fixes:&lt;br&gt;
&lt;ul&gt;&lt;li&gt;&lt;strong&gt;&lt;/strong&gt;NullPointerException on rendering metafiles with clipped text.&lt;/li&gt;&lt;/ul&gt;To download &lt;a href="/Community/Files/51/aspose.metafiles/entry90422.aspx"&gt;http://www.aspose.com/Community/Files/51/aspose.metafiles/entry90422.aspx&lt;/a&gt;&lt;br&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=90423" width="1" height="1"&gt;</description></item><item><title>Aspose.Metafiles for Java 1.2.2.0 Released</title><link>http://www.aspose.com/community/blogs/aspose.metafiles/archive/2007/07/11/aspose-metafiles-for-java-1-2-2-0-released.aspx</link><pubDate>Wed, 11 Jul 2007 23:24:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:83556</guid><dc:creator>alcrus</dc:creator><slash:comments>0</slash:comments><comments>http://www.aspose.com/community/blogs/aspose.metafiles/comments/83556.aspx</comments><wfw:commentRss>http://www.aspose.com/community/blogs/aspose.metafiles/commentrss.aspx?PostID=83556</wfw:commentRss><description>Aspose.Metafiles for Java 1.2.2.0 hot fix contains the following changes:&lt;br&gt;&lt;ul&gt;&lt;li&gt;Fixed: Exception on reading some non standard emf metafiles (without EOF record).&lt;/li&gt;&lt;/ul&gt;Download URL: &lt;a href="/Downloads/Aspose.Metafiles/1.2.2.0/Default.aspx"&gt;http://www.aspose.com/Downloads/Aspose.Metafiles/1.2.2.0/Default.aspx&lt;/a&gt;&lt;br&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=83556" width="1" height="1"&gt;</description></item><item><title>Aspose.Metafiles for Java 1.2.1.0 released!</title><link>http://www.aspose.com/community/blogs/aspose.metafiles/archive/2007/02/24/68680.aspx</link><pubDate>Sat, 24 Feb 2007 06:57:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:68680</guid><dc:creator>alcrus</dc:creator><slash:comments>0</slash:comments><comments>http://www.aspose.com/community/blogs/aspose.metafiles/comments/68680.aspx</comments><wfw:commentRss>http://www.aspose.com/community/blogs/aspose.metafiles/commentrss.aspx?PostID=68680</wfw:commentRss><description>Hot fix contains:&lt;br&gt;&lt;ul&gt;&lt;li&gt;Fixed: Exception on reading metafiles with text.&lt;/li&gt;&lt;li&gt;Fixed: Rendering metafiles with DIB images and gradients.&lt;/li&gt;&lt;li&gt;Fixed: Rendering metafile at right position.&lt;/li&gt;&lt;li&gt;Updated: Emf2Png demo.&lt;br&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=68680" width="1" height="1"&gt;</description></item><item><title>Aspose.Metafiles for Java Programmer's Guide</title><link>http://www.aspose.com/community/blogs/aspose.metafiles/archive/2007/01/26/66199.aspx</link><pubDate>Fri, 26 Jan 2007 16:33:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:66199</guid><dc:creator>alcrus</dc:creator><slash:comments>0</slash:comments><comments>http://www.aspose.com/community/blogs/aspose.metafiles/comments/66199.aspx</comments><wfw:commentRss>http://www.aspose.com/community/blogs/aspose.metafiles/commentrss.aspx?PostID=66199</wfw:commentRss><description>We are happy to announce release of Aspose.Metafiles Programmer's Guide.&lt;br&gt;The existing documentation for Aspose.Metafiles includes:&lt;br&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="/Wiki/Default.aspx/Aspose.Metafiles/"&gt;Aspose.Metafiles Wiki&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="/Products/Aspose.Metafiles/JavaDoc/"&gt;Aspose.Metafiles API Reference&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;New Programmer's Guide contains descriptions and code examples which show how to open metafiles, play them to a Graphics2D context, convert to raster images and JSP code to show metafiles on web page with JSPs and Servlets.&lt;br&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=66199" width="1" height="1"&gt;</description></item><item><title>Aspose.Metafiles for Java 1.2.0.0 released!</title><link>http://www.aspose.com/community/blogs/aspose.metafiles/archive/2007/01/22/65791.aspx</link><pubDate>Mon, 22 Jan 2007 06:23:00 GMT</pubDate><guid isPermaLink="false">1f624649-1f4f-4df4-b29e-aff06720ffd6:65791</guid><dc:creator>alcrus</dc:creator><slash:comments>0</slash:comments><comments>http://www.aspose.com/community/blogs/aspose.metafiles/comments/65791.aspx</comments><wfw:commentRss>http://www.aspose.com/community/blogs/aspose.metafiles/commentrss.aspx?PostID=65791</wfw:commentRss><description>Dear Customers,&lt;br&gt;&lt;br&gt;We have released Aspose.Metafiles for Java 1.2.0.0.&lt;br&gt;This release includes changes made in 1.1.* hot fixes and new features:&lt;br&gt;&lt;ul&gt;&lt;li&gt;New: Colors remapping on metafiles rendering.&lt;br&gt;&lt;/li&gt;&lt;li&gt;Fixed: Rendering Window*, Viewport* gdi commands.&lt;/li&gt;&lt;/ul&gt;New Wiki Programmer's Guide coming soon.&lt;br&gt;&lt;img src="http://www.aspose.com/community/aggbug.aspx?PostID=65791" width="1" height="1"&gt;</description></item></channel></rss>