Vendredi, juillet 2nd, 2010
Posted in Class, iPhone, Objective-c | 1 Comment, join in » |
After developing a translation of LinkLite for Android, I decided to share with you my experience in this area by publishing the java class used to draw a graph (pie chart). This article is the second of a two-part series on this subject. The first dealing with the java class to draw a line chart. [...]
Continue reading about Java : Draw a Pie Chart with Android »
Posted in Java-Android Class | 43 Comments, add your own » |
After developing a translation of LinkLITE for Android, I decided to share with you my experience in this area by publishing the java class used to draw a graph (line). This article is the first of a series of two on this subject. The second deal, the java class to draw a pie graph, following [...]
Continue reading about Java : Draw a Line Chart with Android »
Posted in Java-Android Class | 12 Comments, add your own » |
Mercredi, mars 31st, 2010
There are some time ago, we have developed an AS3-AIR class, for reading and writing Windows bitmap file. MswBMPCodec.as Class file content : package msw.asBitmap { import flash.display.BitmapData; import flash.filesystem.File; import flash.filesystem.FileMode; import flash.filesystem.FileStream; import flash.utils.ByteArray; import flash.utils.Endian; public class MswBMPCodec { private const MASK : int = 0xFF; public var FileData : Object; //**************************************************** [...]
Continue reading about AS3 : Windows Bitmap Codec »
Posted in AS3 Class | No comments yet, be the first » |
Mercredi, mars 31st, 2010
There are some time ago we have developed a AS3-AIR class for the ZIP format. Class MswUnZip.as file content : // ****************************************************************** package msw.asUnzip { import flash.events.Event; import flash.events.EventDispatcher; import flash.events.ProgressEvent; import flash.filesystem.*; import flash.utils.ByteArray; import flash.utils.CompressionAlgorithm; import flash.utils.Endian; import flash.utils.setInterval; import flash.utils.clearInterval; // ********************************************** // ZIP Header // ********************************************** // file header signature (4 [...]
Continue reading about AS3 : UnZip Class ! »
Posted in AS3 Class | 1 Comment, join in » |