aspose-gis-net 24.12.0__py3-none-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aspose-gis-net might be problematic. Click here for more details.
- .__pyi_patched +0 -0
- aspose/__init__.py +82 -0
- aspose/__pyinstaller/__init__.pyi +1 -0
- aspose/__pyinstaller/hook-aspose.py +10 -0
- aspose/assemblies/gis/Aspose.GIS.dll +0 -0
- aspose/assemblies/gis/Microsoft.Win32.SystemEvents.dll +0 -0
- aspose/assemblies/gis/Newtonsoft.Json.dll +0 -0
- aspose/assemblies/gis/System.Drawing.Common.dll +0 -0
- aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll +0 -0
- aspose/assemblies/pycore/WrpInterop.Aspose.PyCore.dll +0 -0
- aspose/assemblies/pydrawing/Microsoft.Win32.SystemEvents.dll +0 -0
- aspose/assemblies/pydrawing/System.Drawing.Common.dll +0 -0
- aspose/assemblies/pydrawing/WrpInterop.Aspose.PyDrawing.dll +0 -0
- aspose/assemblies/pygc/Aspose.PyGC.dll +0 -0
- aspose/assemblies/pyio/WrpInterop.Aspose.PyIO.dll +0 -0
- aspose/assemblies/pyreflection/WrpInterop.Aspose.PyReflection.dll +0 -0
- aspose/gis/__init__.pyi +2535 -0
- aspose/gis/__nuitka/__init__.pyi +1 -0
- aspose/gis/__nuitka/aspose-gis.nuitka-package.config.yml +20 -0
- aspose/gis/__pyinstaller/__init__.pyi +1 -0
- aspose/gis/__pyinstaller/hook-aspose.gis.py +9 -0
- aspose/gis/common/__init__.pyi +1028 -0
- aspose/gis/common/formats/__init__.pyi +98 -0
- aspose/gis/common/formats/dbase/__init__.pyi +250 -0
- aspose/gis/common/formats/gdbtable/__init__.pyi +1022 -0
- aspose/gis/common/formats/mapinfo/__init__.pyi +346 -0
- aspose/gis/common/formats/mapinfo/graphicalobjects/__init__.pyi +662 -0
- aspose/gis/common/formats/mapinfo/interchangeformat/__init__.pyi +217 -0
- aspose/gis/common/formats/mapinfo/styling/__init__.pyi +163 -0
- aspose/gis/common/formats/mapinfo/tabformat/__init__.pyi +139 -0
- aspose/gis/common/formats/mapinfo/tabformat/map/__init__.pyi +430 -0
- aspose/gis/common/formats/wkb/__init__.pyi +120 -0
- aspose/gis/common/formats/wkt/__init__.pyi +420 -0
- aspose/gis/common/formats/xml/__init__.pyi +173 -0
- aspose/gis/common/io/__init__.pyi +290 -0
- aspose/gis/epsg/__init__.pyi +357 -0
- aspose/gis/formats/__init__.pyi +91 -0
- aspose/gis/formats/bmpw/__init__.pyi +134 -0
- aspose/gis/formats/csv/__init__.pyi +608 -0
- aspose/gis/formats/database/__init__.pyi +173 -0
- aspose/gis/formats/database/dataediting/__init__.pyi +105 -0
- aspose/gis/formats/database/fromdefinition/__init__.pyi +141 -0
- aspose/gis/formats/esriascii/__init__.pyi +292 -0
- aspose/gis/formats/esrijson/__init__.pyi +512 -0
- aspose/gis/formats/filegdb/__init__.pyi +722 -0
- aspose/gis/formats/gdal/__init__.pyi +478 -0
- aspose/gis/formats/geojson/__init__.pyi +620 -0
- aspose/gis/formats/geojsonseq/__init__.pyi +572 -0
- aspose/gis/formats/geotiff/__init__.pyi +292 -0
- aspose/gis/formats/gml/__init__.pyi +545 -0
- aspose/gis/formats/gpx/__init__.pyi +543 -0
- aspose/gis/formats/infile/__init__.pyi +582 -0
- aspose/gis/formats/inmemory/__init__.pyi +337 -0
- aspose/gis/formats/jpegw/__init__.pyi +134 -0
- aspose/gis/formats/kml/__init__.pyi +556 -0
- aspose/gis/formats/kml/styles/__init__.pyi +636 -0
- aspose/gis/formats/mapinfointerchange/__init__.pyi +501 -0
- aspose/gis/formats/mapinfotab/__init__.pyi +530 -0
- aspose/gis/formats/osmxml/__init__.pyi +543 -0
- aspose/gis/formats/pngw/__init__.pyi +134 -0
- aspose/gis/formats/postgis/__init__.pyi +262 -0
- aspose/gis/formats/shapefile/__init__.pyi +511 -0
- aspose/gis/formats/sqlserver/__init__.pyi +248 -0
- aspose/gis/formats/tiffw/__init__.pyi +134 -0
- aspose/gis/formats/topojson/__init__.pyi +596 -0
- aspose/gis/formats/worldfile/__init__.pyi +134 -0
- aspose/gis/formats/xyztile/__init__.pyi +132 -0
- aspose/gis/geometries/__init__.pyi +15970 -0
- aspose/gis/geotools/__init__.pyi +519 -0
- aspose/gis/geotools/extensions/__init__.pyi +107 -0
- aspose/gis/geotools/layersmap/__init__.pyi +311 -0
- aspose/gis/geotools/mapbuilder/__init__.pyi +141 -0
- aspose/gis/geotools/wayanalyzer/__init__.pyi +187 -0
- aspose/gis/imagemetadata/__init__.pyi +297 -0
- aspose/gis/indexing/__init__.pyi +103 -0
- aspose/gis/indexing/bplustree/__init__.pyi +118 -0
- aspose/gis/indexing/qixtree/__init__.pyi +121 -0
- aspose/gis/indexing/rtree/__init__.pyi +153 -0
- aspose/gis/labeling/__init__.pyi +235 -0
- aspose/gis/labeling/line/__init__.pyi +279 -0
- aspose/gis/painting/__init__.pyi +790 -0
- aspose/gis/projections/__init__.pyi +272 -0
- aspose/gis/py.typed +0 -0
- aspose/gis/raster/__init__.pyi +586 -0
- aspose/gis/raster/web/__init__.pyi +127 -0
- aspose/gis/relationship/__init__.pyi +91 -0
- aspose/gis/relationship/joins/__init__.pyi +161 -0
- aspose/gis/rendering/__init__.pyi +572 -0
- aspose/gis/rendering/colorizers/__init__.pyi +202 -0
- aspose/gis/rendering/formats/__init__.pyi +91 -0
- aspose/gis/rendering/formats/bmp/__init__.pyi +111 -0
- aspose/gis/rendering/formats/jpeg/__init__.pyi +111 -0
- aspose/gis/rendering/formats/png/__init__.pyi +111 -0
- aspose/gis/rendering/formats/svg/__init__.pyi +111 -0
- aspose/gis/rendering/labelings/__init__.pyi +416 -0
- aspose/gis/rendering/sld/__init__.pyi +109 -0
- aspose/gis/rendering/symbolizers/__init__.pyi +882 -0
- aspose/gis/spatialreferencing/__init__.pyi +3005 -0
- aspose/gis/topology/__init__.pyi +342 -0
- aspose/gis/topology/algorithms/__init__.pyi +98 -0
- aspose/gis/topology/buffer/__init__.pyi +214 -0
- aspose/gis/topology/graph/__init__.pyi +338 -0
- aspose/gis.cpython-310-darwin.so +0 -0
- aspose/gis.cpython-311-darwin.so +0 -0
- aspose/gis.cpython-312-darwin.so +0 -0
- aspose/gis.cpython-313-darwin.so +0 -0
- aspose/gis.cpython-38-darwin.so +0 -0
- aspose/gis.cpython-39-darwin.so +0 -0
- aspose/netcore/netcore6.0/Microsoft.CSharp.dll +0 -0
- aspose/netcore/netcore6.0/Microsoft.VisualBasic.Core.dll +0 -0
- aspose/netcore/netcore6.0/Microsoft.VisualBasic.dll +0 -0
- aspose/netcore/netcore6.0/Microsoft.Win32.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/Microsoft.Win32.Registry.dll +0 -0
- aspose/netcore/netcore6.0/System.AppContext.dll +0 -0
- aspose/netcore/netcore6.0/System.Buffers.dll +0 -0
- aspose/netcore/netcore6.0/System.Collections.Concurrent.dll +0 -0
- aspose/netcore/netcore6.0/System.Collections.Immutable.dll +0 -0
- aspose/netcore/netcore6.0/System.Collections.NonGeneric.dll +0 -0
- aspose/netcore/netcore6.0/System.Collections.Specialized.dll +0 -0
- aspose/netcore/netcore6.0/System.Collections.dll +0 -0
- aspose/netcore/netcore6.0/System.ComponentModel.Annotations.dll +0 -0
- aspose/netcore/netcore6.0/System.ComponentModel.DataAnnotations.dll +0 -0
- aspose/netcore/netcore6.0/System.ComponentModel.EventBasedAsync.dll +0 -0
- aspose/netcore/netcore6.0/System.ComponentModel.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.ComponentModel.TypeConverter.dll +0 -0
- aspose/netcore/netcore6.0/System.ComponentModel.dll +0 -0
- aspose/netcore/netcore6.0/System.Configuration.dll +0 -0
- aspose/netcore/netcore6.0/System.Console.dll +0 -0
- aspose/netcore/netcore6.0/System.Core.dll +0 -0
- aspose/netcore/netcore6.0/System.Data.Common.dll +0 -0
- aspose/netcore/netcore6.0/System.Data.DataSetExtensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Data.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.Contracts.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.Debug.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.DiagnosticSource.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.FileVersionInfo.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.Process.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.StackTrace.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.TextWriterTraceListener.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.Tools.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.TraceSource.dll +0 -0
- aspose/netcore/netcore6.0/System.Diagnostics.Tracing.dll +0 -0
- aspose/netcore/netcore6.0/System.Drawing.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.Drawing.dll +0 -0
- aspose/netcore/netcore6.0/System.Dynamic.Runtime.dll +0 -0
- aspose/netcore/netcore6.0/System.Formats.Asn1.dll +0 -0
- aspose/netcore/netcore6.0/System.Globalization.Calendars.dll +0 -0
- aspose/netcore/netcore6.0/System.Globalization.Extensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Globalization.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.Compression.Brotli.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.Compression.FileSystem.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.Compression.ZipFile.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.Compression.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.FileSystem.AccessControl.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.FileSystem.DriveInfo.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.FileSystem.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.FileSystem.Watcher.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.FileSystem.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.IsolatedStorage.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.MemoryMappedFiles.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.Pipes.AccessControl.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.Pipes.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.UnmanagedMemoryStream.dll +0 -0
- aspose/netcore/netcore6.0/System.IO.dll +0 -0
- aspose/netcore/netcore6.0/System.Linq.Expressions.dll +0 -0
- aspose/netcore/netcore6.0/System.Linq.Parallel.dll +0 -0
- aspose/netcore/netcore6.0/System.Linq.Queryable.dll +0 -0
- aspose/netcore/netcore6.0/System.Linq.dll +0 -0
- aspose/netcore/netcore6.0/System.Memory.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Http.Json.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Http.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.HttpListener.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Mail.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.NameResolution.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.NetworkInformation.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Ping.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Quic.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Requests.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Security.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.ServicePoint.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.Sockets.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.WebClient.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.WebHeaderCollection.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.WebProxy.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.WebSockets.Client.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.WebSockets.dll +0 -0
- aspose/netcore/netcore6.0/System.Net.dll +0 -0
- aspose/netcore/netcore6.0/System.Numerics.Vectors.dll +0 -0
- aspose/netcore/netcore6.0/System.Numerics.dll +0 -0
- aspose/netcore/netcore6.0/System.ObjectModel.dll +0 -0
- aspose/netcore/netcore6.0/System.Private.CoreLib.dll +0 -0
- aspose/netcore/netcore6.0/System.Private.DataContractSerialization.dll +0 -0
- aspose/netcore/netcore6.0/System.Private.Uri.dll +0 -0
- aspose/netcore/netcore6.0/System.Private.Xml.Linq.dll +0 -0
- aspose/netcore/netcore6.0/System.Private.Xml.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.DispatchProxy.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.Emit.ILGeneration.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.Emit.Lightweight.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.Emit.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.Extensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.Metadata.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.TypeExtensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Reflection.dll +0 -0
- aspose/netcore/netcore6.0/System.Resources.Reader.dll +0 -0
- aspose/netcore/netcore6.0/System.Resources.ResourceManager.dll +0 -0
- aspose/netcore/netcore6.0/System.Resources.Writer.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.CompilerServices.Unsafe.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.CompilerServices.VisualC.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Extensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Handles.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.InteropServices.RuntimeInformation.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.InteropServices.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Intrinsics.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Loader.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Numerics.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Serialization.Formatters.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Serialization.Json.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Serialization.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Serialization.Xml.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.Serialization.dll +0 -0
- aspose/netcore/netcore6.0/System.Runtime.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.AccessControl.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Claims.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.Algorithms.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.Cng.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.Csp.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.Encoding.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.OpenSsl.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.Primitives.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Cryptography.X509Certificates.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Principal.Windows.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.Principal.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.SecureString.dll +0 -0
- aspose/netcore/netcore6.0/System.Security.dll +0 -0
- aspose/netcore/netcore6.0/System.ServiceModel.Web.dll +0 -0
- aspose/netcore/netcore6.0/System.ServiceProcess.dll +0 -0
- aspose/netcore/netcore6.0/System.Text.Encoding.CodePages.dll +0 -0
- aspose/netcore/netcore6.0/System.Text.Encoding.Extensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Text.Encoding.dll +0 -0
- aspose/netcore/netcore6.0/System.Text.Encodings.Web.dll +0 -0
- aspose/netcore/netcore6.0/System.Text.Json.dll +0 -0
- aspose/netcore/netcore6.0/System.Text.RegularExpressions.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Channels.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Overlapped.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Tasks.Dataflow.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Tasks.Extensions.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Tasks.Parallel.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Tasks.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Thread.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.ThreadPool.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.Timer.dll +0 -0
- aspose/netcore/netcore6.0/System.Threading.dll +0 -0
- aspose/netcore/netcore6.0/System.Transactions.Local.dll +0 -0
- aspose/netcore/netcore6.0/System.Transactions.dll +0 -0
- aspose/netcore/netcore6.0/System.ValueTuple.dll +0 -0
- aspose/netcore/netcore6.0/System.Web.HttpUtility.dll +0 -0
- aspose/netcore/netcore6.0/System.Web.dll +0 -0
- aspose/netcore/netcore6.0/System.Windows.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.Linq.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.ReaderWriter.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.Serialization.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.XDocument.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.XPath.XDocument.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.XPath.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.XmlDocument.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.XmlSerializer.dll +0 -0
- aspose/netcore/netcore6.0/System.Xml.dll +0 -0
- aspose/netcore/netcore6.0/System.dll +0 -0
- aspose/netcore/netcore6.0/WindowsBase.dll +0 -0
- aspose/netcore/netcore6.0/createdump +0 -0
- aspose/netcore/netcore6.0/libSystem.Globalization.Native.dylib +0 -0
- aspose/netcore/netcore6.0/libSystem.IO.Compression.Native.dylib +0 -0
- aspose/netcore/netcore6.0/libSystem.Native.dylib +0 -0
- aspose/netcore/netcore6.0/libSystem.Net.Security.Native.dylib +0 -0
- aspose/netcore/netcore6.0/libSystem.Security.Cryptography.Native.Apple.dylib +0 -0
- aspose/netcore/netcore6.0/libSystem.Security.Cryptography.Native.OpenSsl.dylib +0 -0
- aspose/netcore/netcore6.0/libaspose.embed.coreclrwrap.dylib +0 -0
- aspose/netcore/netcore6.0/libclrjit.dylib +0 -0
- aspose/netcore/netcore6.0/libcoreclr.dylib +0 -0
- aspose/netcore/netcore6.0/libdbgshim.dylib +0 -0
- aspose/netcore/netcore6.0/libhostfxr.dylib +0 -0
- aspose/netcore/netcore6.0/libhostpolicy.dylib +0 -0
- aspose/netcore/netcore6.0/libmscordaccore.dylib +0 -0
- aspose/netcore/netcore6.0/libmscordbi.dylib +0 -0
- aspose/netcore/netcore6.0/mscorlib.dll +0 -0
- aspose/netcore/netcore6.0/netstandard.dll +0 -0
- aspose/pycore/__init__.pyi +57 -0
- aspose/pycore/__pyinstaller/__init__.pyi +1 -0
- aspose/pycore/__pyinstaller/hook-aspose.pycore.py +11 -0
- aspose/pycore/py.typed +0 -0
- aspose/pycore.cpython-310-darwin.so +0 -0
- aspose/pycore.cpython-311-darwin.so +0 -0
- aspose/pycore.cpython-312-darwin.so +0 -0
- aspose/pycore.cpython-313-darwin.so +0 -0
- aspose/pycore.cpython-38-darwin.so +0 -0
- aspose/pycore.cpython-39-darwin.so +0 -0
- aspose/pydrawing/__init__.pyi +4090 -0
- aspose/pydrawing/__pyinstaller/__init__.pyi +1 -0
- aspose/pydrawing/__pyinstaller/hook-aspose.pydrawing.py +9 -0
- aspose/pydrawing/design.pyi +24 -0
- aspose/pydrawing/drawing2d.pyi +1324 -0
- aspose/pydrawing/imaging.pyi +1988 -0
- aspose/pydrawing/printing.pyi +995 -0
- aspose/pydrawing/py.typed +0 -0
- aspose/pydrawing/text.pyi +75 -0
- aspose/pydrawing.cpython-310-darwin.so +0 -0
- aspose/pydrawing.cpython-311-darwin.so +0 -0
- aspose/pydrawing.cpython-312-darwin.so +0 -0
- aspose/pydrawing.cpython-313-darwin.so +0 -0
- aspose/pydrawing.cpython-38-darwin.so +0 -0
- aspose/pydrawing.cpython-39-darwin.so +0 -0
- aspose/pygc/__init__.pyi +8 -0
- aspose/pygc/__pyinstaller/__init__.pyi +1 -0
- aspose/pygc/__pyinstaller/hook-aspose.pygc.py +9 -0
- aspose/pygc.cpython-310-darwin.so +0 -0
- aspose/pygc.cpython-311-darwin.so +0 -0
- aspose/pygc.cpython-312-darwin.so +0 -0
- aspose/pygc.cpython-313-darwin.so +0 -0
- aspose/pygc.cpython-38-darwin.so +0 -0
- aspose/pygc.cpython-39-darwin.so +0 -0
- aspose/pyio/__init__.pyi +8 -0
- aspose/pyio/__pyinstaller/__init__.pyi +1 -0
- aspose/pyio/__pyinstaller/hook-aspose.pyio.py +9 -0
- aspose/pyio.cpython-310-darwin.so +0 -0
- aspose/pyio.cpython-311-darwin.so +0 -0
- aspose/pyio.cpython-312-darwin.so +0 -0
- aspose/pyio.cpython-313-darwin.so +0 -0
- aspose/pyio.cpython-38-darwin.so +0 -0
- aspose/pyio.cpython-39-darwin.so +0 -0
- aspose/pyreflection/__init__.pyi +12 -0
- aspose/pyreflection/__pyinstaller/__init__.pyi +1 -0
- aspose/pyreflection/__pyinstaller/hook-aspose.pyreflection.py +9 -0
- aspose/pyreflection/py.typed +0 -0
- aspose/pyreflection.cpython-310-darwin.so +0 -0
- aspose/pyreflection.cpython-311-darwin.so +0 -0
- aspose/pyreflection.cpython-312-darwin.so +0 -0
- aspose/pyreflection.cpython-313-darwin.so +0 -0
- aspose/pyreflection.cpython-38-darwin.so +0 -0
- aspose/pyreflection.cpython-39-darwin.so +0 -0
- aspose_gis_net-24.12.0.dist-info/METADATA +285 -0
- aspose_gis_net-24.12.0.dist-info/RECORD +349 -0
- aspose_gis_net-24.12.0.dist-info/WHEEL +5 -0
- aspose_gis_net-24.12.0.dist-info/entry_points.txt +3 -0
- aspose_gis_net-24.12.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1324 @@
|
|
|
1
|
+
import aspose.pydrawing
|
|
2
|
+
import aspose.pydrawing
|
|
3
|
+
import datetime
|
|
4
|
+
import decimal
|
|
5
|
+
import io
|
|
6
|
+
import uuid
|
|
7
|
+
from typing import Iterable, overload, Union
|
|
8
|
+
from enum import Enum
|
|
9
|
+
from aspose.pydrawing import Point, PointF, Size, SizeF, Rectangle, RectangleF
|
|
10
|
+
|
|
11
|
+
class Blend:
|
|
12
|
+
|
|
13
|
+
@overload
|
|
14
|
+
def __init__(self) -> None:
|
|
15
|
+
...
|
|
16
|
+
|
|
17
|
+
@overload
|
|
18
|
+
def __init__(self, count: int) -> None:
|
|
19
|
+
...
|
|
20
|
+
|
|
21
|
+
@property
|
|
22
|
+
def factors(self) -> list[float]:
|
|
23
|
+
...
|
|
24
|
+
|
|
25
|
+
@factors.setter
|
|
26
|
+
def factors(self, value: list[float]) -> None:
|
|
27
|
+
...
|
|
28
|
+
|
|
29
|
+
@property
|
|
30
|
+
def positions(self) -> list[float]:
|
|
31
|
+
...
|
|
32
|
+
|
|
33
|
+
@positions.setter
|
|
34
|
+
def positions(self, value: list[float]) -> None:
|
|
35
|
+
...
|
|
36
|
+
|
|
37
|
+
...
|
|
38
|
+
|
|
39
|
+
class ColorBlend:
|
|
40
|
+
|
|
41
|
+
@overload
|
|
42
|
+
def __init__(self) -> None:
|
|
43
|
+
...
|
|
44
|
+
|
|
45
|
+
@overload
|
|
46
|
+
def __init__(self, count: int) -> None:
|
|
47
|
+
...
|
|
48
|
+
|
|
49
|
+
@property
|
|
50
|
+
def colors(self) -> list[aspose.pydrawing.Color]:
|
|
51
|
+
...
|
|
52
|
+
|
|
53
|
+
@colors.setter
|
|
54
|
+
def colors(self, value: list[aspose.pydrawing.Color]) -> None:
|
|
55
|
+
...
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
def positions(self) -> list[float]:
|
|
59
|
+
...
|
|
60
|
+
|
|
61
|
+
@positions.setter
|
|
62
|
+
def positions(self, value: list[float]) -> None:
|
|
63
|
+
...
|
|
64
|
+
|
|
65
|
+
...
|
|
66
|
+
|
|
67
|
+
class GraphicsContainer:
|
|
68
|
+
|
|
69
|
+
...
|
|
70
|
+
|
|
71
|
+
class HatchBrush:
|
|
72
|
+
|
|
73
|
+
@overload
|
|
74
|
+
def __init__(self, hatchstyle: aspose.pydrawing.drawing2d.HatchStyle, fore_color: aspose.pydrawing.Color) -> None:
|
|
75
|
+
...
|
|
76
|
+
|
|
77
|
+
@overload
|
|
78
|
+
def __init__(self, hatchstyle: aspose.pydrawing.drawing2d.HatchStyle, fore_color: aspose.pydrawing.Color, back_color: aspose.pydrawing.Color) -> None:
|
|
79
|
+
...
|
|
80
|
+
|
|
81
|
+
def clone(self) -> object:
|
|
82
|
+
...
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
def hatch_style(self) -> aspose.pydrawing.drawing2d.HatchStyle:
|
|
86
|
+
...
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
def foreground_color(self) -> aspose.pydrawing.Color:
|
|
90
|
+
...
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
def background_color(self) -> aspose.pydrawing.Color:
|
|
94
|
+
...
|
|
95
|
+
|
|
96
|
+
...
|
|
97
|
+
|
|
98
|
+
class LinearGradientBrush:
|
|
99
|
+
|
|
100
|
+
@overload
|
|
101
|
+
def __init__(self, point1: Union[Point, PointF], point2: Union[Point, PointF], color1: aspose.pydrawing.Color, color2: aspose.pydrawing.Color) -> None:
|
|
102
|
+
...
|
|
103
|
+
|
|
104
|
+
@overload
|
|
105
|
+
def __init__(self, rect: Union[Rectangle, RectangleF], color1: aspose.pydrawing.Color, color2: aspose.pydrawing.Color, linear_gradient_mode: aspose.pydrawing.drawing2d.LinearGradientMode) -> None:
|
|
106
|
+
...
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
@overload
|
|
110
|
+
def __init__(self, rect: Union[Rectangle, RectangleF], color1: aspose.pydrawing.Color, color2: aspose.pydrawing.Color, angle: float) -> None:
|
|
111
|
+
...
|
|
112
|
+
|
|
113
|
+
@overload
|
|
114
|
+
def __init__(self, rect: Union[Rectangle, RectangleF], color1: aspose.pydrawing.Color, color2: aspose.pydrawing.Color, angle: float, is_angle_scaleable: bool) -> None:
|
|
115
|
+
...
|
|
116
|
+
|
|
117
|
+
@overload
|
|
118
|
+
def set_sigma_bell_shape(self, focus: float) -> None:
|
|
119
|
+
...
|
|
120
|
+
|
|
121
|
+
@overload
|
|
122
|
+
def set_sigma_bell_shape(self, focus: float, scale: float) -> None:
|
|
123
|
+
...
|
|
124
|
+
|
|
125
|
+
@overload
|
|
126
|
+
def set_blend_triangular_shape(self, focus: float) -> None:
|
|
127
|
+
...
|
|
128
|
+
|
|
129
|
+
@overload
|
|
130
|
+
def set_blend_triangular_shape(self, focus: float, scale: float) -> None:
|
|
131
|
+
...
|
|
132
|
+
|
|
133
|
+
@overload
|
|
134
|
+
def multiply_transform(self, matrix: aspose.pydrawing.drawing2d.Matrix) -> None:
|
|
135
|
+
...
|
|
136
|
+
|
|
137
|
+
@overload
|
|
138
|
+
def multiply_transform(self, matrix: aspose.pydrawing.drawing2d.Matrix, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
139
|
+
...
|
|
140
|
+
|
|
141
|
+
@overload
|
|
142
|
+
def translate_transform(self, dx: float, dy: float) -> None:
|
|
143
|
+
...
|
|
144
|
+
|
|
145
|
+
@overload
|
|
146
|
+
def translate_transform(self, dx: float, dy: float, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
147
|
+
...
|
|
148
|
+
|
|
149
|
+
@overload
|
|
150
|
+
def scale_transform(self, sx: float, sy: float) -> None:
|
|
151
|
+
...
|
|
152
|
+
|
|
153
|
+
@overload
|
|
154
|
+
def scale_transform(self, sx: float, sy: float, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
155
|
+
...
|
|
156
|
+
|
|
157
|
+
@overload
|
|
158
|
+
def rotate_transform(self, angle: float) -> None:
|
|
159
|
+
...
|
|
160
|
+
|
|
161
|
+
@overload
|
|
162
|
+
def rotate_transform(self, angle: float, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
163
|
+
...
|
|
164
|
+
|
|
165
|
+
def clone(self) -> object:
|
|
166
|
+
...
|
|
167
|
+
|
|
168
|
+
def reset_transform(self) -> None:
|
|
169
|
+
...
|
|
170
|
+
|
|
171
|
+
@property
|
|
172
|
+
def linear_colors(self) -> list[aspose.pydrawing.Color]:
|
|
173
|
+
...
|
|
174
|
+
|
|
175
|
+
@linear_colors.setter
|
|
176
|
+
def linear_colors(self, value: list[aspose.pydrawing.Color]) -> None:
|
|
177
|
+
...
|
|
178
|
+
|
|
179
|
+
@property
|
|
180
|
+
def rectangle(self) -> aspose.pydrawing.RectangleF:
|
|
181
|
+
...
|
|
182
|
+
|
|
183
|
+
@property
|
|
184
|
+
def gamma_correction(self) -> bool:
|
|
185
|
+
...
|
|
186
|
+
|
|
187
|
+
@gamma_correction.setter
|
|
188
|
+
def gamma_correction(self, value: bool) -> None:
|
|
189
|
+
...
|
|
190
|
+
|
|
191
|
+
@property
|
|
192
|
+
def blend(self) -> aspose.pydrawing.drawing2d.Blend:
|
|
193
|
+
...
|
|
194
|
+
|
|
195
|
+
@blend.setter
|
|
196
|
+
def blend(self, value: aspose.pydrawing.drawing2d.Blend) -> None:
|
|
197
|
+
...
|
|
198
|
+
|
|
199
|
+
@property
|
|
200
|
+
def interpolation_colors(self) -> aspose.pydrawing.drawing2d.ColorBlend:
|
|
201
|
+
...
|
|
202
|
+
|
|
203
|
+
@interpolation_colors.setter
|
|
204
|
+
def interpolation_colors(self, value: aspose.pydrawing.drawing2d.ColorBlend) -> None:
|
|
205
|
+
...
|
|
206
|
+
|
|
207
|
+
@property
|
|
208
|
+
def wrap_mode(self) -> aspose.pydrawing.drawing2d.WrapMode:
|
|
209
|
+
...
|
|
210
|
+
|
|
211
|
+
@wrap_mode.setter
|
|
212
|
+
def wrap_mode(self, value: aspose.pydrawing.drawing2d.WrapMode) -> None:
|
|
213
|
+
...
|
|
214
|
+
|
|
215
|
+
@property
|
|
216
|
+
def transform(self) -> aspose.pydrawing.drawing2d.Matrix:
|
|
217
|
+
...
|
|
218
|
+
|
|
219
|
+
@transform.setter
|
|
220
|
+
def transform(self, value: aspose.pydrawing.drawing2d.Matrix) -> None:
|
|
221
|
+
...
|
|
222
|
+
|
|
223
|
+
...
|
|
224
|
+
|
|
225
|
+
class Matrix:
|
|
226
|
+
|
|
227
|
+
@overload
|
|
228
|
+
def __init__(self) -> None:
|
|
229
|
+
...
|
|
230
|
+
|
|
231
|
+
@overload
|
|
232
|
+
def __init__(self, m11: float, m12: float, m21: float, m22: float, dx: float, dy: float) -> None:
|
|
233
|
+
...
|
|
234
|
+
|
|
235
|
+
@overload
|
|
236
|
+
def __init__(self, rect: Union[Rectangle, RectangleF], plgpts: Union[list[Point], list[PointF]]) -> None:
|
|
237
|
+
...
|
|
238
|
+
|
|
239
|
+
@overload
|
|
240
|
+
def multiply(self, matrix: aspose.pydrawing.drawing2d.Matrix) -> None:
|
|
241
|
+
...
|
|
242
|
+
|
|
243
|
+
@overload
|
|
244
|
+
def multiply(self, matrix: aspose.pydrawing.drawing2d.Matrix, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
245
|
+
...
|
|
246
|
+
|
|
247
|
+
@overload
|
|
248
|
+
def translate(self, offset_x: float, offset_y: float) -> None:
|
|
249
|
+
...
|
|
250
|
+
|
|
251
|
+
@overload
|
|
252
|
+
def translate(self, offset_x: float, offset_y: float, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
253
|
+
...
|
|
254
|
+
|
|
255
|
+
@overload
|
|
256
|
+
def scale(self, scale_x: float, scale_y: float) -> None:
|
|
257
|
+
...
|
|
258
|
+
|
|
259
|
+
@overload
|
|
260
|
+
def scale(self, scale_x: float, scale_y: float, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
261
|
+
...
|
|
262
|
+
|
|
263
|
+
@overload
|
|
264
|
+
def rotate(self, angle: float) -> None:
|
|
265
|
+
...
|
|
266
|
+
|
|
267
|
+
@overload
|
|
268
|
+
def rotate(self, angle: float, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
269
|
+
...
|
|
270
|
+
|
|
271
|
+
@overload
|
|
272
|
+
def rotate_at(self, angle: float, point: aspose.pydrawing.PointF) -> None:
|
|
273
|
+
...
|
|
274
|
+
|
|
275
|
+
@overload
|
|
276
|
+
def rotate_at(self, angle: float, point: aspose.pydrawing.PointF, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
277
|
+
...
|
|
278
|
+
|
|
279
|
+
@overload
|
|
280
|
+
def shear(self, shear_x: float, shear_y: float) -> None:
|
|
281
|
+
...
|
|
282
|
+
|
|
283
|
+
@overload
|
|
284
|
+
def shear(self, shear_x: float, shear_y: float, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
285
|
+
...
|
|
286
|
+
|
|
287
|
+
def transform_points(self, pts: Union[list[Point], list[PointF]]) -> None:
|
|
288
|
+
...
|
|
289
|
+
|
|
290
|
+
def transform_vectors(self, pts: Union[list[PointF], list[Point]]) -> None:
|
|
291
|
+
...
|
|
292
|
+
|
|
293
|
+
def clone(self) -> aspose.pydrawing.drawing2d.Matrix:
|
|
294
|
+
...
|
|
295
|
+
|
|
296
|
+
def reset(self) -> None:
|
|
297
|
+
...
|
|
298
|
+
|
|
299
|
+
def invert(self) -> None:
|
|
300
|
+
...
|
|
301
|
+
|
|
302
|
+
def vector_transform_points(self, pts: list[aspose.pydrawing.Point]) -> None:
|
|
303
|
+
...
|
|
304
|
+
|
|
305
|
+
@property
|
|
306
|
+
def elements(self) -> list[float]:
|
|
307
|
+
...
|
|
308
|
+
|
|
309
|
+
@property
|
|
310
|
+
def offset_x(self) -> float:
|
|
311
|
+
...
|
|
312
|
+
|
|
313
|
+
@property
|
|
314
|
+
def offset_y(self) -> float:
|
|
315
|
+
...
|
|
316
|
+
|
|
317
|
+
@property
|
|
318
|
+
def is_invertible(self) -> bool:
|
|
319
|
+
...
|
|
320
|
+
|
|
321
|
+
@property
|
|
322
|
+
def is_identity(self) -> bool:
|
|
323
|
+
...
|
|
324
|
+
|
|
325
|
+
...
|
|
326
|
+
|
|
327
|
+
class PathData:
|
|
328
|
+
|
|
329
|
+
def __init__(self) -> None:
|
|
330
|
+
...
|
|
331
|
+
|
|
332
|
+
@property
|
|
333
|
+
def points(self) -> list[aspose.pydrawing.PointF]:
|
|
334
|
+
...
|
|
335
|
+
|
|
336
|
+
@points.setter
|
|
337
|
+
def points(self, value: list[aspose.pydrawing.PointF]) -> None:
|
|
338
|
+
...
|
|
339
|
+
|
|
340
|
+
@property
|
|
341
|
+
def types(self) -> bytes:
|
|
342
|
+
...
|
|
343
|
+
|
|
344
|
+
@types.setter
|
|
345
|
+
def types(self, value: bytes) -> None:
|
|
346
|
+
...
|
|
347
|
+
|
|
348
|
+
...
|
|
349
|
+
|
|
350
|
+
class PathGradientBrush:
|
|
351
|
+
|
|
352
|
+
@overload
|
|
353
|
+
def __init__(self, pointfs: list[aspose.pydrawing.PointF]) -> None:
|
|
354
|
+
...
|
|
355
|
+
|
|
356
|
+
@overload
|
|
357
|
+
def __init__(self, pointfs: list[aspose.pydrawing.PointF], wrap_mode: aspose.pydrawing.drawing2d.WrapMode) -> None:
|
|
358
|
+
...
|
|
359
|
+
|
|
360
|
+
@overload
|
|
361
|
+
def __init__(self, points: list[aspose.pydrawing.Point]) -> None:
|
|
362
|
+
...
|
|
363
|
+
|
|
364
|
+
@overload
|
|
365
|
+
def __init__(self, points: list[aspose.pydrawing.Point], wrap_mode: aspose.pydrawing.drawing2d.WrapMode) -> None:
|
|
366
|
+
...
|
|
367
|
+
|
|
368
|
+
@overload
|
|
369
|
+
def __init__(self, path: aspose.pydrawing.drawing2d.GraphicsPath) -> None:
|
|
370
|
+
...
|
|
371
|
+
|
|
372
|
+
@overload
|
|
373
|
+
def set_sigma_bell_shape(self, focus: float) -> None:
|
|
374
|
+
...
|
|
375
|
+
|
|
376
|
+
@overload
|
|
377
|
+
def set_sigma_bell_shape(self, focus: float, scale: float) -> None:
|
|
378
|
+
...
|
|
379
|
+
|
|
380
|
+
@overload
|
|
381
|
+
def set_blend_triangular_shape(self, focus: float) -> None:
|
|
382
|
+
...
|
|
383
|
+
|
|
384
|
+
@overload
|
|
385
|
+
def set_blend_triangular_shape(self, focus: float, scale: float) -> None:
|
|
386
|
+
...
|
|
387
|
+
|
|
388
|
+
@overload
|
|
389
|
+
def multiply_transform(self, matrix: aspose.pydrawing.drawing2d.Matrix) -> None:
|
|
390
|
+
...
|
|
391
|
+
|
|
392
|
+
@overload
|
|
393
|
+
def multiply_transform(self, matrix: aspose.pydrawing.drawing2d.Matrix, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
394
|
+
...
|
|
395
|
+
|
|
396
|
+
@overload
|
|
397
|
+
def translate_transform(self, dx: float, dy: float) -> None:
|
|
398
|
+
...
|
|
399
|
+
|
|
400
|
+
@overload
|
|
401
|
+
def translate_transform(self, dx: float, dy: float, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
402
|
+
...
|
|
403
|
+
|
|
404
|
+
@overload
|
|
405
|
+
def scale_transform(self, sx: float, sy: float) -> None:
|
|
406
|
+
...
|
|
407
|
+
|
|
408
|
+
@overload
|
|
409
|
+
def scale_transform(self, sx: float, sy: float, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
410
|
+
...
|
|
411
|
+
|
|
412
|
+
@overload
|
|
413
|
+
def rotate_transform(self, angle: float) -> None:
|
|
414
|
+
...
|
|
415
|
+
|
|
416
|
+
@overload
|
|
417
|
+
def rotate_transform(self, angle: float, order: aspose.pydrawing.drawing2d.MatrixOrder) -> None:
|
|
418
|
+
...
|
|
419
|
+
|
|
420
|
+
def clone(self) -> object:
|
|
421
|
+
...
|
|
422
|
+
|
|
423
|
+
def reset_transform(self) -> None:
|
|
424
|
+
...
|
|
425
|
+
|
|
426
|
+
@property
|
|
427
|
+
def center_color(self) -> aspose.pydrawing.Color:
|
|
428
|
+
...
|
|
429
|
+
|
|
430
|
+
@center_color.setter
|
|
431
|
+
def center_color(self, value: aspose.pydrawing.Color) -> None:
|
|
432
|
+
...
|
|
433
|
+
|
|
434
|
+
@property
|
|
435
|
+
def surround_colors(self) -> list[aspose.pydrawing.Color]:
|
|
436
|
+
...
|
|
437
|
+
|
|
438
|
+
@surround_colors.setter
|
|
439
|
+
def surround_colors(self, value: list[aspose.pydrawing.Color]) -> None:
|
|
440
|
+
...
|
|
441
|
+
|
|
442
|
+
@property
|
|
443
|
+
def center_point(self) -> aspose.pydrawing.PointF:
|
|
444
|
+
...
|
|
445
|
+
|
|
446
|
+
@center_point.setter
|
|
447
|
+
def center_point(self, value: aspose.pydrawing.PointF) -> None:
|
|
448
|
+
...
|
|
449
|
+
|
|
450
|
+
@property
|
|
451
|
+
def rectangle(self) -> aspose.pydrawing.RectangleF:
|
|
452
|
+
...
|
|
453
|
+
|
|
454
|
+
@property
|
|
455
|
+
def blend(self) -> aspose.pydrawing.drawing2d.Blend:
|
|
456
|
+
...
|
|
457
|
+
|
|
458
|
+
@blend.setter
|
|
459
|
+
def blend(self, value: aspose.pydrawing.drawing2d.Blend) -> None:
|
|
460
|
+
...
|
|
461
|
+
|
|
462
|
+
@property
|
|
463
|
+
def interpolation_colors(self) -> aspose.pydrawing.drawing2d.ColorBlend:
|
|
464
|
+
...
|
|
465
|
+
|
|
466
|
+
@interpolation_colors.setter
|
|
467
|
+
def interpolation_colors(self, value: aspose.pydrawing.drawing2d.ColorBlend) -> None:
|
|
468
|
+
...
|
|
469
|
+
|
|
470
|
+
@property
|
|
471
|
+
def transform(self) -> aspose.pydrawing.drawing2d.Matrix:
|
|
472
|
+
...
|
|
473
|
+
|
|
474
|
+
@transform.setter
|
|
475
|
+
def transform(self, value: aspose.pydrawing.drawing2d.Matrix) -> None:
|
|
476
|
+
...
|
|
477
|
+
|
|
478
|
+
@property
|
|
479
|
+
def focus_scales(self) -> aspose.pydrawing.PointF:
|
|
480
|
+
...
|
|
481
|
+
|
|
482
|
+
@focus_scales.setter
|
|
483
|
+
def focus_scales(self, value: aspose.pydrawing.PointF) -> None:
|
|
484
|
+
...
|
|
485
|
+
|
|
486
|
+
@property
|
|
487
|
+
def wrap_mode(self) -> aspose.pydrawing.drawing2d.WrapMode:
|
|
488
|
+
...
|
|
489
|
+
|
|
490
|
+
@wrap_mode.setter
|
|
491
|
+
def wrap_mode(self, value: aspose.pydrawing.drawing2d.WrapMode) -> None:
|
|
492
|
+
...
|
|
493
|
+
|
|
494
|
+
...
|
|
495
|
+
|
|
496
|
+
class RegionData:
|
|
497
|
+
|
|
498
|
+
@property
|
|
499
|
+
def data(self) -> bytes:
|
|
500
|
+
...
|
|
501
|
+
|
|
502
|
+
@data.setter
|
|
503
|
+
def data(self, value: bytes) -> None:
|
|
504
|
+
...
|
|
505
|
+
|
|
506
|
+
...
|
|
507
|
+
|
|
508
|
+
class AdjustableArrowCap:
|
|
509
|
+
|
|
510
|
+
@overload
|
|
511
|
+
def __init__(self, width: float, height: float) -> None:
|
|
512
|
+
...
|
|
513
|
+
|
|
514
|
+
@overload
|
|
515
|
+
def __init__(self, width: float, height: float, is_filled: bool) -> None:
|
|
516
|
+
...
|
|
517
|
+
|
|
518
|
+
def clone(self) -> object:
|
|
519
|
+
...
|
|
520
|
+
|
|
521
|
+
def set_stroke_caps(self, start_cap: aspose.pydrawing.drawing2d.LineCap, end_cap: aspose.pydrawing.drawing2d.LineCap) -> None:
|
|
522
|
+
...
|
|
523
|
+
|
|
524
|
+
def get_stroke_caps(self, start_cap: aspose.pydrawing.drawing2d.LineCap, end_cap: aspose.pydrawing.drawing2d.LineCap) -> None:
|
|
525
|
+
...
|
|
526
|
+
|
|
527
|
+
@property
|
|
528
|
+
def stroke_join(self) -> aspose.pydrawing.drawing2d.LineJoin:
|
|
529
|
+
...
|
|
530
|
+
|
|
531
|
+
@stroke_join.setter
|
|
532
|
+
def stroke_join(self, value: aspose.pydrawing.drawing2d.LineJoin) -> None:
|
|
533
|
+
...
|
|
534
|
+
|
|
535
|
+
@property
|
|
536
|
+
def base_cap(self) -> aspose.pydrawing.drawing2d.LineCap:
|
|
537
|
+
...
|
|
538
|
+
|
|
539
|
+
@base_cap.setter
|
|
540
|
+
def base_cap(self, value: aspose.pydrawing.drawing2d.LineCap) -> None:
|
|
541
|
+
...
|
|
542
|
+
|
|
543
|
+
@property
|
|
544
|
+
def base_inset(self) -> float:
|
|
545
|
+
...
|
|
546
|
+
|
|
547
|
+
@base_inset.setter
|
|
548
|
+
def base_inset(self, value: float) -> None:
|
|
549
|
+
...
|
|
550
|
+
|
|
551
|
+
@property
|
|
552
|
+
def width_scale(self) -> float:
|
|
553
|
+
...
|
|
554
|
+
|
|
555
|
+
@width_scale.setter
|
|
556
|
+
def width_scale(self, value: float) -> None:
|
|
557
|
+
...
|
|
558
|
+
|
|
559
|
+
@property
|
|
560
|
+
def height(self) -> float:
|
|
561
|
+
...
|
|
562
|
+
|
|
563
|
+
@height.setter
|
|
564
|
+
def height(self, value: float) -> None:
|
|
565
|
+
...
|
|
566
|
+
|
|
567
|
+
@property
|
|
568
|
+
def width(self) -> float:
|
|
569
|
+
...
|
|
570
|
+
|
|
571
|
+
@width.setter
|
|
572
|
+
def width(self, value: float) -> None:
|
|
573
|
+
...
|
|
574
|
+
|
|
575
|
+
@property
|
|
576
|
+
def middle_inset(self) -> float:
|
|
577
|
+
...
|
|
578
|
+
|
|
579
|
+
@middle_inset.setter
|
|
580
|
+
def middle_inset(self, value: float) -> None:
|
|
581
|
+
...
|
|
582
|
+
|
|
583
|
+
@property
|
|
584
|
+
def filled(self) -> bool:
|
|
585
|
+
...
|
|
586
|
+
|
|
587
|
+
@filled.setter
|
|
588
|
+
def filled(self, value: bool) -> None:
|
|
589
|
+
...
|
|
590
|
+
|
|
591
|
+
...
|
|
592
|
+
|
|
593
|
+
class CustomLineCap:
|
|
594
|
+
|
|
595
|
+
@overload
|
|
596
|
+
def __init__(self, fill_path: aspose.pydrawing.drawing2d.GraphicsPath, stroke_path: aspose.pydrawing.drawing2d.GraphicsPath) -> None:
|
|
597
|
+
...
|
|
598
|
+
|
|
599
|
+
@overload
|
|
600
|
+
def __init__(self, fill_path: aspose.pydrawing.drawing2d.GraphicsPath, stroke_path: aspose.pydrawing.drawing2d.GraphicsPath, base_cap: aspose.pydrawing.drawing2d.LineCap) -> None:
|
|
601
|
+
...
|
|
602
|
+
|
|
603
|
+
@overload
|
|
604
|
+
def __init__(self, fill_path: aspose.pydrawing.drawing2d.GraphicsPath, stroke_path: aspose.pydrawing.drawing2d.GraphicsPath, base_cap: aspose.pydrawing.drawing2d.LineCap, base_inset: float) -> None:
|
|
605
|
+
...
|
|
606
|
+
|
|
607
|
+
def clone(self) -> object:
|
|
608
|
+
...
|
|
609
|
+
|
|
610
|
+
def set_stroke_caps(self, start_cap: aspose.pydrawing.drawing2d.LineCap, end_cap: aspose.pydrawing.drawing2d.LineCap) -> None:
|
|
611
|
+
...
|
|
612
|
+
|
|
613
|
+
def get_stroke_caps(self, start_cap: aspose.pydrawing.drawing2d.LineCap, end_cap: aspose.pydrawing.drawing2d.LineCap) -> None:
|
|
614
|
+
...
|
|
615
|
+
|
|
616
|
+
@property
|
|
617
|
+
def stroke_join(self) -> aspose.pydrawing.drawing2d.LineJoin:
|
|
618
|
+
...
|
|
619
|
+
|
|
620
|
+
@stroke_join.setter
|
|
621
|
+
def stroke_join(self, value: aspose.pydrawing.drawing2d.LineJoin) -> None:
|
|
622
|
+
...
|
|
623
|
+
|
|
624
|
+
@property
|
|
625
|
+
def base_cap(self) -> aspose.pydrawing.drawing2d.LineCap:
|
|
626
|
+
...
|
|
627
|
+
|
|
628
|
+
@base_cap.setter
|
|
629
|
+
def base_cap(self, value: aspose.pydrawing.drawing2d.LineCap) -> None:
|
|
630
|
+
...
|
|
631
|
+
|
|
632
|
+
@property
|
|
633
|
+
def base_inset(self) -> float:
|
|
634
|
+
...
|
|
635
|
+
|
|
636
|
+
@base_inset.setter
|
|
637
|
+
def base_inset(self, value: float) -> None:
|
|
638
|
+
...
|
|
639
|
+
|
|
640
|
+
@property
|
|
641
|
+
def width_scale(self) -> float:
|
|
642
|
+
...
|
|
643
|
+
|
|
644
|
+
@width_scale.setter
|
|
645
|
+
def width_scale(self, value: float) -> None:
|
|
646
|
+
...
|
|
647
|
+
|
|
648
|
+
...
|
|
649
|
+
|
|
650
|
+
class GraphicsPathIterator:
|
|
651
|
+
|
|
652
|
+
def __init__(self, path: aspose.pydrawing.drawing2d.GraphicsPath) -> None:
|
|
653
|
+
...
|
|
654
|
+
|
|
655
|
+
@overload
|
|
656
|
+
def next_subpath(self, start_index: int, end_index: int, is_closed: bool) -> int:
|
|
657
|
+
...
|
|
658
|
+
|
|
659
|
+
@overload
|
|
660
|
+
def next_subpath(self, path: aspose.pydrawing.drawing2d.GraphicsPath, is_closed: bool) -> int:
|
|
661
|
+
...
|
|
662
|
+
|
|
663
|
+
@overload
|
|
664
|
+
def next_marker(self, start_index: int, end_index: int) -> int:
|
|
665
|
+
...
|
|
666
|
+
|
|
667
|
+
@overload
|
|
668
|
+
def next_marker(self, path: aspose.pydrawing.drawing2d.GraphicsPath) -> int:
|
|
669
|
+
...
|
|
670
|
+
|
|
671
|
+
def next_path_type(self, path_type: int, start_index: int, end_index: int) -> int:
|
|
672
|
+
...
|
|
673
|
+
|
|
674
|
+
def has_curve(self) -> bool:
|
|
675
|
+
...
|
|
676
|
+
|
|
677
|
+
def rewind(self) -> None:
|
|
678
|
+
...
|
|
679
|
+
|
|
680
|
+
def enumerate(self, points: list[aspose.pydrawing.PointF], types: bytes) -> int:
|
|
681
|
+
...
|
|
682
|
+
|
|
683
|
+
def copy_data(self, points: list[aspose.pydrawing.PointF], types: bytes, start_index: int, end_index: int) -> int:
|
|
684
|
+
...
|
|
685
|
+
|
|
686
|
+
@property
|
|
687
|
+
def count(self) -> int:
|
|
688
|
+
...
|
|
689
|
+
|
|
690
|
+
@property
|
|
691
|
+
def subpath_count(self) -> int:
|
|
692
|
+
...
|
|
693
|
+
|
|
694
|
+
...
|
|
695
|
+
|
|
696
|
+
class GraphicsState:
|
|
697
|
+
|
|
698
|
+
...
|
|
699
|
+
|
|
700
|
+
class GraphicsPath:
|
|
701
|
+
|
|
702
|
+
@overload
|
|
703
|
+
def __init__(self) -> None:
|
|
704
|
+
...
|
|
705
|
+
|
|
706
|
+
@overload
|
|
707
|
+
def __init__(self, fill_mode: aspose.pydrawing.drawing2d.FillMode) -> None:
|
|
708
|
+
...
|
|
709
|
+
|
|
710
|
+
@overload
|
|
711
|
+
def __init__(self, pts: Union[list[Point], list[PointF]], types: bytes) -> None:
|
|
712
|
+
...
|
|
713
|
+
|
|
714
|
+
@overload
|
|
715
|
+
def __init__(self, pts: Union[list[PointF], list[Point]], types: bytes, fill_mode: aspose.pydrawing.drawing2d.FillMode) -> None:
|
|
716
|
+
...
|
|
717
|
+
|
|
718
|
+
@overload
|
|
719
|
+
def is_visible(self, x: Union[int, float], y: Union[int, float]) -> bool:
|
|
720
|
+
...
|
|
721
|
+
|
|
722
|
+
@overload
|
|
723
|
+
def is_visible(self, point: Union[Point, PointF]) -> bool:
|
|
724
|
+
...
|
|
725
|
+
|
|
726
|
+
@overload
|
|
727
|
+
def is_visible(self, x: Union[int, float], y: Union[int, float], graphics: aspose.pydrawing.Graphics) -> bool:
|
|
728
|
+
...
|
|
729
|
+
|
|
730
|
+
@overload
|
|
731
|
+
def is_visible(self, pt: Union[Point, PointF], graphics: aspose.pydrawing.Graphics) -> bool:
|
|
732
|
+
...
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
@overload
|
|
736
|
+
def is_outline_visible(self, x: Union[int, float], y: Union[int, float], pen: aspose.pydrawing.Pen) -> bool:
|
|
737
|
+
...
|
|
738
|
+
|
|
739
|
+
@overload
|
|
740
|
+
def is_outline_visible(self, point: Union[Point, PointF], pen: aspose.pydrawing.Pen) -> bool:
|
|
741
|
+
...
|
|
742
|
+
|
|
743
|
+
@overload
|
|
744
|
+
def is_outline_visible(self, x: Union[int, float], y: Union[int, float], pen: aspose.pydrawing.Pen, graphics: aspose.pydrawing.Graphics) -> bool:
|
|
745
|
+
...
|
|
746
|
+
|
|
747
|
+
@overload
|
|
748
|
+
def is_outline_visible(self, pt: aspose.pydrawing.Point, pen: aspose.pydrawing.Pen, graphics: aspose.pydrawing.Graphics) -> bool:
|
|
749
|
+
...
|
|
750
|
+
|
|
751
|
+
@overload
|
|
752
|
+
def add_line(self, pt1: Union[Point, PointF], pt2: Union[Point, PointF]) -> None:
|
|
753
|
+
...
|
|
754
|
+
|
|
755
|
+
@overload
|
|
756
|
+
def add_line(self, x1: Union[int, float], y1: Union[int, float], x2: Union[int, float], y2: Union[int, float]) -> None:
|
|
757
|
+
...
|
|
758
|
+
|
|
759
|
+
def add_lines(self, points: Union[list[Point], list[PointF]]) -> None:
|
|
760
|
+
...
|
|
761
|
+
|
|
762
|
+
@overload
|
|
763
|
+
def add_arc(self, rect: Union[aspose.pydrawing.RectangleF, aspose.pydrawing.Rectangle], start_angle: float, sweep_angle: float) -> None:
|
|
764
|
+
...
|
|
765
|
+
|
|
766
|
+
@overload
|
|
767
|
+
def add_arc(self, x: Union[int, float], y: Union[int, float], width: Union[int, float], height: Union[int, float], start_angle: float, sweep_angle: float) -> None:
|
|
768
|
+
...
|
|
769
|
+
|
|
770
|
+
@overload
|
|
771
|
+
def add_bezier(self, pt1: Union[Point, PointF], pt2: Union[Point, PointF], pt3: Union[Point, PointF], pt4: Union[Point, PointF]) -> None:
|
|
772
|
+
...
|
|
773
|
+
|
|
774
|
+
@overload
|
|
775
|
+
def add_bezier(self, x1: Union[float, int], y1: Union[float, int], x2: Union[float, int], y2: Union[float, int], x3: Union[float, int], y3: Union[float, int], x4: Union[float, int], y4: Union[float, int]) -> None:
|
|
776
|
+
...
|
|
777
|
+
|
|
778
|
+
def add_beziers(self, points: Union[list[aspose.pydrawing.Point], list[aspose.pydrawing.PointF]]) -> None:
|
|
779
|
+
...
|
|
780
|
+
|
|
781
|
+
@overload
|
|
782
|
+
def add_curve(self, points: Union[list[aspose.pydrawing.Point], list[aspose.pydrawing.PointF]]) -> None:
|
|
783
|
+
...
|
|
784
|
+
|
|
785
|
+
@overload
|
|
786
|
+
def add_curve(self, points: Union[list[aspose.pydrawing.Point], list[aspose.pydrawing.PointF]], tension: float) -> None:
|
|
787
|
+
...
|
|
788
|
+
|
|
789
|
+
@overload
|
|
790
|
+
def add_curve(self, points: Union[list[aspose.pydrawing.Point], list[aspose.pydrawing.PointF]], offset: int, number_of_segments: int, tension: float) -> None:
|
|
791
|
+
...
|
|
792
|
+
|
|
793
|
+
@overload
|
|
794
|
+
def add_closed_curve(self, points: Union[list[aspose.pydrawing.Point], list[aspose.pydrawing.PointF]]) -> None:
|
|
795
|
+
...
|
|
796
|
+
|
|
797
|
+
@overload
|
|
798
|
+
def add_closed_curve(self, points: Union[list[aspose.pydrawing.PointF], list[aspose.pydrawing.Point]], tension: float) -> None:
|
|
799
|
+
...
|
|
800
|
+
|
|
801
|
+
def add_rectangle(self, rect: Union[aspose.pydrawing.Rectangle, aspose.pydrawing.RectangleF]) -> None:
|
|
802
|
+
...
|
|
803
|
+
|
|
804
|
+
def add_rectangles(self, rects: Union[list[aspose.pydrawing.RectangleF], list[aspose.pydrawing.Rectangle]]) -> None:
|
|
805
|
+
...
|
|
806
|
+
|
|
807
|
+
@overload
|
|
808
|
+
def add_ellipse(self, rect: Union[aspose.pydrawing.Rectangle, aspose.pydrawing.RectangleF]) -> None:
|
|
809
|
+
...
|
|
810
|
+
|
|
811
|
+
@overload
|
|
812
|
+
def add_ellipse(self, x: Union[float, int], y: Union[float, int], width: Union[float, int], height: Union[float, int]) -> None:
|
|
813
|
+
...
|
|
814
|
+
|
|
815
|
+
@overload
|
|
816
|
+
def add_pie(self, rect: aspose.pydrawing.Rectangle, start_angle: float, sweep_angle: float) -> None:
|
|
817
|
+
...
|
|
818
|
+
|
|
819
|
+
@overload
|
|
820
|
+
def add_pie(self, x: Union[float, int], y: Union[float, int], width: Union[float, int], height: Union[float, int], start_angle: float, sweep_angle: float) -> None:
|
|
821
|
+
...
|
|
822
|
+
|
|
823
|
+
def add_polygon(self, points: Union[list[aspose.pydrawing.PointF], list[aspose.pydrawing.Point]]) -> None:
|
|
824
|
+
...
|
|
825
|
+
|
|
826
|
+
@overload
|
|
827
|
+
def add_string(self, s: str, family: aspose.pydrawing.FontFamily, style: int, em_size: float, origin: Union[aspose.pydrawing.Point, aspose.pydrawing.PointF], format: aspose.pydrawing.StringFormat) -> None:
|
|
828
|
+
...
|
|
829
|
+
|
|
830
|
+
@overload
|
|
831
|
+
def add_string(self, s: str, family: aspose.pydrawing.FontFamily, style: int, em_size: float, layout_rect: Union[aspose.pydrawing.Rectangle, aspose.pydrawing.RectangleF], format: aspose.pydrawing.StringFormat) -> None:
|
|
832
|
+
...
|
|
833
|
+
|
|
834
|
+
@overload
|
|
835
|
+
def get_bounds(self) -> aspose.pydrawing.RectangleF:
|
|
836
|
+
...
|
|
837
|
+
|
|
838
|
+
@overload
|
|
839
|
+
def get_bounds(self, matrix: aspose.pydrawing.drawing2d.Matrix) -> aspose.pydrawing.RectangleF:
|
|
840
|
+
...
|
|
841
|
+
|
|
842
|
+
@overload
|
|
843
|
+
def get_bounds(self, matrix: aspose.pydrawing.drawing2d.Matrix, pen: aspose.pydrawing.Pen) -> aspose.pydrawing.RectangleF:
|
|
844
|
+
...
|
|
845
|
+
|
|
846
|
+
@overload
|
|
847
|
+
def flatten(self) -> None:
|
|
848
|
+
...
|
|
849
|
+
|
|
850
|
+
@overload
|
|
851
|
+
def flatten(self, matrix: aspose.pydrawing.drawing2d.Matrix) -> None:
|
|
852
|
+
...
|
|
853
|
+
|
|
854
|
+
@overload
|
|
855
|
+
def flatten(self, matrix: aspose.pydrawing.drawing2d.Matrix, flatness: float) -> None:
|
|
856
|
+
...
|
|
857
|
+
|
|
858
|
+
@overload
|
|
859
|
+
def widen(self, pen: aspose.pydrawing.Pen) -> None:
|
|
860
|
+
...
|
|
861
|
+
|
|
862
|
+
@overload
|
|
863
|
+
def widen(self, pen: aspose.pydrawing.Pen, matrix: aspose.pydrawing.drawing2d.Matrix) -> None:
|
|
864
|
+
...
|
|
865
|
+
|
|
866
|
+
@overload
|
|
867
|
+
def widen(self, pen: aspose.pydrawing.Pen, matrix: aspose.pydrawing.drawing2d.Matrix, flatness: float) -> None:
|
|
868
|
+
...
|
|
869
|
+
|
|
870
|
+
@overload
|
|
871
|
+
def warp(self, dest_points: list[aspose.pydrawing.PointF], src_rect: aspose.pydrawing.RectangleF) -> None:
|
|
872
|
+
...
|
|
873
|
+
|
|
874
|
+
@overload
|
|
875
|
+
def warp(self, dest_points: list[aspose.pydrawing.PointF], src_rect: aspose.pydrawing.RectangleF, matrix: aspose.pydrawing.drawing2d.Matrix) -> None:
|
|
876
|
+
...
|
|
877
|
+
|
|
878
|
+
@overload
|
|
879
|
+
def warp(self, dest_points: list[aspose.pydrawing.PointF], src_rect: aspose.pydrawing.RectangleF, matrix: aspose.pydrawing.drawing2d.Matrix, warp_mode: aspose.pydrawing.drawing2d.WarpMode) -> None:
|
|
880
|
+
...
|
|
881
|
+
|
|
882
|
+
@overload
|
|
883
|
+
def warp(self, dest_points: list[aspose.pydrawing.PointF], src_rect: aspose.pydrawing.RectangleF, matrix: aspose.pydrawing.drawing2d.Matrix, warp_mode: aspose.pydrawing.drawing2d.WarpMode, flatness: float) -> None:
|
|
884
|
+
...
|
|
885
|
+
|
|
886
|
+
def clone(self) -> object:
|
|
887
|
+
...
|
|
888
|
+
|
|
889
|
+
def reset(self) -> None:
|
|
890
|
+
...
|
|
891
|
+
|
|
892
|
+
def start_figure(self) -> None:
|
|
893
|
+
...
|
|
894
|
+
|
|
895
|
+
def close_figure(self) -> None:
|
|
896
|
+
...
|
|
897
|
+
|
|
898
|
+
def close_all_figures(self) -> None:
|
|
899
|
+
...
|
|
900
|
+
|
|
901
|
+
def set_markers(self) -> None:
|
|
902
|
+
...
|
|
903
|
+
|
|
904
|
+
def clear_markers(self) -> None:
|
|
905
|
+
...
|
|
906
|
+
|
|
907
|
+
def reverse(self) -> None:
|
|
908
|
+
...
|
|
909
|
+
|
|
910
|
+
def get_last_point(self) -> aspose.pydrawing.PointF:
|
|
911
|
+
...
|
|
912
|
+
|
|
913
|
+
def add_path(self, adding_path: aspose.pydrawing.drawing2d.GraphicsPath, connect: bool) -> None:
|
|
914
|
+
...
|
|
915
|
+
|
|
916
|
+
def transform(self, matrix: aspose.pydrawing.drawing2d.Matrix) -> None:
|
|
917
|
+
...
|
|
918
|
+
|
|
919
|
+
@property
|
|
920
|
+
def fill_mode(self) -> aspose.pydrawing.drawing2d.FillMode:
|
|
921
|
+
...
|
|
922
|
+
|
|
923
|
+
@fill_mode.setter
|
|
924
|
+
def fill_mode(self, value: aspose.pydrawing.drawing2d.FillMode) -> None:
|
|
925
|
+
...
|
|
926
|
+
|
|
927
|
+
@property
|
|
928
|
+
def path_data(self) -> aspose.pydrawing.drawing2d.PathData:
|
|
929
|
+
...
|
|
930
|
+
|
|
931
|
+
@property
|
|
932
|
+
def point_count(self) -> int:
|
|
933
|
+
...
|
|
934
|
+
|
|
935
|
+
@property
|
|
936
|
+
def path_types(self) -> bytes:
|
|
937
|
+
...
|
|
938
|
+
|
|
939
|
+
@property
|
|
940
|
+
def path_points(self) -> list[aspose.pydrawing.PointF]:
|
|
941
|
+
...
|
|
942
|
+
|
|
943
|
+
...
|
|
944
|
+
|
|
945
|
+
class CombineMode(Enum):
|
|
946
|
+
|
|
947
|
+
REPLACE: int
|
|
948
|
+
|
|
949
|
+
INTERSECT: int
|
|
950
|
+
|
|
951
|
+
UNION: int
|
|
952
|
+
|
|
953
|
+
XOR: int
|
|
954
|
+
|
|
955
|
+
EXCLUDE: int
|
|
956
|
+
|
|
957
|
+
COMPLEMENT: int
|
|
958
|
+
|
|
959
|
+
|
|
960
|
+
class CompositingMode(Enum):
|
|
961
|
+
|
|
962
|
+
SOURCE_OVER: int
|
|
963
|
+
|
|
964
|
+
SOURCE_COPY: int
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
class CompositingQuality(Enum):
|
|
968
|
+
|
|
969
|
+
INVALID: int
|
|
970
|
+
|
|
971
|
+
DEFAULT: int
|
|
972
|
+
|
|
973
|
+
HIGH_SPEED: int
|
|
974
|
+
|
|
975
|
+
HIGH_QUALITY: int
|
|
976
|
+
|
|
977
|
+
GAMMA_CORRECTED: int
|
|
978
|
+
|
|
979
|
+
ASSUME_LINEAR: int
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
class CoordinateSpace(Enum):
|
|
983
|
+
|
|
984
|
+
WORLD: int
|
|
985
|
+
|
|
986
|
+
PAGE: int
|
|
987
|
+
|
|
988
|
+
DEVICE: int
|
|
989
|
+
|
|
990
|
+
|
|
991
|
+
class DashStyle(Enum):
|
|
992
|
+
|
|
993
|
+
SOLID: int
|
|
994
|
+
|
|
995
|
+
DASH: int
|
|
996
|
+
|
|
997
|
+
DOT: int
|
|
998
|
+
|
|
999
|
+
DASH_DOT: int
|
|
1000
|
+
|
|
1001
|
+
DASH_DOT_DOT: int
|
|
1002
|
+
|
|
1003
|
+
CUSTOM: int
|
|
1004
|
+
|
|
1005
|
+
|
|
1006
|
+
class FillMode(Enum):
|
|
1007
|
+
|
|
1008
|
+
ALTERNATE: int
|
|
1009
|
+
|
|
1010
|
+
WINDING: int
|
|
1011
|
+
|
|
1012
|
+
|
|
1013
|
+
class FlushIntention(Enum):
|
|
1014
|
+
|
|
1015
|
+
FLUSH: int
|
|
1016
|
+
|
|
1017
|
+
SYNC: int
|
|
1018
|
+
|
|
1019
|
+
|
|
1020
|
+
class HatchStyle(Enum):
|
|
1021
|
+
|
|
1022
|
+
HORIZONTAL: int
|
|
1023
|
+
|
|
1024
|
+
VERTICAL: int
|
|
1025
|
+
|
|
1026
|
+
FORWARD_DIAGONAL: int
|
|
1027
|
+
|
|
1028
|
+
BACKWARD_DIAGONAL: int
|
|
1029
|
+
|
|
1030
|
+
CROSS: int
|
|
1031
|
+
|
|
1032
|
+
DIAGONAL_CROSS: int
|
|
1033
|
+
|
|
1034
|
+
PERCENT05: int
|
|
1035
|
+
|
|
1036
|
+
PERCENT10: int
|
|
1037
|
+
|
|
1038
|
+
PERCENT20: int
|
|
1039
|
+
|
|
1040
|
+
PERCENT25: int
|
|
1041
|
+
|
|
1042
|
+
PERCENT30: int
|
|
1043
|
+
|
|
1044
|
+
PERCENT40: int
|
|
1045
|
+
|
|
1046
|
+
PERCENT50: int
|
|
1047
|
+
|
|
1048
|
+
PERCENT60: int
|
|
1049
|
+
|
|
1050
|
+
PERCENT70: int
|
|
1051
|
+
|
|
1052
|
+
PERCENT75: int
|
|
1053
|
+
|
|
1054
|
+
PERCENT80: int
|
|
1055
|
+
|
|
1056
|
+
PERCENT90: int
|
|
1057
|
+
|
|
1058
|
+
LIGHT_DOWNWARD_DIAGONAL: int
|
|
1059
|
+
|
|
1060
|
+
LIGHT_UPWARD_DIAGONAL: int
|
|
1061
|
+
|
|
1062
|
+
DARK_DOWNWARD_DIAGONAL: int
|
|
1063
|
+
|
|
1064
|
+
DARK_UPWARD_DIAGONAL: int
|
|
1065
|
+
|
|
1066
|
+
WIDE_DOWNWARD_DIAGONAL: int
|
|
1067
|
+
|
|
1068
|
+
WIDE_UPWARD_DIAGONAL: int
|
|
1069
|
+
|
|
1070
|
+
LIGHT_VERTICAL: int
|
|
1071
|
+
|
|
1072
|
+
LIGHT_HORIZONTAL: int
|
|
1073
|
+
|
|
1074
|
+
NARROW_VERTICAL: int
|
|
1075
|
+
|
|
1076
|
+
NARROW_HORIZONTAL: int
|
|
1077
|
+
|
|
1078
|
+
DARK_VERTICAL: int
|
|
1079
|
+
|
|
1080
|
+
DARK_HORIZONTAL: int
|
|
1081
|
+
|
|
1082
|
+
DASHED_DOWNWARD_DIAGONAL: int
|
|
1083
|
+
|
|
1084
|
+
DASHED_UPWARD_DIAGONAL: int
|
|
1085
|
+
|
|
1086
|
+
DASHED_HORIZONTAL: int
|
|
1087
|
+
|
|
1088
|
+
DASHED_VERTICAL: int
|
|
1089
|
+
|
|
1090
|
+
SMALL_CONFETTI: int
|
|
1091
|
+
|
|
1092
|
+
LARGE_CONFETTI: int
|
|
1093
|
+
|
|
1094
|
+
ZIG_ZAG: int
|
|
1095
|
+
|
|
1096
|
+
WAVE: int
|
|
1097
|
+
|
|
1098
|
+
DIAGONAL_BRICK: int
|
|
1099
|
+
|
|
1100
|
+
HORIZONTAL_BRICK: int
|
|
1101
|
+
|
|
1102
|
+
WEAVE: int
|
|
1103
|
+
|
|
1104
|
+
PLAID: int
|
|
1105
|
+
|
|
1106
|
+
DIVOT: int
|
|
1107
|
+
|
|
1108
|
+
DOTTED_GRID: int
|
|
1109
|
+
|
|
1110
|
+
DOTTED_DIAMOND: int
|
|
1111
|
+
|
|
1112
|
+
SHINGLE: int
|
|
1113
|
+
|
|
1114
|
+
TRELLIS: int
|
|
1115
|
+
|
|
1116
|
+
SPHERE: int
|
|
1117
|
+
|
|
1118
|
+
SMALL_GRID: int
|
|
1119
|
+
|
|
1120
|
+
SMALL_CHECKER_BOARD: int
|
|
1121
|
+
|
|
1122
|
+
LARGE_CHECKER_BOARD: int
|
|
1123
|
+
|
|
1124
|
+
OUTLINED_DIAMOND: int
|
|
1125
|
+
|
|
1126
|
+
SOLID_DIAMOND: int
|
|
1127
|
+
|
|
1128
|
+
LARGE_GRID: int
|
|
1129
|
+
|
|
1130
|
+
MIN: int
|
|
1131
|
+
|
|
1132
|
+
MAX: int
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
class InterpolationMode(Enum):
|
|
1136
|
+
|
|
1137
|
+
INVALID: int
|
|
1138
|
+
|
|
1139
|
+
DEFAULT: int
|
|
1140
|
+
|
|
1141
|
+
LOW: int
|
|
1142
|
+
|
|
1143
|
+
HIGH: int
|
|
1144
|
+
|
|
1145
|
+
BILINEAR: int
|
|
1146
|
+
|
|
1147
|
+
BICUBIC: int
|
|
1148
|
+
|
|
1149
|
+
NEAREST_NEIGHBOR: int
|
|
1150
|
+
|
|
1151
|
+
HIGH_QUALITY_BILINEAR: int
|
|
1152
|
+
|
|
1153
|
+
HIGH_QUALITY_BICUBIC: int
|
|
1154
|
+
|
|
1155
|
+
|
|
1156
|
+
class LinearGradientMode(Enum):
|
|
1157
|
+
|
|
1158
|
+
HORIZONTAL: int
|
|
1159
|
+
|
|
1160
|
+
VERTICAL: int
|
|
1161
|
+
|
|
1162
|
+
FORWARD_DIAGONAL: int
|
|
1163
|
+
|
|
1164
|
+
BACKWARD_DIAGONAL: int
|
|
1165
|
+
|
|
1166
|
+
|
|
1167
|
+
class LineCap(Enum):
|
|
1168
|
+
|
|
1169
|
+
FLAT: int
|
|
1170
|
+
|
|
1171
|
+
SQUARE: int
|
|
1172
|
+
|
|
1173
|
+
ROUND: int
|
|
1174
|
+
|
|
1175
|
+
TRIANGLE: int
|
|
1176
|
+
|
|
1177
|
+
NO_ANCHOR: int
|
|
1178
|
+
|
|
1179
|
+
SQUARE_ANCHOR: int
|
|
1180
|
+
|
|
1181
|
+
ROUND_ANCHOR: int
|
|
1182
|
+
|
|
1183
|
+
DIAMOND_ANCHOR: int
|
|
1184
|
+
|
|
1185
|
+
ARROW_ANCHOR: int
|
|
1186
|
+
|
|
1187
|
+
CUSTOM: int
|
|
1188
|
+
|
|
1189
|
+
ANCHOR_MASK: int
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
class LineJoin(Enum):
|
|
1193
|
+
|
|
1194
|
+
MITER: int
|
|
1195
|
+
|
|
1196
|
+
BEVEL: int
|
|
1197
|
+
|
|
1198
|
+
ROUND: int
|
|
1199
|
+
|
|
1200
|
+
MITER_CLIPPED: int
|
|
1201
|
+
|
|
1202
|
+
|
|
1203
|
+
class MatrixOrder(Enum):
|
|
1204
|
+
|
|
1205
|
+
PREPEND: int
|
|
1206
|
+
|
|
1207
|
+
APPEND: int
|
|
1208
|
+
|
|
1209
|
+
|
|
1210
|
+
class PathPointType(Enum):
|
|
1211
|
+
|
|
1212
|
+
START: int
|
|
1213
|
+
|
|
1214
|
+
LINE: int
|
|
1215
|
+
|
|
1216
|
+
BEZIER: int
|
|
1217
|
+
|
|
1218
|
+
PATH_TYPE_MASK: int
|
|
1219
|
+
|
|
1220
|
+
DASH_MODE: int
|
|
1221
|
+
|
|
1222
|
+
PATH_MARKER: int
|
|
1223
|
+
|
|
1224
|
+
CLOSE_SUBPATH: int
|
|
1225
|
+
|
|
1226
|
+
BEZIER3: int
|
|
1227
|
+
|
|
1228
|
+
|
|
1229
|
+
class PenAlignment(Enum):
|
|
1230
|
+
|
|
1231
|
+
CENTER: int
|
|
1232
|
+
|
|
1233
|
+
INSET: int
|
|
1234
|
+
|
|
1235
|
+
OUTSET: int
|
|
1236
|
+
|
|
1237
|
+
LEFT: int
|
|
1238
|
+
|
|
1239
|
+
RIGHT: int
|
|
1240
|
+
|
|
1241
|
+
|
|
1242
|
+
class PenType(Enum):
|
|
1243
|
+
|
|
1244
|
+
SOLID_COLOR: int
|
|
1245
|
+
|
|
1246
|
+
HATCH_FILL: int
|
|
1247
|
+
|
|
1248
|
+
TEXTURE_FILL: int
|
|
1249
|
+
|
|
1250
|
+
PATH_GRADIENT: int
|
|
1251
|
+
|
|
1252
|
+
LINEAR_GRADIENT: int
|
|
1253
|
+
|
|
1254
|
+
|
|
1255
|
+
class PixelOffsetMode(Enum):
|
|
1256
|
+
|
|
1257
|
+
INVALID: int
|
|
1258
|
+
|
|
1259
|
+
DEFAULT: int
|
|
1260
|
+
|
|
1261
|
+
HIGH_SPEED: int
|
|
1262
|
+
|
|
1263
|
+
HIGH_QUALITY: int
|
|
1264
|
+
|
|
1265
|
+
NONE: int
|
|
1266
|
+
|
|
1267
|
+
HALF: int
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
class QualityMode(Enum):
|
|
1271
|
+
|
|
1272
|
+
INVALID: int
|
|
1273
|
+
|
|
1274
|
+
DEFAULT: int
|
|
1275
|
+
|
|
1276
|
+
LOW: int
|
|
1277
|
+
|
|
1278
|
+
HIGH: int
|
|
1279
|
+
|
|
1280
|
+
|
|
1281
|
+
class SmoothingMode(Enum):
|
|
1282
|
+
|
|
1283
|
+
INVALID: int
|
|
1284
|
+
|
|
1285
|
+
DEFAULT: int
|
|
1286
|
+
|
|
1287
|
+
HIGH_SPEED: int
|
|
1288
|
+
|
|
1289
|
+
HIGH_QUALITY: int
|
|
1290
|
+
|
|
1291
|
+
NONE: int
|
|
1292
|
+
|
|
1293
|
+
ANTI_ALIAS: int
|
|
1294
|
+
|
|
1295
|
+
|
|
1296
|
+
class WrapMode(Enum):
|
|
1297
|
+
|
|
1298
|
+
TILE: int
|
|
1299
|
+
|
|
1300
|
+
TILE_FLIP_X: int
|
|
1301
|
+
|
|
1302
|
+
TILE_FLIP_Y: int
|
|
1303
|
+
|
|
1304
|
+
TILE_FLIP_XY: int
|
|
1305
|
+
|
|
1306
|
+
CLAMP: int
|
|
1307
|
+
|
|
1308
|
+
|
|
1309
|
+
class WarpMode(Enum):
|
|
1310
|
+
|
|
1311
|
+
PERSPECTIVE: int
|
|
1312
|
+
|
|
1313
|
+
BILINEAR: int
|
|
1314
|
+
|
|
1315
|
+
|
|
1316
|
+
class DashCap(Enum):
|
|
1317
|
+
|
|
1318
|
+
FLAT: int
|
|
1319
|
+
|
|
1320
|
+
ROUND: int
|
|
1321
|
+
|
|
1322
|
+
TRIANGLE: int
|
|
1323
|
+
|
|
1324
|
+
|