Platforms to show: All Mac Windows Linux Cross-Platform
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 GUI
This example is the version from Sun, 17th Mar 2012.
Project "NSImage GUI.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
EventHandler Sub Open()
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+".jpg")
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+".jpg")
x.Save(f, x.SaveAsJPEG)
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
MenuBar MenuBar1
MenuItem FileMenu = "&Ablage"
MenuItem FileQuit = "#App.kFileQuit"
MenuItem EditMenu = "&Bearbeiten"
MenuItem EditUndo = "&Rückgängig"
MenuItem UntitledMenu1 = "-"
MenuItem EditCut = "&Ausschneiden"
MenuItem EditCopy = "&Kopieren"
MenuItem EditPaste = "&Einfügen"
MenuItem EditClear = "#App.kEditClear"
MenuItem UntitledMenu0 = "-"
MenuItem EditSelectAll = "&Alles auswählen"
End MenuBar
End Project
See also:
The items on this page are in the following plugins: MBS MacBase Plugin.