AI-Narwhal Feature Drop | 2025.1.2 Patch 2 <debuggerx@debuggerx-PC Update yiiguxing.translation.xml

master
debuggerx 2 months ago
parent d55d24efa4
commit 4b19881155

@ -21,6 +21,18 @@
<option name="translationDialogLocationX" value="3173" />
<option name="translationDialogLocationY" value="643" />
<histories>
<item value="Each pixel is 32 bits, with the highest 8 bits encoding red, the next 8 bits encoding green, the next 8 bits encoding blue, and the lowest 8 bits encoding alpha. Premultiplied alpha is used." />
<item value="Creates an image descriptor from raw image pixels. The `pixels` parameter is the pixel data. They are packed in bytes in the order described by `pixelFormat`, then grouped in rows, from left to right, then top to bottom. The `rowBytes` parameter is the number of bytes consumed by each row of pixels in the data buffer. If unspecified, it defaults to `width` multiplied by the number of bytes per pixel in the provided `format`. Not async because there's no expensive work to do here." />
<item value="A descriptor of data that can be turned into an [Image] via a [Codec]. Use this class to determine the height, width, and byte size of image data before decoding it." />
<item value="The returned future can complete with an error if the image decoding has failed." />
<item value="Scaling the image to larger than its intrinsic size should usually be avoided, since it causes the image to use more memory than necessary. Instead, prefer scaling the [Canvas] transform. If the image must be scaled up, the `allowUpscaling` parameter must be set to true." />
<item value="The `targetWidth` and `targetHeight` arguments specify the size of the output image, in image pixels. If they are not equal to the intrinsic dimensions of the image, then the image will be scaled after being decoded. If the `allowUpscaling` parameter is not set to true, both dimensions will be capped at the intrinsic dimensions of the image, even if only one of them would have exceeded those intrinsic dimensions. If exactly one of these two arguments is specified, then the aspect ratio will be maintained while forcing the image to match the other given dimension. If neither is specified, then the image maintains its intrinsic size." />
<item value="{@template dart.ui.imageFormats} JPEG, PNG, GIF, Animated GIF, WebP, Animated WebP, BMP, and WBMP. Additional formats may be supported by the underlying platform. Flutter will attempt to call platform API to decode unrecognized formats, and if the platform API supports decoding the image Flutter will be able to render it. {@endtemplate}" />
<item value="The `list` parameter is the binary image data (e.g a PNG or GIF binary data). The data can be for either static or animated images. The following image formats are supported:" />
<item value="This method is a convenience wrapper around the [ImageDescriptor] API, and using [ImageDescriptor] directly is preferred since it allows the caller to make better determinations about how and whether to use the `targetWidth` and `targetHeight` parameters." />
<item value="Instantiates an image [Codec]." />
<item value="allow upscaling" />
<item value="Creates an image from a list of bytes. This function attempts to interpret the given bytes an image. If successful, the returned [Future] resolves to the decoded image. Otherwise, the [Future] resolves to null. If the image is animated, this returns the first frame. Consider [instantiateImageCodec] if support for animated images is necessary. This function differs from [decodeImageFromList] in that it defers to [PaintingBinding.instantiateImageCodecWithSize], and therefore can be mocked in tests." />
<item value="Performs a connect to the message broker with an optional username and password for the purposes of authentication. If a username and password are supplied these will override any previously set in a supplied connection message so if you supply your own connection message and use the authenticateAs method to set these parameters do not set them again here." />
<item value="场景" />
<item value="AMSTD control joy widget" />
@ -56,21 +68,9 @@
<item value="The [Duration] that should be used to offset the current [position] to get the correct [Caption]." />
<item value="Defaults to Duration.zero." />
<item value="truncate" />
<item value="Creates an image from a list of bytes. This function attempts to interpret the given bytes an image. If successful, the returned [Future] resolves to the decoded image. Otherwise, the [Future] resolves to null. If the image is animated, this returns the first frame. Consider [instantiateImageCodec] if support for animated images is necessary. This function differs from [decodeImageFromList] in that it defers to [PaintingBinding.instantiateImageCodecWithSize], and therefore can be mocked in tests." />
<item value="Draws the subset of the given image described by the `src` argument into the canvas in the axis-aligned rectangle given by the `dst` argument. This might sample from outside the `src` rect by up to half the width of an applied filter. Multiple calls to this method with different arguments (from the same image) can be batched into a single call to [drawAtlas] to improve performance." />
<item value="A mask filter to apply to shapes as they are painted. A mask filter is a function that takes a bitmap of color pixels, and returns another bitmap of color pixels. Instances of this class are used with [Paint.maskFilter] on [Paint] objects." />
<item value="The shader to use when stroking or filling a shape. When this is null, the [color] is used instead. See also: [Gradient], a shader that paints a color gradient. [ImageShader], a shader that tiles an [Image]. [colorFilter], which overrides [shader]. [color], which is used if [shader] and [colorFilter] are null." />
<item value="synthesize" />
<item value="When this is null, the [color] is used instead." />
<item value="The shader to use when stroking or filling a shape." />
<item value="compose" />
<item value="matrix" />
<item value="erode" />
<item value="dilate" />
<item value="blur" />
<item value="A filter operation to apply to a raster image." />
<item value="Creates a color filter that applies the inverse of the sRGB gamma curve to the RGB channels." />
<item value="Construct a color filter that applies the sRGB gamma curve to the RGB channels." />
</histories>
<option name="languageScores">
<map>

Loading…
Cancel
Save