10interface APIResponse {
11 name: string | null;
12 image: string | null;
13 mediaId: string | null;
14 stream: string | null;
17interface RCPResponse {
18 metadata: {
19 image: string;
20 };
21 data: string;
100 return {
101 metadata: {
102 image: "",
103 },
104 data: match[1],
139 apiResponse.push({
140 name: title,
141 image: item.metadata.image,
142 mediaId: tmdbId,
143 stream: await PRORCPhandler(item.data.replace("/prorcp/", "")),
55 city: "Mumbai",
56 profession: "Software Engineer",
57 profileImage:
58 "https://maxm-imggenurl.web.val.run/indian-male-professional-headshot-28-years-old-tech-professional",
59 },
65 city: "Delhi",
66 profession: "Marketing Manager",
67 profileImage:
68 "https://maxm-imggenurl.web.val.run/indian-female-professional-headshot-32-years-old-corporate-leader",
69 },
75 city: "Ahmedabad",
76 profession: "Entrepreneur",
77 profileImage: "https://maxm-imggenurl.web.val.run/indian-male-entrepreneur-headshot-25-years-old-startup-founder",
78 },
79 {
84 city: "Bangalore",
85 profession: "Data Scientist",
86 profileImage:
87 "https://maxm-imggenurl.web.val.run/indian-female-tech-professional-headshot-29-years-old-data-scientist",
88 },
98 <div className="winner-season">{winner.season}</div>
99 <img
100 src={winner.profileImage}
101 alt={winner.winner}
102 className="winner-profile-image"
103 />
104 </div>
255
256.game-show-platform.background-variant-0 {
257 background-image:
258 radial-gradient(ellipse at top, rgba(255,23,68,0.1) 0%, transparent 50%),
259 radial-gradient(ellipse at bottom, rgba(124,77,255,0.1) 0%, transparent 50%);
261
262.game-show-platform.background-variant-1 {
263 background-image:
264 radial-gradient(ellipse at top right, rgba(0,229,255,0.1) 0%, transparent 50%),
265 radial-gradient(ellipse at bottom left, rgba(124,77,255,0.1) 0%, transparent 50%);
267
268.game-show-platform.background-variant-2 {
269 background-image:
270 radial-gradient(ellipse at top left, rgba(124,77,255,0.1) 0%, transparent 50%),
271 radial-gradient(ellipse at bottom right, rgba(255,23,68,0.1) 0%, transparent 50%);
280 align-items: center;
281 border-bottom: 2px solid transparent;
282 border-image: var(--cyber-gradient-2) 1;
283}
284
371}
372
373.winner-profile-image {
374 width: 100%;
375 height: 100%;
379}
380
381.winner-profile-card:hover .winner-profile-image {
382 transform: scale(1.1);
383}
4import { jsPDF } from "https://esm.sh/jspdf@2.5.1";
5
6function ImageToPDFConverter() {
7 const [size, setSize] = useState('A4');
8 const [customWidth, setCustomWidth] = useState('');
16
17 const handleConvert = () => {
18 const image = fileInputRef.current?.files?.[0];
19 if (!image) {
20 setResult('Please select an image');
21 return;
22 }
41 });
42
43 const img = new Image();
44 img.onload = () => {
45 pdf.addImage(img, 'JPEG', 0, 0, width, height);
46 const pdfFile = pdf.output('blob');
47 const link = document.createElement('a');
53 img.src = e.target.result as string;
54 };
55 reader.readAsDataURL(image);
56 };
57
58 return (
59 <div className="container">
60 <h2>Image to PDF Converter</h2>
61 <p>Convert your images to PDF files with specific sizes.</p>
62 <div className="mb-3">
63 <label htmlFor="imageInput" className="form-label">Select Image:</label>
64 <input
65 className="form-control"
66 type="file"
67 id="imageInput"
68 accept="image/*"
69 ref={fileInputRef}
70 />
121 <meta charSet="UTF-8" />
122 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
123 <title>Image to PDF Converter</title>
124 <link
125 rel="stylesheet"
130 <body>
131 <div id="root">
132 <ImageToPDFConverter />
133 </div>
134 <script
152 if (root) {
153 import("https://esm.sh/react-dom@18.2.0/client").then(({ createRoot }) => {
154 createRoot(root).render(<ImageToPDFConverter />);
155 });
156 }
4import { jsPDF } from "https://esm.sh/jspdf@2.5.1";
5
6function ImageToPDFConverter() {
7 const [size, setSize] = useState('A4');
8 const [customWidth, setCustomWidth] = useState('');
16
17 const handleConvert = () => {
18 const image = fileInputRef.current?.files?.[0];
19 if (!image) {
20 setResult('Please select an image');
21 return;
22 }
41 });
42
43 const img = new Image();
44 img.onload = () => {
45 pdf.addImage(img, 'JPEG', 0, 0, width, height);
46 const pdfFile = pdf.output('blob');
47 const link = document.createElement('a');
53 img.src = e.target.result as string;
54 };
55 reader.readAsDataURL(image);
56 };
57
58 return (
59 <div className="container">
60 <h2>Image to PDF Converter</h2>
61 <p>Convert your images to PDF files with specific sizes.</p>
62 <div className="mb-3">
63 <label htmlFor="imageInput" className="form-label">Select Image:</label>
64 <input
65 className="form-control"
66 type="file"
67 id="imageInput"
68 accept="image/*"
69 ref={fileInputRef}
70 />
121 <meta charSet="UTF-8" />
122 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
123 <title>Image to PDF Converter</title>
124 <link
125 rel="stylesheet"
130 <body>
131 <div id="root">
132 <ImageToPDFConverter />
133 </div>
134 <script
152 if (root) {
153 import("https://esm.sh/react-dom@18.2.0/client").then(({ createRoot }) => {
154 createRoot(root).render(<ImageToPDFConverter />);
155 });
156 }