B4A Code Snippet Bicubic curves - NeoTechni    Feb 22, 2016   (6 reactions) public Sub Bicubic(P As Path, X1 As Int, Y1 As Int, aX1 As Int, aY1 As Int, X2 As Int, Y2 As Int, aX2 As Int, aY2 As Int, Increment As Float) Dim Percent As Float, X3 As Int, Y3 As Int, X4 As Int, Y4 As Int If Increment <= 0 Then Increment = 0.01 MakePoint(P, X1, Y1) Do Until Percent > 1 X3 = CalculatePoint(X1, aX1, Percent) Y3 = CalculatePoint(Y1, aY1, Percent) X4 = CalculatePoint(aX2, X2, Percent) Y4 = CalculatePoint(aY2... B4J Library Thumbnailator library - Pnd_Thumbnailator - Create image thumbnails (UI/Non-UI/Server) - Pendrush    Jan 1, 2025   (9 reactions) .The value must be a double which is greater than 0.0 ScalingModeBicubic Sets the resizing scaling mode to use when creating the thumbnail. A hint to use bicubic interpolation when resizing images... B4J Question How to resize and save a captured bitmap without losing quality? - TILogistic (first post)    May 22, 2025 .GetField("VALUE_INTERPOLATION_BICUBIC"))) g2d.RunMethod("setRenderingHint", Array... B4A Question Canvas resampling - Erel (first post)    May 29, 2014 There are several threads related to Bicubic sampling: http://www.b4x.com/search?query=Bicubic... B4A Library ABExtDrawing 1.0 - danijel (first post)    May 29, 2014 Can someone help me just draw picture on Canvas using this library? I need to avoid canvas using Nearest neighbor and I need to use Bicubic resample image. I trying without success. Basicly i need only this but with Bicubic resample image: Sub Globals Dim Canvas1 As Canvas Dim Logo As Bitmap End Sub Sub Activity_Create(FirstTime As Boolean) Logo.Initialize(File.DirAssets,"logo.png") Dim SrcRect As Rect SrcRect.Initialize(0,0,1080, 1920) Dim DestRect As Rect... B4A Question Stretch/Zoom Image Displayed? - yttrium (first post)    Mar 21, 2013   (1 reaction) Thanks Erel, works great, though I think that should be a configurable property for the component.
Any way to change the sampling scale (from nearest neighbor to perhaps bicubic)? It would probably involve another snippet of code for resizing the image.... B4A Question Using BitmapFactory in B4A or a better way to get image width/height - Roger Garstang (first post)    Sep 21, 2012 some type of Bicubic filter or something to smooth them out.... B4A Question HTTP Post Requests to .NET Web API - Ohanian (first post)    Nov 17, 2015 thumbGraph.InterpolationMode = InterpolationMode.HighQualityBicubic Dim imageRectangle = New Drawing... B4A Question Images for different resolutions - yttrium (first post)    May 21, 2013 , slightly modified from this post to support bicubic scaling. Sub ResizeImage(original As Bitmap... B4A Question How to find out why my app stops? - Herbert32    Aug 15, 2017 Bicubic (good quality) core scale: using video filter2 module "swscale" core scale: looking... 16x16 (16x16) chroma: RGBA with scaling using Bicubic (good quality) core scale: using video filter2... (16x16) chroma: RGBA with scaling using Bicubic (good quality) core scale: using video filter2 module... Page: 1   |