Flutter ટ્યુટોરીયલ: Canvas ઇમેજમાં કન્વર્ટ કરો

માં Flutter, તમે વર્ગમાંથી પદ્ધતિનો Canvas ઉપયોગ કરીને a ને ઇમેજમાં કન્વર્ટ કરી શકો છો. વર્ગ તમને કસ્ટમ વિજેટ પર અથવા વિજેટના પેઇન્ટિંગ તબક્કા દરમિયાન ગ્રાફિક્સ અને આકારો દોરવાની મંજૂરી આપે છે. એકવાર તમે પર બધું દોર્યા પછી, તમે પદ્ધતિનો ઉપયોગ કરીને તેને ઇમેજમાં કન્વર્ટ કરી શકો છો. toImage() ui.Image Canvas CustomPainter canvas toImage()

Canvas એકને ઈમેજમાં કેવી રીતે કન્વર્ટ કરવું તે અંગે અહીં એક પગલું-દર-પગલાની માર્ગદર્શિકા છે Flutter:

જરૂરી પેકેજો આયાત કરો

import 'package:flutter/material.dart';  
import 'dart:ui' as ui;  

કસ્ટમ વિજેટ બનાવો અથવા CustomPainter જ્યાં તમે આ પર દોરશો canvas

class MyCanvasWidget extends StatelessWidget {  
  @override  
  Widget build(BuildContext context) {  
    return CustomPaint(  
      size: Size(200, 200), // Set the size of the canvas  
      painter: MyCanvasPainter(),  
   );  
  }  
}  
  
class MyCanvasPainter extends CustomPainter {  
  @override  
  void paint(Canvas canvas, Size size) {  
    // Draw on the canvas here  
    // For example, draw a red circle at the center  
    final Paint paint = Paint()..color = Colors.red;  
    final double centerX = size.width / 2;  
    final double centerY = size.height / 2;  
    final double radius = 50.0;  
    canvas.drawCircle(Offset(centerX, centerY), radius, paint);  
  }  
  
  @override  
  bool shouldRepaint(CustomPainter oldDelegate) {  
    return false;  
  }  
}  

canvas ઈમેજમાં કન્વર્ટ કરવા માટે ફંક્શન બનાવો

Future<ui.Image> captureCanvasToImage() async {  
  final pictureRecorder = ui.PictureRecorder();  
  final canvas = Canvas(pictureRecorder);  
  
  // Create the custom widget or draw on the canvas using a CustomPainter  
  final widget = MyCanvasWidget();  
  widget.paint(canvas, Size(200, 200)); // Set the size of the canvas to match the custom widget size  
  
  final recordedPicture = pictureRecorder.endRecording();  
  return await recordedPicture.toImage(200, 200); // Set the image size, should match the canvas size  
}  

ફંક્શનને કૉલ કરો captureCanvasToImage() અને ઇમેજને હેન્ડલ કરો

void _convertCanvasToImage() async {  
  ui.Image image = await captureCanvasToImage();  
  // Use the image here as needed, such as displaying it in an `Image` widget or saving it to a file  
}  

આ ઉદાહરણમાં, અમે નામનું કસ્ટમ વિજેટ બનાવ્યું છે MyCanvasWidget, જે મધ્યમાં લાલ વર્તુળ દોરે છે canvas. ફંક્શન captureCanvasToImage() એક બનાવે છે Canvas, કસ્ટમ વિજેટનો ઉપયોગ કરીને તેના પર દોરે છે અથવા CustomPainter, અને પછી તેને રૂપાંતરિત કરે છે ui.Image.

નોંધ કરો કે ડ્રોઈંગ અને ઈમેજ યોગ્ય પરિમાણો ધરાવે છે તેની ખાતરી કરવા માટે કસ્ટમ વિજેટ( ) અને પદ્ધતિ canvas બંનેમાં માપ સેટ કરવું જોઈએ. આ ઉદાહરણમાં, અમે કદને 200x200 પર સેટ કર્યું છે, પરંતુ તમે તેને તમારા ઇચ્છિત પરિમાણોમાં સમાયોજિત કરી શકો છો. MyCanvasWidget toImage() canvas

ભૂલોને હેન્ડલ કરવાનું યાદ રાખો અને ફ્યુચર્સ અને એસિંક ફંક્શન્સ સાથે કામ કરતી વખતે યોગ્ય રીતે અસુમેળ કામગીરીની રાહ જુઓ. _convertCanvasToImage() ઉપરાંત, જ્યારે યોગ્ય હોય ત્યારે કૉલ કરવાની ખાતરી કરો canvas અને છબી મેળવવા માટે.