Platforms to show: All Mac Windows Linux Cross-Platform
/Picture/Picture Scale/Scale Test
Feedback.
Function:
You find this example project in your Plugins Download as a Realbasic project file within the examples folder: /Picture/Picture Scale/Scale Test
This example is the version from Tue, 22th Dec 2008.
Notes: Last modified: Tue, 22th Dec 2008
Feedback.
Function:
You find this example project in your Plugins Download as a Realbasic project file within the examples folder: /Picture/Picture Scale/Scale Test
This example is the version from Tue, 22th Dec 2008.
Notes: Last modified: Tue, 22th Dec 2008
Class Window1
Inherits Window
// Properties
Protected Dim antialias As boolean
// Event implementations
Sub Resized()
run
End Sub
Function KeyDown(Key As String) As Boolean
if asc(key)=32 then
antialias=not antialias
run
Return true
end if
End Function
Sub Open()
antialias=true
run
End Sub
// Methods
Sub Run()
dim p,p1 as Picture
p=SpecialFolder.Desktop.IconImageMBS(128)
if p=nil then
p=SpecialFolder.Desktop.IconImageMBS(32)
end if
p1=p.ScaleMBS(Width,Height,antialias)
Backdrop=p1
End Sub
End Class
Class App
Inherits Application
End Class
See also:
- /Picture/Picture blending/blend with mask
- /Picture/Picture blending/blend without plugin
- /Picture/Picture blending/blend with plugin
- /Picture/Picture Blending test
- /Picture/Picture Blur
- /Picture/Picture Combine
- /Picture/Picture Combine Test
- /Picture/Picture Copy Fast Test
- /Picture/Picture Difference
- /Picture/Picture manipulation
- /Picture/Picture Matrix/matrix without plugin
- /Picture/Picture Matrix/matrix with plugin
- /Picture/Picture MinMax/mmx_demo
- /Picture/Picture MinMax/mmx_demo with plugin
- /Picture/Picture Mirror
- /Picture/Picture Scale/Picture.ScaleMBS
- /Picture/Picture Scale/Scale Compare
- /Picture/Picture To Memoryblock
- /Picture/Picture To String
- /Picture/Picture with Color Palettes/Color palettes
- /Picture/Picture with Color Palettes/NewPalPicture
- /Picture/Picture with Color Palettes/Picture Palette Calculation
Links
MBS REAL studio PDF Plugins - Bilder aus Nickenich