Platforms to show: All Mac Windows Linux Cross-Platform

/MacBase/NSImage Console


Required plugins for this example: MBS MacBase Plugin, MBS Main Plugin, MBS Images Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /MacBase/NSImage Console

This example is the version from Sun, 17th Mar 2012.

Project "NSImage Console.xojo_binary_project"
Class App Inherits ConsoleApplication
EventHandler Function Run(args() as String) As Integer dim f as FolderItem dim p as Picture = LogoMBS(500) f = SpecialFolder.Desktop.Child("test1"+filenamePostfix+".png") call f.SaveAsPNGMBS(p, 0) dim n as new NSImageMBS(p) dim xx as string = n.JPEGRepresentation f = SpecialFolder.Desktop.Child("test2"+filenamePostfix+".png") dim b as BinaryStream = BinaryStream.Create(f,true) b.Write xx b.Close dim x as Picture = n.CopyPicture f = SpecialFolder.Desktop.Child("test3"+filenamePostfix+".png") call f.SaveAsPNGMBS(x, 0) End EventHandler
Function filenamePostfix() As string dim name as string = "-"+RBVersionString if TargetCocoa then name = name + "-Cocoa" else name = name + "-Carbon" end if if TargetConsole then name = name + "-Console" else name = name + "-GUI" end if if TargetX86 then name = name + "-x86" else name = name + "-PPC" end if Return name End Function
End Class
End Project

See also:

The items on this page are in the following plugins: MBS MacBase Plugin.


The biggest plugin in space...