feat: 完成基本的Jpeg控制

This commit is contained in:
2025-08-08 18:38:16 +08:00
parent 58378851bb
commit bbde060d11
14 changed files with 929 additions and 1680 deletions

View File

@@ -41,7 +41,7 @@ public class ProgressReporter : ProgressInfo, IProgress<int>
private ProgressStatus _status = ProgressStatus.Pending;
private string _errorMessage;
public string TaskId { get; set; } = new Guid().ToString();
public string TaskId { get; set; } = Guid.NewGuid().ToString();
public int ProgressPercent => _progress * 100 / MaxProgress;
public ProgressStatus Status => _status;
public string ErrorMessage => _errorMessage;