Example: /Compression/Old ZipMBS class/zip images with offset

Online Documentation   -   Statistics   -   FAQ   -   Plugin Parts (All, Dependencies)   -   Class hierarchy

New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1

The list of the   topics,   classes,   interfaces,   controls,   modules,   global methods by category,   global methods by name,   screenshots,   licenses   and   examples.

Platforms to show: All Mac Windows Linux Cross-Platform

/Compression/Old ZipMBS class/zip images with offset


Required plugins for this example: MBS Main Plugin, MBS MacClassic Plugin, MBS Compression Plugin, MBS Images Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /Compression/Old ZipMBS class/zip images with offset

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

Project "zip images with offset.xojo_binary_project"
FileTypes
Filetype text
End FileTypes
Class Window1 Inherits Window
EventHandler Sub Open() dim z as ZipMBS dim f as FolderItem f=SpecialFolder.Desktop.Child("test.zip") MakeTestFiles z=new ZipMBS(f,0) AddFile z, SpecialFolder.Desktop.Child("test.jpg") AddFile z, SpecialFolder.Desktop.Child("test.png") z.Close("global comment") z = nil dim ff as FolderItem = SpecialFolder.Desktop.Child("test offset.zip") dim bi as BinaryStream = f.OpenAsBinaryFile(False) dim bo as BinaryStream = ff.CreateBinaryFile("") bo.Write "Hello World " bo.Write bi.Read(bi.Length) bo.Close End EventHandler
Sub AddFile(z as ZipMBS, f as FolderItem) dim b as BinaryStream dim info as ZipFileInfoMBS dim d as date b=f.OpenAsBinaryFile(false) d=f.ModificationDate info=new ZipFileInfoMBS info.Day=d.day info.Month=d.Month-1 info.Year=d.Year info.Minute=d.Minute info.hour=d.hour info.Second=d.Second info.ExternalFileAttributes=0 info.InternalFileAttributes=0 info.DosDate=0 z.CreateFile f.name, info, "", "", f.CommentMBS, z.MethodDeflated, z.CompressionBestCompression while not b.EOF z.Write b.Read(100000) wend z.CloseFile End Sub
Sub MakeTestFiles() dim f as FolderItem dim p as Picture p=LogoMBS(500) f=SpecialFolder.Desktop.Child("test.jpg") f.SaveAsJPEG p f=SpecialFolder.Desktop.Child("test.png") call f.SaveAsPNGMBS(p,0) End Sub
End Class
MenuBar MenuBar1
MenuItem UntitledMenu1 = ""
MenuItem FileMenu = "&File"
MenuItem FileQuit = "Quit"
MenuItem EditMenu = "&Edit"
MenuItem EditUndo = "&Undo"
MenuItem UntitledMenu0 = "-"
MenuItem EditCut = "Cu&t"
MenuItem EditCopy = "&Copy"
MenuItem EditPaste = "&Paste"
MenuItem EditClear = "Clear"
End MenuBar
Class App Inherits Application
End Class
End Project

See also:

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


💬 Ask a question or report a problem